Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repackaged #89

Merged
merged 3 commits into from Apr 17, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/islandora_xacml_api.info
@@ -1,7 +1,7 @@
name = Islandora Xacml Api
dependencies[] = islandora
description = An API for editing XACML.
package = Islandora
package = Islandora Tools
version = 7.x-dev
core = 7.x
files[] = includes/xacml.inc
Expand Down
4 changes: 2 additions & 2 deletions api/islandora_xacml_api.module
Expand Up @@ -23,15 +23,15 @@ define('PERMIT_RULE', ISLANDORA_XACML_API_PERMIT_RULE);
*/
function islandora_xacml_api_menu() {
$items = array();
$items['admin/islandora/xacml'] = array(
$items['admin/islandora/tools/xacml'] = array(
'title' => 'Islandora XACML',
'description' => 'Settings for the Islandora XACML modules.',
'page callback' => 'drupal_get_form',
'page arguments' => array('islandora_xacml_api_settings'),
'access arguments' => array('administer islandora_xacml_api'),
);

$items['admin/islandora/xacml/api'] = array(
$items['admin/islandora/tools/xacml/api'] = array(
'title' => 'Islandora XACML API',
'description' => 'Settings for the Islandora XACML API module.',
'access arguments' => array('administer islandora_xacml_api'),
Expand Down
4 changes: 2 additions & 2 deletions islandora_xacml_editor.info
Expand Up @@ -2,8 +2,8 @@ name = Islandora XACML Editor
dependencies[] = islandora
dependencies[] = islandora_xacml_api
description = Visually edit XACML policies for objects.
configure = admin/islandora/xacml/editor
package = Islandora
configure = admin/islandora/tools/xacml/editor
package = Islandora Tools
version = 7.x-dev
core = 7.x
files[] = tests/hooked_access.test
2 changes: 1 addition & 1 deletion islandora_xacml_editor.module
Expand Up @@ -49,7 +49,7 @@ function islandora_xacml_editor_menu() {
'access arguments' => array(2),
'file' => 'includes/form.inc',
);
$items['admin/islandora/xacml/editor'] = array(
$items['admin/islandora/tools/xacml/editor'] = array(
'title' => 'Islandora XACML Editor',
'description' => 'Settings for the Islandora XACML module.',
'page callback' => 'drupal_get_form',
Expand Down