[MediaWiki-commits] [Gerrit] Add license info file for GPL2+ - change (mediawiki...GeoGebra)

2013-12-29 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/104481


Change subject: Add license info file for GPL2+
..

Add license info file for GPL2+

Change-Id: Ia06608dc68567127d1c0e43c4c707445dcba10e9
---
A COPYING
1 file changed, 339 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GeoGebra 
refs/changes/81/104481/1

diff --git a/COPYING b/COPYING
new file mode 100755
index 000..82fa1da
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,339 @@
+   GNU GENERAL PUBLIC LICENSE
+  Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+   Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+   GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the ab

[MediaWiki-commits] [Gerrit] Added HTML5 support (by Rudolf Grossmann) Extension should n... - change (mediawiki...GeoGebra)

2013-11-18 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: Added HTML5 support (by Rudolf Grossmann) Extension should now 
support adding both HTML5 applets and Java applets
..


Added HTML5 support (by Rudolf Grossmann)
Extension should now support adding both HTML5 applets and Java applets

Change-Id: Ifc806890012c676dcb62d2b4d4ef0f30759683ce
---
M GeoGebra.php
1 file changed, 185 insertions(+), 142 deletions(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved



diff --git a/GeoGebra.php b/GeoGebra.php
index 407005a..b2eb84e 100644
--- a/GeoGebra.php
+++ b/GeoGebra.php
@@ -3,10 +3,10 @@
  * GeoGebra extension
  *
  * @author Rudolf Grossmann
- * @version 2.9a
+ * @version 3.0d-web
  */
 
-$ggb_version = "2.9a";
+$ggb_version = "3.0d-web";
 
 // This MediaWiki extension is based on the Java Applet extension by Phil 
Trasatti
 // see: http://www.mediawiki.org/wiki/Extension:Java_Applet
@@ -24,167 +24,210 @@
 );
 
 function ggb_AppletSetup() {
-   global $wgParser;
-   $wgParser->setHook( 'ggb_applet', 'get_ggbAppletOutput' );
-   return true;
+global $wgParser;
+$wgParser->setHook( 'ggb_applet', 'get_ggbAppletOutput' );
+return true;
 }
 
 function get_ggbAppletOutput( $input, $args, $parser ) {
-   global $wgServer; // URL of the WIKI's server
-   global $wgVersion; // Version number of MediaWiki Software
-   global $ggb_version; // see line 9 of this file
+global $wgServer; // URL of the WIKI's server
+global $wgVersion; // Version number of MediaWiki Software
+global $ggb_version; // see line 9 of this file
+   $parser->disableCache();
+   global $applet_counter;
+   $applet_counter = isset( $applet_counter ) ? ( $applet_counter 
+ 1 ) : 0;
 
-   $error_message = "no error"; //will be overwritten, if error occurs
-   $debug = 'Debug: ';
-   $CRLF = "\r\n";
-   $quot = '"';
-   $appletBinary = "geogebra.jar";
-   $codeBaseSigned = 'http://www.geogebra.org/webstart/';
-   if ( isset( $args['version'] ) ) {
-   $version = htmlspecialchars( strip_tags( $args['version'] ) );
-   $codeBaseUnsigned = 'http://www.geogebra.org/webstart/' . 
$version . '/unsigned/';
-   } else {
-   $codeBaseUnsigned = 
'http://www.geogebra.org/webstart/unsigned/';
-   }
+$error_message = "no error"; // will be overwritten, if error occurs
+$debug = 'Debug: ';
+$CRLF = "\r\n";
+$quot = '"';
+$appletBinary = "geogebra.jar" ;
+$codeBaseSigned = 'http://www.geogebra.org/webstart/';
 
-   // Special parameters, not for parameter (name - value) tags. Use 
lowercase for sake of comparison!
-   $special_parameters = array( 'width', 'height', 'uselocaljar', 
'usesignedjar', 'substimage', 'filename', 'ggbbase64', 'version', 'debug' );
-   $noJavaText = wfMessage( 'geogebra-nojava', '[http://java.com Java]' 
)->parse();
-
-   // retrieve URL of image file substituting GeoGebra applet if Java ist 
not installed
-   $imgBinary = isset( $args['substimage'] ) ? htmlspecialchars( 
strip_tags( $args['substimage'] ) ) : '';
-   if ( $imgBinary == '' ) {
-   $imgBinary = 'filenotfound.jpg';
-   }
-   $imgFile = wfLocalFile( $imgBinary );
-   if ( $imgFile->exists() ) {
-   $imgURL = $imgFile->getURL();
-   // if URL doesn't start with slash, add starting slash.
-   if ( substr( $imgURL, 0, 1 ) != '/' ) {
-   $imgURL = '/' . $imgURL;
+   $isMobile = preg_match( 
'/iPhone|iPod|iPad|BlackBerry|Android|CrOS/', $_SERVER['HTTP_USER_AGENT'] ) != 
0;
+   if ( isset($_GET['mobile']) && $_GET['mobile'] == 'true' ) {
+   $isMobile = true;
}
-   $imgURL = $wgServer . $imgURL;
-   $noJavaText = "" . $CRLF;
-   $noJavaText = $noJavaText . 'Please http://java.sun.com/getjava";>install Java to see a dynamic version of 
this image.';
-   }
 
-   //Look for parameter 'useSignedJar'.
-   $useSignedJar = isset( $args['usesignedjar'] ) ? $args['usesignedjar'] 
: '';
-   //Look for parameter 'useLocalJar'. Will be overwritten with 'true', if 
parameter 'filename is used'
-   $useLocalJar = isset( $args['uselocaljar'] ) ? $args['uselocaljar'] : 
'';
-   $printDebug = isset( $args['debug'] ) ? $args['debug'] : 'false';
+if ( isset( $args['version'] ) ) {
+  $version = htmlspecialchars( strip_tags( $args['version'] ) );
+  $codeBaseUnsigned = 'http://www.geogebra.org/webstart/' . $version . 
'/unsigned/';
+ $version_without_point = substr($version, 0, 1) . 
substr($version, 2,1);
+ if ($version == '4.2' || $version == '4.4' || $version == 
'5.0'){
+  

[MediaWiki-commits] [Gerrit] Added an i18n message used by the applet generated by the ex... - change (mediawiki...FormelApplet)

2013-08-16 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/79349


Change subject: Added an i18n message used by the applet generated by the 
extension (3rd try with Linux line endings)
..

Added an i18n message used by the applet generated by the extension (3rd try 
with Linux line endings)

Change-Id: I71d9a0ab7fad05224c6e04a7473c311cbf50de60
---
M FormelApplet.i18n.php
1 file changed, 1 insertion(+), 426 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FormelApplet 
refs/changes/49/79349/1

diff --git a/FormelApplet.i18n.php b/FormelApplet.i18n.php
index 954d554..b763cfc 100644
--- a/FormelApplet.i18n.php
+++ b/FormelApplet.i18n.php
@@ -3,431 +3,8 @@
  *
  * Internationalization file for the FormelApplet extension.
  *
- * corresponding to FormelApplet.php Version 1.3i
- * @file
- * @ingroup Extensions
- */
-
-$messages = array();
-
-/** English
- * @author Rudolf Grossmann
- */
-$messages['en'] = array(
-   'formelapplet-desc' => 'Add [http://wiki.formelapplet.de FormelApplet] 
applets to pages.',
-   'formelapplet-nojava' => 'Please install $1 to use this page.',
-   'formelapplet-missing-parameter' => 'Missing parameter (width or height 
or term/solution).',
-   'formelapplet-file-not-found' => 'File $1 not found.',
-   'formelapplet-error' => 'Error in FormelApplet MediaWiki extension: 
$1',
-   'RCM_permil' => 'Permil',
-);
-
-/** Message documentation (Message documentation)
- * @author Garrett Brown/Rudolf Grossmann
- * @author Kghbln
- * @author Shirayuki
- */
-$messages['qqq'] = array(
-   'formelapplet-desc' => '{{desc|name=Formel 
Applet|url=http://www.mediawiki.org/wiki/Extension:FormelApplet}}',
-   'formelapplet-nojava' => 'Error message if Java not installed with link 
where to get from.',
-   'formelapplet-missing-parameter' => 'Error message if parameter width 
or height or term/solution missing.
-
-{{doc-important|Do not translate the parameters "width", "height" or 
"term/solution".}}',
-   'formelapplet-file-not-found' => 'Error message if file not found.',
-   'formelapplet-error' => 'General part of error message.',
-   'RCM_permil' => 'Permil - used by menu of applet generated by 
FormelApplet MediaWiki extension.',
-);
-
-/** Asturian (asturianu)
- * @author Rudolf.Grossmann
- * @author Xuacu
- */
-$messages['ast'] = array(
-   'formelapplet-desc' => 'Amestar les miniaplicaciones 
[http://wiki.formelapplet.de FormelApplet] 
-nes páxines.',
-   'formelapplet-nojava' => 'Instale $1 pa usar esta páxina.',
-   'formelapplet-missing-parameter' => 'Falta un parámetru ("width" o 
"height" o "term/solution").',
-   'formelapplet-file-not-found' => "Nun s'alcontró el ficheru $1.",
-   'formelapplet-error' => 'Error na estensión FormelApplet de MediaWiki: 
$1',
-);
-
-/** Breton (brezhoneg)
- * @author Y-M D
- */
-$messages['br'] = array(
-   'formelapplet-nojava' => 'Mar plij stalit $1 evit implijout ar 
bajenn-mañ.',
-   'formelapplet-file-not-found' => "N'eo ket bet kavet ar restr $1.",
-);
-
-/** Czech (česky)
- * @author Vks
- */
-$messages['cs'] = array(
-   'formelapplet-file-not-found' => 'Soubor $1 nebyl nalezen.',
-);
-
-/** German (Deutsch)
- * @author Kghbln
- * @author Metalhead64
- * @author Metalhead64/Rudolf Grossmann
- */
-$messages['de'] = array(
-   'formelapplet-desc' => 'Ermöglicht die Nutzung von 
[http://wiki.formelapplet.de FormelApplets] auf Seiten',
-   'formelapplet-nojava' => 'Bitte installiere $1, um diese Seite nutzen 
zu können.',
-   'formelapplet-missing-parameter' => 'Ein Parameter wurde nicht 
angegeben und fehlt daher („width“, „height“ oder „term/solution“).',
-   'formelapplet-file-not-found' => 'Die Datei $1 wurde nicht gefunden.',
-   'formelapplet-error' => 'Bei der MediaWiki-Programmerweiterung 
FormelApplet ist ein Fehler aufgetreten: $1',
-);
-
-/** German (formal address) (Deutsch (Sie-Form)‎)
- * @author Kghbln
- */
-$messages['de-formal'] = array(
-   'formelapplet-nojava' => 'Bitte installieren Sie $1, um diese Seite 
nutzen zu können.',
-);
-
-/** Zazaki (Zazaki)
- * @author Erdemaslancan
- */
-$messages['diq'] = array(
-   'formelapplet-file-not-found' => 'Zey $1 theba çıniyo',
-);
-
-/** Lower Sorbian (dolnoserbski)
- * @author Michawiki
- */
-$messages['dsb'] = array(
-   'formelapplet-desc' => 'Bokam aplety [http://wiki.formelapplet.de 
FormelApplet] pśidaś',
-   'formelapplet-nojava' => 'Pšosym instalěruj $1, aby toś ten bok 
wužywał.',
-   'formelapplet-missing-parameter' => 'Felujucy parameter ("width", 
"height" abo "term/solution").',
-   'formelapplet-file-not-found' => 'Dataja $1 njejo se namakała.',
-   'formelapplet-error' => 'Zmólka w rozšyrjenju MediaWiki FormelApplet: 
$1',
-);
-
-/** Greek (Ελληνικά)
- * @author ZaDiak
- */
-$messages['el'] = array(
-   'formelapplet-f

[MediaWiki-commits] [Gerrit] Added an i18n message used by the applet generated by the ex... - change (mediawiki...FormelApplet)

2013-08-14 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/79156


Change subject: Added an i18n message used by the applet generated by the 
extension (2nd try with Linux line endings)
..

Added an i18n message used by the applet generated by the extension (2nd try 
with Linux line endings)

Change-Id: I4207aa3a244ae00af34a5cf536bf59dc3b5cd436
---
M FormelApplet.i18n.php
1 file changed, 427 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FormelApplet 
refs/changes/56/79156/1

diff --git a/FormelApplet.i18n.php b/FormelApplet.i18n.php
index 67f738d..74c0dec 100644
--- a/FormelApplet.i18n.php
+++ b/FormelApplet.i18n.php
@@ -3,7 +3,7 @@
  *
  * Internationalization file for the FormelApplet extension.
  *
- * corresponding to FormelApplet.php Version 1.3h
+ * corresponding to FormelApplet.php Version 1.3i
  * @file
  * @ingroup Extensions
  */
@@ -421,3 +421,429 @@
'formelapplet-file-not-found' => '找不到文件 $1。',
'formelapplet-error' => 'MediaWiki扩展FormelApplet中的错误:$1',
 );
+===
+ 'Add [http://wiki.formelapplet.de FormelApplet] 
applets to pages.',
+   'formelapplet-nojava' => 'Please install $1 to use this page.',
+   'formelapplet-missing-parameter' => 'Missing parameter (width or height 
or term/solution).',
+   'formelapplet-file-not-found' => 'File $1 not found.',
+   'formelapplet-error' => 'Error in FormelApplet MediaWiki extension: 
$1',
+   'RCM_permil' => 'Permil',
+);
+
+/** Message documentation (Message documentation)
+ * @author Garrett Brown/Rudolf Grossmann
+ * @author Kghbln
+ * @author Shirayuki
+ */
+$messages['qqq'] = array(
+   'formelapplet-desc' => '{{desc|name=Formel 
Applet|url=http://www.mediawiki.org/wiki/Extension:FormelApplet}}',
+   'formelapplet-nojava' => 'Error message if Java not installed with link 
where to get from.',
+   'formelapplet-missing-parameter' => 'Error message if parameter width 
or height or term/solution missing.
+
+{{doc-important|Do not translate the parameters "width", "height" or 
"term/solution".}}',
+   'formelapplet-file-not-found' => 'Error message if file not found.
+{{Identical|File not found}}',
+   'formelapplet-error' => 'General part of error message.',
+   'RCM_permil' => 'Permil - used by menu of applet generated by 
FormelApplet MediaWiki extension.',
+);
+
+/** Asturian (asturianu)
+ * @author Rudolf.Grossmann
+ * @author Xuacu
+ */
+$messages['ast'] = array(
+   'formelapplet-desc' => 'Amestar les miniaplicaciones 
[http://wiki.formelapplet.de FormelApplet] 
+nes páxines.',
+   'formelapplet-nojava' => 'Instale $1 pa usar esta páxina.',
+   'formelapplet-missing-parameter' => 'Falta un parámetru ("width" o 
"height" o "term/solution").',
+   'formelapplet-file-not-found' => "Nun s'alcontró el ficheru $1.",
+   'formelapplet-error' => 'Error na estensión FormelApplet de MediaWiki: 
$1',
+);
+
+/** Breton (brezhoneg)
+ * @author Y-M D
+ */
+$messages['br'] = array(
+   'formelapplet-nojava' => 'Mar plij stalit $1 evit implijout ar 
bajenn-mañ.',
+   'formelapplet-file-not-found' => "N'eo ket bet kavet ar restr $1.",
+);
+
+/** Czech (česky)
+ * @author Vks
+ */
+$messages['cs'] = array(
+   'formelapplet-file-not-found' => 'Soubor $1 nebyl nalezen.',
+);
+
+/** German (Deutsch)
+ * @author Kghbln
+ * @author Metalhead64
+ * @author Metalhead64/Rudolf Grossmann
+ */
+$messages['de'] = array(
+   'formelapplet-desc' => 'Ermöglicht die Nutzung von 
[http://wiki.formelapplet.de FormelApplets] auf Seiten',
+   'formelapplet-nojava' => 'Bitte installiere $1, um diese Seite nutzen 
zu können.',
+   'formelapplet-missing-parameter' => 'Ein Parameter wurde nicht 
angegeben und fehlt daher („width“, „height“ oder „term/solution“).',
+   'formelapplet-file-not-found' => 'Die Datei $1 wurde nicht gefunden.',
+   'formelapplet-error' => 'Bei der MediaWiki-Programmerweiterung 
FormelApplet ist ein Fehler aufgetreten: $1',
+);
+
+/** German (formal address) (Deutsch (Sie-Form)‎)
+ * @author Kghbln
+ */
+$messages['de-formal'] = array(
+   'formelapplet-nojava' => 'Bitte installieren Sie $1, um diese Seite 
nutzen zu können.',
+);
+
+/** Zazaki (Zazaki)
+ * @author Erdemaslancan
+ */
+$messages['diq'] = array(
+   'formelapplet-file-not-found' => 'Zey $1 theba çıniyo',
+);
+
+/** Lower Sorbian (dolnoserbski)
+ * @author Michawiki
+ */
+$messages['dsb'] = array(
+   'formelapplet-desc' => 'Bokam aplety [http://wiki.formelapplet.de 
FormelApplet] pśidaś',
+   'formelapplet-nojava' => 'Pšosym instalěruj $1, aby toś ten bok 
wužywał.',
+   'formelapplet-missing-parameter' => 'Felujucy parameter ("width", 
"height" abo "term/solution").',
+   'formelapplet-file-not-found' => 'Dataja $1 njejo se namakała.',
+   'formelapplet-error' => 'Zmólka w rozšyrjenju MediaWiki FormelApplet: 

