r44018 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r44017‎ | r44018 | r44019 >
Date:17:42, 28 November 2008
Author:ialex
Status:ok
Tags:
Comment:
svn:eol-style native
Modified paths:
  • /trunk/extensions/ContributionReporting/FundraiserStatistics.css (modified) (history)
  • /trunk/extensions/ContributionReporting/FundraiserStatistics.js (modified) (history)
  • /trunk/extensions/SemanticCompoundQueries/README (modified) (history)
  • /trunk/extensions/SemanticCompoundQueries/SCQ_QueryProcessor.php (modified) (history)
  • /trunk/extensions/SemanticCompoundQueries/SCQ_QueryResult.php (modified) (history)
  • /trunk/extensions/SemanticCompoundQueries/SCQ_Settings.php (modified) (history)
  • /trunk/extensions/SemanticResultFormats/.project (modified) (history)
  • /trunk/extensions/SemanticResultFormats/INSTALL (modified) (history)
  • /trunk/extensions/SemanticResultFormats/RELEASE-NOTES (modified) (history)

Diff [purge]

Property changes on: trunk/extensions/SemanticCompoundQueries/SCQ_QueryResult.php
___________________________________________________________________
Added: svn:eol-style
11 + native
Property changes on: trunk/extensions/SemanticCompoundQueries/SCQ_QueryProcessor.php
___________________________________________________________________
Added: svn:eol-style
22 + native
Property changes on: trunk/extensions/SemanticCompoundQueries/SCQ_Settings.php
___________________________________________________________________
Added: svn:eol-style
33 + native
Property changes on: trunk/extensions/SemanticCompoundQueries/README
___________________________________________________________________
Added: svn:eol-style
44 + native
Index: trunk/extensions/SemanticResultFormats/.project
@@ -1,11 +1,11 @@
2 -<?xml version="1.0" encoding="UTF-8"?>
3 -<projectDescription>
4 - <name>SemanticResultFormats</name>
5 - <comment></comment>
6 - <projects>
7 - </projects>
8 - <buildSpec>
9 - </buildSpec>
10 - <natures>
11 - </natures>
12 -</projectDescription>
 2+<?xml version="1.0" encoding="UTF-8"?>
 3+<projectDescription>
 4+ <name>SemanticResultFormats</name>
 5+ <comment></comment>
 6+ <projects>
 7+ </projects>
 8+ <buildSpec>
 9+ </buildSpec>
 10+ <natures>
 11+ </natures>
 12+</projectDescription>
Property changes on: trunk/extensions/SemanticResultFormats/.project
___________________________________________________________________
Added: svn:eol-style
1313 + native
Index: trunk/extensions/SemanticResultFormats/INSTALL
@@ -1,46 +1,46 @@
2 -== Installation ==
3 -
4 -Installation instructions are available online in a more convenient form for
5 -reading at:
6 - http://semantic-mediawiki.org/wiki/Semantic_Result_Formats
7 -
8 -Copy all files into MediaWiki's extensions folder, either by using SVN or by
9 -extracting an installation package. You need to enter two lines to your local
10 -settings (after the inclusion of Semantic MediaWiki). The first one is to
11 -include the code:
12 -
13 - require_once( 'path/to/extension/SRF_Settings.php' );
14 -
15 -If nothing else is added, no format will be included. In order to include a
16 -format, add the following line to your local settings after the line above:
17 - srfInit( array('formatname', 'formatname', ...) );
18 -
19 -with formatname being one of the following values (you can use as many
20 -formatnames as you like):
21 -
22 - calendar, eventline, googlebar, googlepie, graph, timeline
23 -
24 -So for example to enable graph, timeline and calendar you would write:
25 -
26 - srfInit( array('graph', 'timeline', 'calendar') );
27 -
28 -You can also just use the following command to include all available formats:
29 -
30 - srfInit('all');
31 -
32 -but this is not recommended since it may expand your system with formats that
33 -do not follow certain policies within the wiki without you making that explicit
34 -decision (consider that result formats may send data to external web services
35 -for rendering which may be considered a data leak. For example, googlebar and
36 -googlepie do this).
37 -
38 -Notes on specific formats:
39 -* Eventline: Eventline requires Javascript to render.
40 -* Googlebar: note that Googlebar is sending data to Google for rendering.
41 - Googlebar requires access to the Google servers in order to render.
42 -* Googlepie: note that Googlepie is sending data to Google for rendering.
43 - Googlepie requires access to the Google servers in order to render.
44 -* Graph: in order to get the graph format to run you first have to have
45 - the graph extension up and running. The graph format is based on the
46 - MediaWiki Graph extension.
47 -* Timeline: Eventline requires Javascript to render.
 2+== Installation ==
 3+
 4+Installation instructions are available online in a more convenient form for
 5+reading at:
 6+ http://semantic-mediawiki.org/wiki/Semantic_Result_Formats
 7+
 8+Copy all files into MediaWiki's extensions folder, either by using SVN or by
 9+extracting an installation package. You need to enter two lines to your local
 10+settings (after the inclusion of Semantic MediaWiki). The first one is to
 11+include the code:
 12+
 13+ require_once( 'path/to/extension/SRF_Settings.php' );
 14+
 15+If nothing else is added, no format will be included. In order to include a
 16+format, add the following line to your local settings after the line above:
 17+ srfInit( array('formatname', 'formatname', ...) );
 18+
 19+with formatname being one of the following values (you can use as many
 20+formatnames as you like):
 21+
 22+ calendar, eventline, googlebar, googlepie, graph, timeline
 23+
 24+So for example to enable graph, timeline and calendar you would write:
 25+
 26+ srfInit( array('graph', 'timeline', 'calendar') );
 27+
 28+You can also just use the following command to include all available formats:
 29+
 30+ srfInit('all');
 31+
 32+but this is not recommended since it may expand your system with formats that
 33+do not follow certain policies within the wiki without you making that explicit
 34+decision (consider that result formats may send data to external web services
 35+for rendering which may be considered a data leak. For example, googlebar and
 36+googlepie do this).
 37+
 38+Notes on specific formats:
 39+* Eventline: Eventline requires Javascript to render.
 40+* Googlebar: note that Googlebar is sending data to Google for rendering.
 41+ Googlebar requires access to the Google servers in order to render.
 42+* Googlepie: note that Googlepie is sending data to Google for rendering.
 43+ Googlepie requires access to the Google servers in order to render.
 44+* Graph: in order to get the graph format to run you first have to have
 45+ the graph extension up and running. The graph format is based on the
 46+ MediaWiki Graph extension.
 47+* Timeline: Eventline requires Javascript to render.
