[Pkg-mediawiki-commits] r257 - in mediawiki-extensions/trunk/debian: . patches
Thorsten Glaser
tg at alioth.debian.org
Tue Apr 12 13:47:39 UTC 2011
Author: tg
Date: 2011-04-12 13:47:38 +0000 (Tue, 12 Apr 2011)
New Revision: 257
Modified:
mediawiki-extensions/trunk/debian/changelog
mediawiki-extensions/trunk/debian/patches/fix_graphviz.patch
Log:
and thus, the beta-testing by others can begin
I tested these:
?\226?\128?\162 Packages:
- mediawiki-extensions-base
- mediawiki-extensions-collection
- mediawiki-extensions-geshi
- mediawiki-extensions-graphviz
?\226?\128?\162 Extensions:
- Special:Interwiki (full)
- Cite (full)
- Collection (not much, but used to work + no code changes)
- CreateBox (displays)
- Footnote (full)
- GraphViz (full)
- ImageMap (full)
- InputBox (displays)
- LanguageSelector (displays + no code changes)
- NewestPages (full)
- News (full)
- PageCSS (full)
- ParserFunctions (a bit + no code changes)
- Polyglot (a bit + no code changes)
- RSS_Reader (full)
- SpecialCite (full)
Modified: mediawiki-extensions/trunk/debian/changelog
===================================================================
--- mediawiki-extensions/trunk/debian/changelog 2011-04-12 13:16:51 UTC (rev 256)
+++ mediawiki-extensions/trunk/debian/changelog 2011-04-12 13:47:38 UTC (rev 257)
@@ -1,4 +1,4 @@
-mediawiki-extensions (2.4~beta+4) unstable; urgency=low
+mediawiki-extensions (2.4~beta+5) unstable; urgency=low
* Fix a few extensions’ bugs to achieve XHTML validity
* Make id attributes unique in RSS_Reader and fix warnings
@@ -11,7 +11,7 @@
* Acknowledge NMU by Stefano Rivera, thanks! (patch was superseded)
* Fix LDAP Auth by John Franklin (LP: #668589)
- -- Thorsten Glaser <tg at mirbsd.de> Tue, 12 Apr 2011 15:16:34 +0200
+ -- Thorsten Glaser <tg at mirbsd.de> Tue, 12 Apr 2011 15:42:37 +0200
mediawiki-extensions (2.3+nmu1) unstable; urgency=low
Modified: mediawiki-extensions/trunk/debian/patches/fix_graphviz.patch
===================================================================
--- mediawiki-extensions/trunk/debian/patches/fix_graphviz.patch 2011-04-12 13:16:51 UTC (rev 256)
+++ mediawiki-extensions/trunk/debian/patches/fix_graphviz.patch 2011-04-12 13:47:38 UTC (rev 257)
@@ -6,8 +6,8 @@
Index: trunk/dist/mediawiki-extensions-graphviz/usr/share/mediawiki-extensions/graphviz/GraphViz.php
===================================================================
---- trunk.orig/dist/mediawiki-extensions-graphviz/usr/share/mediawiki-extensions/graphviz/GraphViz.php 2011-04-12 14:24:26.000000000 +0200
-+++ trunk/dist/mediawiki-extensions-graphviz/usr/share/mediawiki-extensions/graphviz/GraphViz.php 2011-04-12 14:24:28.000000000 +0200
+--- trunk.orig/dist/mediawiki-extensions-graphviz/usr/share/mediawiki-extensions/graphviz/GraphViz.php 2011-04-12 14:31:37.000000000 +0200
++++ trunk/dist/mediawiki-extensions-graphviz/usr/share/mediawiki-extensions/graphviz/GraphViz.php 2011-04-12 15:40:53.000000000 +0200
@@ -20,7 +20,7 @@
* Describes where your actual (dot) executable remains.
*
@@ -24,7 +24,7 @@
- $txt = '<map name="' . $storagename . '">' . $map . '</map>' .
- '<img src="' . $wgUploadPath . '/graphviz/' . $storagename . '.' . $outputType . '"' .
- ' usemap="#' . $storagename . '" />';
-+ $txt = '<map id="map-' . $storagename . '" name="' . $storagename . '">' . $map . '</map>' .
++ $txt = '<map id="map-' . md5($storagename) . '" name="' . $storagename . '"><p>' . $map . '</p></map>' .
+ '<img alt="map-' . $storagename . '"' .
+ ' src="' . $wgUploadPath . '/graphviz/' . $storagename . '.' . $outputType . '"' .
+ ' usemap="#' . $storagename . '" />';
@@ -39,7 +39,7 @@
- '<img class="' . $imageClass . '" style="' . $imageStyle . '"' .
- 'alt="' . $alt . '" src="' . $wgUploadPath . '/graphviz/' . $storagename . '.' . $outputType . '"' .
- ' usemap="#' . $storagename . '" />';
-+ $txt = '<map id="map-' . $storagename . '" name="' . $storagename . '">' . $map . '</map>' .
++ $txt = '<map id="map-' . md5($storagename) . '" name="' . $storagename . '"><p>' . $map . '</p></map>' .
+ '<img class="' . $imageClass . '" style="' . $imageStyle . '"' .
+ ' alt="' . $alt . '" src="' . $wgUploadPath . '/graphviz/' . $storagename . '.' . $outputType . '"' .
+ ' usemap="#' . $storagename . '" />';
More information about the Pkg-mediawiki-commits
mailing list