[MediaWiki-commits] [Gerrit] I18n of error messages. Use of parameters in messages. - change (mediawiki...GeoGebra[master])

2012-09-07 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

Change subject: I18n of error messages. Use of parameters in messages.
..

I18n of error messages. Use of parameters in messages.

Use of translations of some error messages from FormelApplet extension.

Change-Id: Ibf76e8fbd047c83d6a27fcf9ff564c0658a75d29
---
M GeoGebra.i18n.php
M GeoGebra.php
2 files changed, 84 insertions(+), 14 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GeoGebra 
refs/changes/47/23047/1
--
To view, visit https://gerrit.wikimedia.org/r/23047
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibf76e8fbd047c83d6a27fcf9ff564c0658a75d29
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GeoGebra
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Disable use of packed JAR files. - change (mediawiki...FormelApplet[master])

2012-09-06 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

Change subject: Disable use of packed JAR files.
..

Disable use of packed JAR files.

For sake of compatibility with Java 7 comment out use of packed JAR files.
Small syntax improvement concerning use of parameters in i18n messages.

Change-Id: Ib08e6326c4465dfbe6990da09e22566db364f19c
---
M FormelApplet.php
1 file changed, 68 insertions(+), 64 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FormelApplet 
refs/changes/00/23000/1
--
To view, visit https://gerrit.wikimedia.org/r/23000
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib08e6326c4465dfbe6990da09e22566db364f19c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Small overhaul (part four)- Correct confused message keys. - change (mediawiki...FormelApplet[master])

