Index: trunk/extensions/SemanticResultFormats/SemanticResultFormats.php |
— | — | @@ -20,7 +20,7 @@ |
21 | 21 | die( 'Not an entry point.' ); |
22 | 22 | } |
23 | 23 | |
24 | | -define( 'SRF_VERSION', '1.5.2.1' ); |
| 24 | +define( 'SRF_VERSION', '1.5.3 alpha' ); |
25 | 25 | |
26 | 26 | // Require the settings file. |
27 | 27 | require dirname( __FILE__ ) . '/SRF_Settings.php'; |
— | — | @@ -65,7 +65,7 @@ |
66 | 66 | 'Rowan Rodrik van der Molen', |
67 | 67 | '[http://www.mediawiki.org/wiki/User:Jeroen_De_Dauw Jeroen De Dauw]' |
68 | 68 | ), |
69 | | - 'url' => 'http://semantic-mediawiki.org/wiki/Help:Semantic_Result_Formats', |
| 69 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:Semantic_Result_Formats', |
70 | 70 | 'descriptionmsg' => 'srf-desc' |
71 | 71 | ); |
72 | 72 | |
Index: trunk/extensions/SemanticResultFormats/GraphViz/SRF_Graph.php |
— | — | @@ -24,7 +24,7 @@ |
25 | 25 | protected $m_rankdir = "LR"; |
26 | 26 | protected $m_graphSize = ""; |
27 | 27 | protected $m_labelArray = array(); |
28 | | - protected $m_graphColors = array( "black", "red", "green", "blue", "darkviolet", "gold", "deeppink", "brown", "bisque", "darkgreen", "yellow", "darkblue", "magenta", "steelblue2" ); |
| 28 | + protected $m_graphColors = array( 'black', 'red', 'green', 'blue', 'darkviolet', 'gold', 'deeppink', 'brown', 'bisque', 'darkgreen', 'yellow', 'darkblue', 'magenta', 'steelblue2' ); |
29 | 29 | |
30 | 30 | protected function readParameters( $params, $outputmode ) { |
31 | 31 | |