-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from mikaelarguedas/refine_policies_round1
update access control policies
- Loading branch information
Showing
7 changed files
with
215 additions
and
576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<profile xmlns:xi="http://www.w3.org/2003/XInclude"> | ||
<xi:include href="node.xml" | ||
xpointer="xpointer(/profile/*)"/> | ||
<services reply="ALLOW"> | ||
<service>~change_state</service> | ||
<service>~get_available_states</service> | ||
<service>~get_available_transitions</service> | ||
<service>~get_state</service> | ||
<service>~get_transition_graph</service> | ||
</services> | ||
<topics publish="ALLOW"> | ||
<topic>~transition_event</topic> | ||
</topics> | ||
</profile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<profile xmlns:xi="http://www.w3.org/2003/XInclude"> | ||
<xi:include href="node/logging.xml" | ||
xpointer="xpointer(/profile/*)"/> | ||
<xi:include href="node/time.xml" | ||
xpointer="xpointer(/profile/*)"/> | ||
<xi:include href="node/parameters.xml" | ||
xpointer="xpointer(/profile/*)"/> | ||
</profile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<profile> | ||
<topics publish="ALLOW" > | ||
<topic>rosout</topic> | ||
</topics> | ||
</profile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<profile> | ||
<topics publish="ALLOW" subscribe="ALLOW" > | ||
<topic>parameter_events</topic> | ||
</topics> | ||
|
||
<services reply="ALLOW" request="ALLOW" > | ||
<service>~describe_parameters</service> | ||
<service>~get_parameter_types</service> | ||
<service>~get_parameters</service> | ||
<service>~list_parameters</service> | ||
<service>~set_parameters</service> | ||
<service>~set_parameters_atomically</service> | ||
</services> | ||
</profile> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<profile> | ||
<topics subscribe="ALLOW" > | ||
<topic>/clock</topic> | ||
</topics> | ||
</profile> |
Oops, something went wrong.