http://www.mediawiki.org/wiki/Special:Code/MediaWiki/73612

Revision: 73612
Author:   yaron
Date:     2010-09-23 17:38:21 +0000 (Thu, 23 Sep 2010)

Log Message:
-----------
New version: 0.2.6

Modified Paths:
--------------
    trunk/extensions/SemanticCompoundQueries/README
    trunk/extensions/SemanticCompoundQueries/SemanticCompoundQueries.php

Modified: trunk/extensions/SemanticCompoundQueries/README
===================================================================
--- trunk/extensions/SemanticCompoundQueries/README     2010-09-23 17:37:54 UTC 
(rev 73611)
+++ trunk/extensions/SemanticCompoundQueries/README     2010-09-23 17:38:21 UTC 
(rev 73612)
@@ -1,6 +1,6 @@
 Semantic Compound Queries Extension
 
-        Version 0.2.5
+        Version 0.2.6
         Yaron Koren
 
 This is free software licensed under the GNU General Public License. Please

Modified: trunk/extensions/SemanticCompoundQueries/SemanticCompoundQueries.php
===================================================================
--- trunk/extensions/SemanticCompoundQueries/SemanticCompoundQueries.php        
2010-09-23 17:37:54 UTC (rev 73611)
+++ trunk/extensions/SemanticCompoundQueries/SemanticCompoundQueries.php        
2010-09-23 17:38:21 UTC (rev 73612)
@@ -9,14 +9,15 @@
  */
 
 /**
- * This documenation group collects source code files belonging to 
SemanticCompoundQueries.
+ * This documentation group collects source-code files belonging to
+ * Semantic Compound Queries.
  *
  * @defgroup SemanticCompoundQueries SemanticCompoundQueries
  */
 
 if ( !defined( 'MEDIAWIKI' ) ) die();
 
-define( 'SCQ_VERSION', '0.2.5' );
+define( 'SCQ_VERSION', '0.2.6' );
 
 $wgExtensionCredits[defined( 'SEMANTIC_EXTENSION_TYPE' ) ? 'semantic' : 
'parserhook'][] = array(
        'path'  => __FILE__,
@@ -30,7 +31,7 @@
 $wgExtensionMessagesFiles['SemanticCompoundQueries'] = dirname( __FILE__ ) . 
'/SemanticCompoundQueries.i18n.php';
 
 $wgHooks['ParserFirstCallInit'][] = 'scqgRegisterParser';
-// FIXME: Can be removed when new style magic words are used (introduced in 
r52503)
+// FIXME: Can be removed when new-style magic words are used (introduced in 
r52503)
 $wgHooks['LanguageGetMagic'][] = 'scqgLanguageGetMagic';
 
 $wgAutoloadClasses['SCQQueryProcessor'] = dirname( __FILE__ ) . 
'/SCQ_QueryProcessor.php';
@@ -41,11 +42,11 @@
        return true; // always return true, in order not to stop MW's hook 
processing!
 }
 
-// FIXME: Can be removed when new style magic words are used (introduced in 
r52503)
+// FIXME: Can be removed when new-style magic words are used (introduced in 
r52503)
 function scqgLanguageGetMagic( &$magicWords, $langCode = 'en' ) {
        switch ( $langCode ) {
        default:
                $magicWords['compound_query'] = array ( 0, 'compound_query' );
        }
        return true;
-}
\ No newline at end of file
+}



_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to