2012-09-03 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

Change subject: Small overhaul (part four)- Correct confused message keys.
..

Small overhaul (part four)- Correct confused message keys.

Corresponding i18n file added.
Version number updated to 1.3g.

Change-Id: Ie1d5d76702558d8ddd8135c9c7581a67a89c47fa
---
M FormelApplet.i18n.php
M FormelApplet.php
2 files changed, 89 insertions(+), 79 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FormelApplet 
refs/changes/93/22493/1
--
To view, visit https://gerrit.wikimedia.org/r/22493
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie1d5d76702558d8ddd8135c9c7581a67a89c47fa
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Small overhaul (part three)- Correct format of wfMessage(). - change (mediawiki...FormelApplet[master])

2012-09-03 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

Change subject: Small overhaul (part three)- Correct format of wfMessage().
..

Small overhaul (part three)- Correct format of wfMessage().

Based on version 1.3d, which was not merged to master.
Another version 1.3e was committed, but did not appear at Gerrit.
(commit 0ba79b049e4f328a9875d812aca675cb34be3cc8)
Version number updated to 1.3f.

Change-Id: I60b17b55a9f38a90cebf6db4e16bab831c7302a7
---
M FormelApplet.php
1 file changed, 58 insertions(+), 61 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FormelApplet 
refs/changes/40/22440/1
--
To view, visit https://gerrit.wikimedia.org/r/22440
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I60b17b55a9f38a90cebf6db4e16bab831c7302a7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Small overhaul (part two)- Replace hard coded messages etc. - change (mediawiki...FormelApplet[master])

