Index: trunk/extensions/RDFIO/specials/SpecialSPARQLEndpoint.alias.php |
— | — | @@ -5,3 +5,4 @@ |
6 | 6 | $aliases['en'] = array( |
7 | 7 | 'SPARQLEndpoint' => array( 'SPARQLEndpoint' ), |
8 | 8 | ); |
| 9 | + |
Index: trunk/extensions/RDFIO/specials/SpecialARC2Admin.i18n.php |
— | — | @@ -2,7 +2,7 @@ |
3 | 3 | $messages = array(); |
4 | 4 | |
5 | 5 | $messages['en'] = array( |
6 | | - 'specialarc2admin' => 'ARC2 RDF Store Admin Page', |
7 | | - 'specialarc2admin-desc' => 'Administration page for the ARC2 RDF Store for Semantic MediaWiki', |
| 6 | + 'specialarc2admin' => 'ARC2 RDF Store admin page', |
| 7 | + 'rdfio-arc2admin-desc' => 'Administration page for the ARC2 RDF Store for Semantic MediaWiki', |
8 | 8 | ); |
9 | 9 | |
Index: trunk/extensions/RDFIO/specials/SpecialRDFImport.alias.php |
— | — | @@ -5,3 +5,4 @@ |
6 | 6 | $aliases['en'] = array( |
7 | 7 | 'RDFImport' => array( 'RDFImport' ), |
8 | 8 | ); |
| 9 | + |
Index: trunk/extensions/RDFIO/specials/SpecialARC2Admin.php |
— | — | @@ -3,18 +3,18 @@ |
4 | 4 | if ( !defined( 'MEDIAWIKI' ) ) { |
5 | 5 | echo <<<EOT |
6 | 6 | To install my extension, put the following line in LocalSettings.php: |
7 | | -require_once( "\$IP/extensions/SMWRDFConnector/SpecialARC2Admin.php" ); |
| 7 | +require_once( "\$IP/extensions/RDFIO/specials/SpecialARC2Admin.php" ); |
8 | 8 | EOT; |
9 | 9 | exit( 1 ); |
10 | 10 | } |
11 | 11 | |
12 | 12 | $wgExtensionCredits['specialpage'][] = array( |
13 | | - 'name' => 'SpecialARC2Admin', |
14 | | - 'author' => 'Samuel Lampa', |
15 | | - 'url' => 'http://www.mediawiki.org/wiki/Extension:SMWRDFConnector', |
16 | | - 'description' => 'Administration page for the ARC2 RDF Store for Semantic MediaWiki', |
17 | | - 'descriptionmsg' => 'arc2admin-desc', |
18 | | - 'version' => '0.0.0', |
| 13 | + 'path' => __FILE__, |
| 14 | + 'name' => 'SpecialARC2Admin', |
| 15 | + 'author' => 'Samuel Lampa', |
| 16 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:SMWRDFConnector', |
| 17 | + 'descriptionmsg' => 'rdfio-arc2admin-desc', |
| 18 | + 'version' => '0.0.0', |
19 | 19 | ); |
20 | 20 | |
21 | 21 | $dir = dirname( __FILE__ ) . '/'; |
Index: trunk/extensions/RDFIO/specials/SpecialSPARQLEndpoint.i18n.php |
— | — | @@ -4,5 +4,6 @@ |
5 | 5 | |
6 | 6 | $messages['en'] = array( |
7 | 7 | 'sparqlendpoint' => 'SPARQL Endpoint', |
8 | | - 'sparqlendpoint-desc' => 'A SPARQLEndpoint provided by the SMWRDFConnector', |
| 8 | + 'rdfio-sparqlendpoint-desc' => 'A SPARQL Endpoint provided by the SMWRDFConnector', |
9 | 9 | ); |
| 10 | + |
Index: trunk/extensions/RDFIO/specials/SpecialSPARQLEndpoint.php |
— | — | @@ -3,18 +3,18 @@ |
4 | 4 | if ( !defined( 'MEDIAWIKI' ) ) { |
5 | 5 | echo <<<EOT |
6 | 6 | To install my extension, put the following line in LocalSettings.php: |
7 | | -require_once( "\$IP/extensions/SMWRDFConnector/SpecialSPARQLEndpoint.php" ); |
| 7 | +require_once( "\$IP/extensions/RDFIO/specials/SpecialSPARQLEndpoint.php" ); |
8 | 8 | EOT; |
9 | 9 | exit( 1 ); |
10 | 10 | } |
11 | 11 | |
12 | 12 | $wgExtensionCredits['specialpage'][] = array( |
13 | | - 'name' => 'SPARQLEndpoint', |
14 | | - 'author' => 'Samuel Lampa', |
15 | | - 'url' => 'http://www.mediawiki.org/wiki/Extension:SMWRDFConnector', |
16 | | - 'description' => 'SPARQL Endpoint', |
17 | | - 'descriptionmsg' => 'sparqlendpoint-desc', |
18 | | - 'version' => '0.0.0', |
| 13 | + 'path' => __FILE__, |
| 14 | + 'name' => 'SPARQLEndpoint', |
| 15 | + 'author' => 'Samuel Lampa', |
| 16 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:SMWRDFConnector', |
| 17 | + 'descriptionmsg' => 'rdfio-sparqlendpoint-desc', |
| 18 | + 'version' => '0.0.0', |
19 | 19 | ); |
20 | 20 | |
21 | 21 | $dir = dirname( __FILE__ ) . '/'; |
Index: trunk/extensions/RDFIO/specials/SpecialRDFImport.i18n.php |
— | — | @@ -3,6 +3,6 @@ |
4 | 4 | |
5 | 5 | $messages['en'] = array( |
6 | 6 | 'rdfimport' => 'RDF Import', |
7 | | - 'rdfimport-desc' => 'A Special page to import semantic data in RDF/XML format', |
| 7 | + 'rdfio-rdfimport-desc' => 'A Special page to import semantic data in RDF/XML format', |
8 | 8 | ); |
9 | 9 | |
Index: trunk/extensions/RDFIO/specials/SpecialRDFImport.php |
— | — | @@ -3,18 +3,18 @@ |
4 | 4 | if ( !defined( 'MEDIAWIKI' ) ) { |
5 | 5 | echo <<<EOT |
6 | 6 | To install my extension, put the following line in LocalSettings.php: |
7 | | -require_once( "\$IP/extensions/SMWRDFConnector/SpecialRDFImport.php" ); |
| 7 | +require_once( "\$IP/extensions/RDFIO/specials/SpecialRDFImport.php" ); |
8 | 8 | EOT; |
9 | 9 | exit( 1 ); |
10 | 10 | } |
11 | 11 | |
12 | 12 | $wgExtensionCredits['specialpage'][] = array( |
13 | | - 'name' => 'RDFImport', |
14 | | - 'author' => 'Samuel Lampa', |
15 | | - 'url' => 'http://www.mediawiki.org/wiki/Extension:SMWRDFConnector', |
16 | | - 'description' => 'RDF Import', |
17 | | - 'descriptionmsg' => 'rdfimport-desc', |
18 | | - 'version' => '0.0.0', |
| 13 | + 'path' => __FILE__, |
| 14 | + 'name' => 'RDFImport', |
| 15 | + 'author' => 'Samuel Lampa', |
| 16 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:SMWRDFConnector', |
| 17 | + 'descriptionmsg' => 'rdfio-rdfimport-desc', |
| 18 | + 'version' => '0.0.0', |
19 | 19 | ); |
20 | 20 | |
21 | 21 | $dir = dirname( __FILE__ ) . '/'; |
Index: trunk/extensions/Translate/groups/mediawiki-defines.txt |
— | — | @@ -906,6 +906,21 @@ |
907 | 907 | Random Users With Avatars |
908 | 908 | descmsg = random-users-avatars-desc |
909 | 909 | |
| 910 | +RDFIO - ARC2Admin |
| 911 | +descmsg = rdfio-arc2admin-desc |
| 912 | +file = RDFIO/specials/SpecialARC2Admin.i18n.php |
| 913 | +aliasfile = RDFIO/specials/SpecialARC2Admin.alias.php |
| 914 | + |
| 915 | +RDFIO - RDF Import |
| 916 | +descmsg = rdfio-arc2admin-desc |
| 917 | +file = RDFIO/specials/SpecialRDFImport.i18n.php |
| 918 | +aliasfile = RDFIO/specials/SpecialRDFImport.alias.php |
| 919 | + |
| 920 | +RDFIO - SPARQL Endpoint |
| 921 | +descmsg = rdfio-sparqlendpoint-desc |
| 922 | +file = RDFIO/specials/SPARQLEndpoint.i18n.php |
| 923 | +aliasfile = RDFIO/specials/SPARQLEndpoint.alias.php |
| 924 | + |
910 | 925 | Reader Feedback |
911 | 926 | id = ext-readerfeedback-readerfeedback |
912 | 927 | file = ReaderFeedback/language/ReaderFeedback.i18n.php |