9127219358
There is more than 5000 parameter documentations. Only about 300 are differently done. Change them to be consistently indented. param with one space and content inside with one tab This was done with: sed -ri ' /^##[[:space:]]*<param/,/^##[[:space:]]*<[/]param>/{ s/^##[[:space:]]*/##\t/; s/^##[[:space:]]*(<[/]?summary)/##\t\1/; s/^##[[:space:]]*(<[/]?param)/## \1/; }' policy/modules/*/*.if Signed-off-by: Markus Linnala <Markus.Linnala@cybercom.com>
61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
## <summary>GNOME color manager.</summary>
|
|
|
|
########################################
|
|
## <summary>
|
|
## Execute a domain transition to run colord.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`colord_domtrans',`
|
|
gen_require(`
|
|
type colord_t, colord_exec_t;
|
|
')
|
|
|
|
corecmd_search_bin($1)
|
|
domtrans_pattern($1, colord_exec_t, colord_t)
|
|
')
|
|
|
|
########################################
|
|
## <summary>
|
|
## Send and receive messages from
|
|
## colord over dbus.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`colord_dbus_chat',`
|
|
gen_require(`
|
|
type colord_t;
|
|
class dbus send_msg;
|
|
')
|
|
|
|
allow $1 colord_t:dbus send_msg;
|
|
allow colord_t $1:dbus send_msg;
|
|
')
|
|
|
|
######################################
|
|
## <summary>
|
|
## Read colord lib files.
|
|
## </summary>
|
|
## <param name="domain">
|
|
## <summary>
|
|
## Domain allowed access.
|
|
## </summary>
|
|
## </param>
|
|
#
|
|
interface(`colord_read_lib_files',`
|
|
gen_require(`
|
|
type colord_var_lib_t;
|
|
')
|
|
|
|
files_search_var_lib($1)
|
|
read_files_pattern($1, colord_var_lib_t, colord_var_lib_t)
|
|
')
|