Browse Source

Merge pull request #53 from bwoodhead/master

Cleanup and Fixing Pathing
pull/54/merge
Ben Woodhead 13 years ago
parent
commit
68d0de8d88
  1. 8
      core/formClass.inc
  2. 2
      plugins/CreateCollection.inc
  3. 0
      xsl/collection_policy.xsd
  4. 0
      xsl/islandoracm.xsd

8
core/formClass.inc

@ -25,7 +25,7 @@ class formClass {
$items = array(); $items = array();
$items['admin/settings/fedora_repository'] = array( $items['admin/settings/fedora_repository'] = array(
'title' => t('Islandora Configure'), 'title' => t('Islandora Configuration'),
'description' => t('Enter the Islandora Collection information here'), 'description' => t('Enter the Islandora Collection information here'),
'page callback' => 'drupal_get_form', 'page callback' => 'drupal_get_form',
'page arguments' => array('fedora_repository_admin'), 'page arguments' => array('fedora_repository_admin'),
@ -45,11 +45,11 @@ class formClass {
'description' => t('Install content models and collections required by installed solution packs.'), 'description' => t('Install content models and collections required by installed solution packs.'),
'page callback' => 'fedora_repository_solution_packs_page', 'page callback' => 'fedora_repository_solution_packs_page',
'access arguments' => array('add fedora datastreams'), 'access arguments' => array('add fedora datastreams'),
'file' => 'fedora_repository.solutionpacks.inc', 'file' => 'core/fedora_repository.solutionpacks.inc',
'type' => MENU_LOCAL_TASK, 'type' => MENU_LOCAL_TASK,
); );
$items['islandoracm.xsd'] = array( $items['xsl/islandoracm.xsd'] = array(
'title' => t('Islandora Content Model XML Schema Definition'), 'title' => t('Islandora Content Model XML Schema Definition'),
'page callback' => 'fedora_repository_display_schema', 'page callback' => 'fedora_repository_display_schema',
'page arguments' => array('islandoracm.xsd'), 'page arguments' => array('islandoracm.xsd'),
@ -57,7 +57,7 @@ class formClass {
'access arguments' => array('view fedora collection'), 'access arguments' => array('view fedora collection'),
); );
$items['collection_policy.xsd'] = array( $items['xsl/collection_policy.xsd'] = array(
'title' => t('Islandora Content Model XML Schema Definition'), 'title' => t('Islandora Content Model XML Schema Definition'),
'page callback' => 'fedora_repository_display_schema', 'page callback' => 'fedora_repository_display_schema',
'page arguments' => array('collection_policy.xsd'), 'page arguments' => array('collection_policy.xsd'),

2
plugins/CreateCollection.inc

@ -1,7 +1,5 @@
<?php <?php
/** /**
* @file * @file
* Create Collection Class * Create Collection Class

0
xsd/collection_policy.xsd → xsl/collection_policy.xsd

0
xsd/islandoracm.xsd → xsl/islandoracm.xsd

Loading…
Cancel
Save