Property changes on: trunk/extensions/SemanticResultFormats/INSTALL
___________________________________________________________________
Added: svn:eol-style
4848 + native
Index: trunk/extensions/SemanticResultFormats/RELEASE-NOTES
@@ -1,19 +1,19 @@
2 -For a documentation of all features, see
3 -http://semantic-mediawiki.org/wiki/Semantic_Result_Formats
4 -
5 -== SRF 1.4.0 ==
6 -
7 -Released on November 26 2008.
8 -
9 -This is the initial release of Semantic Result Formats. The version number
10 -was chosen in order to be aligned to the Semantic MediaWiki core distribution.
11 -SRF 1.4.0 is compatible to SMW 1.4.0 and thus equally versioned.
12 -
13 -The initial sets of Semantic Result Formats are:
14 -* Calendar (written by Yaron Koren)
15 -* Eventline (written by Markus Kr�tzsch and based on code by MIT's Simile group)
16 -* Googlebar (written by Denny Vrandecic)
17 -* Googlepie (written by Denny Vrandecic)
18 -* Graph (written by Frank Dengler)
19 -* Timeline (written by Markus Kr�tzsch and based on code by MIT's Simile group)
 2+For a documentation of all features, see
 3+http://semantic-mediawiki.org/wiki/Semantic_Result_Formats
 4+
 5+== SRF 1.4.0 ==
 6+
 7+Released on November 26 2008.
 8+
 9+This is the initial release of Semantic Result Formats. The version number
 10+was chosen in order to be aligned to the Semantic MediaWiki core distribution.
 11+SRF 1.4.0 is compatible to SMW 1.4.0 and thus equally versioned.
 12+
 13+The initial sets of Semantic Result Formats are:
 14+* Calendar (written by Yaron Koren)
 15+* Eventline (written by Markus Kr�tzsch and based on code by MIT's Simile group)
 16+* Googlebar (written by Denny Vrandecic)
 17+* Googlepie (written by Denny Vrandecic)
 18+* Graph (written by Frank Dengler)
 19+* Timeline (written by Markus Kr�tzsch and based on code by MIT's Simile group)
2020
\ No newline at end of file
Property changes on: trunk/extensions/SemanticResultFormats/RELEASE-NOTES
___________________________________________________________________
Added: svn:eol-style
2121 + native
Property changes on: trunk/extensions/ContributionReporting/FundraiserStatistics.css
___________________________________________________________________
Added: svn:eol-style
2222 + native
Property changes on: trunk/extensions/ContributionReporting/FundraiserStatistics.js
___________________________________________________________________
Added: svn:eol-style
2323 + native

Status & tagging log