2012-08-12 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

Change subject: Small overhaul (part two)- Replace hard coded messages etc.
..

Small overhaul (part two)- Replace hard coded messages etc.

Use of parameters in i18n.
Replace hard coded error messages by i18n messages.
Replace needless compatibility code.
Version number updated to 1.3d.

Change-Id: I290d660484c296145e743d1ef909a312d326db10
---
M FormelApplet.i18n.php
M FormelApplet.php
2 files changed, 68 insertions(+), 62 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FormelApplet 
refs/changes/83/19183/1
--
To view, visit https://gerrit.wikimedia.org/r/19183
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I290d660484c296145e743d1ef909a312d326db10
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Localisation updates from http://translatewiki.net. - change (mediawiki...FormelApplet[master])

2012-08-12 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: Localisation updates from http://translatewiki.net.
..


Localisation updates from http://translatewiki.net.

Change-Id: Ic8a140f8211692ad6432b1450abf94d262116b78
---
M FormelApplet.i18n.php
1 file changed, 44 insertions(+), 1 deletion(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved


--
To view, visit https://gerrit.wikimedia.org/r/19089
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic8a140f8211692ad6432b1450abf94d262116b78
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Small overhaul (part one) - change (mediawiki...FormelApplet[master])

2012-08-12 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: Small overhaul (part one)
..


Small overhaul (part one)

Trailing whitespace deleted.
Activated i18n by use of $wgExtensionMessagesFiles
Version number updated to 1.3b

Change-Id: I07f58b20293e48a51ff35e6778146a7578f64c8c
---
M FormelApplet.i18n.php
M FormelApplet.php
2 files changed, 24 insertions(+), 20 deletions(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved


--
To view, visit https://gerrit.wikimedia.org/r/19011
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I07f58b20293e48a51ff35e6778146a7578f64c8c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 
Gerrit-Reviewer: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] It is not enough for GeoGebra.i18n.php to exist. It has to b... - change (mediawiki...GeoGebra[master])

2012-08-12 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: It is not enough for GeoGebra.i18n.php to exist. It has to be 
embedded using $wgExtensionMessagesFiles Updated version number to 2.8c
..


It is not enough for GeoGebra.i18n.php to exist.
It has to be embedded using $wgExtensionMessagesFiles
Updated version number to 2.8c

Change-Id: I8237f61276b91a466b5dd1ed0ac373684b7167c4
---
M GeoGebra.php
1 file changed, 4 insertions(+), 3 deletions(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved


--
To view, visit https://gerrit.wikimedia.org/r/19010
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I8237f61276b91a466b5dd1ed0ac373684b7167c4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GeoGebra
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 
Gerrit-Reviewer: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] It is not enough for GeoGebra.i18n.php to exist. It has to b... - change (mediawiki...GeoGebra[master])

2012-08-12 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

Change subject: It is not enough for GeoGebra.i18n.php to exist. It has to be 
embedded using $wgExtensionMessagesFiles Updated version number to 2.8c
..

It is not enough for GeoGebra.i18n.php to exist.
It has to be embedded using $wgExtensionMessagesFiles
Updated version number to 2.8c

Change-Id: I8237f61276b91a466b5dd1ed0ac373684b7167c4
---
M GeoGebra.php
1 file changed, 4 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/GeoGebra 
refs/changes/10/19010/1
--
To view, visit https://gerrit.wikimedia.org/r/19010
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8237f61276b91a466b5dd1ed0ac373684b7167c4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GeoGebra
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Initial commit. - change (mediawiki...FormelApplet[master])

2012-08-10 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: Initial commit.
..


Initial commit.

Based on code published at http://www.mediawiki.org/wiki/Extension:FormelApplet
Normalized line endings. Update version number from 1.2d to 1.3a.
Added file FormelApplet.i18n.php

Change-Id: I4fdef74725259bd4bc28c7487a1eaf2873a32eb6
---
A FormelApplet.i18n.php
A FormelApplet.php
2 files changed, 186 insertions(+), 0 deletions(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved


--
To view, visit https://gerrit.wikimedia.org/r/18633
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I4fdef74725259bd4bc28c7487a1eaf2873a32eb6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 
Gerrit-Reviewer: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Initial commit. - change (mediawiki...FormelApplet[master])

2012-08-10 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has uploaded a new change for review.

Change subject: Initial commit.
..

Initial commit.

Based on code published at http://www.mediawiki.org/wiki/Extension:FormelApplet
Normalized line endings. Update version number from 1.2d to 1.3a.
Added file FormelApplet.i18n.php

Change-Id: I4fdef74725259bd4bc28c7487a1eaf2873a32eb6
---
A FormelApplet.i18n.php
A FormelApplet.php
2 files changed, 186 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/FormelApplet 
refs/changes/33/18633/1
--
To view, visit https://gerrit.wikimedia.org/r/18633
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4fdef74725259bd4bc28c7487a1eaf2873a32eb6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Normalize line endings. - change (mediawiki...GeoGebra[master])

2012-08-10 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: Normalize line endings.
..


Normalize line endings.

Replace \r\n (CRLF, Win style) by \n (LF, Linux style).
Update version number to 2.8b.

Change-Id: I099ed7949f40b76a068f1d35c5880feea9a91663
---
M GeoGebra.php
1 file changed, 203 insertions(+), 203 deletions(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved


--
To view, visit https://gerrit.wikimedia.org/r/18610
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I099ed7949f40b76a068f1d35c5880feea9a91663
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GeoGebra
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 
Gerrit-Reviewer: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Compatibility with MediaWiki >= 1.18.x - change (mediawiki...GeoGebra[master])

2012-08-09 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: Compatibility with MediaWiki >= 1.18.x
..


Compatibility with MediaWiki >= 1.18.x

Replace ImageImage::newFromName() with  wfLocalFile()
Thanks to Zbynek from GeoGebra team!

Change-Id: I9a23d46db034e19d104086ce334bb3d77383ed3b
---
M GeoGebra.php
1 file changed, 202 insertions(+), 207 deletions(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved


--
To view, visit https://gerrit.wikimedia.org/r/18231
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I9a23d46db034e19d104086ce334bb3d77383ed3b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GeoGebra
Gerrit-Branch: master
Gerrit-Owner: Rudolf.grossmann 
Gerrit-Reviewer: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Initial commit (code from http://www.mediawiki.org/wiki/Exte... - change (mediawiki...GeoGebra[master])

2012-08-03 Thread Rudolf.grossmann (Code Review)
Rudolf.grossmann has submitted this change and it was merged.

Change subject: Initial commit (code from 
http://www.mediawiki.org/wiki/Extension:GeoGebra)
..


Initial commit (code from http://www.mediawiki.org/wiki/Extension:GeoGebra)

Amended: whitespace removed

Change-Id: I6de573300ab19ebb528ebb6c868f8d2bcd8a5578
---
A GeoGebra.php
1 file changed, 207 insertions(+), 0 deletions(-)

Approvals:
  Rudolf.grossmann: Verified; Looks good to me, approved


--
To view, visit https://gerrit.wikimedia.org/r/16246
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I6de573300ab19ebb528ebb6c868f8d2bcd8a5578
Gerrit-PatchSet: 3
Gerrit-Project: mediawiki/extensions/GeoGebra
Gerrit-Branch: master
Gerrit-Owner: Zbynek 
Gerrit-Reviewer: Nikerabbit 
Gerrit-Reviewer: Rudolf.grossmann 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits