ansorri Iam not spikin inglish. no comprendo todos los mail recibidos. Yo solo soy, un ser preocupado por lo que vio. sin poder y con miedo. Amo a mi familia y a mi mundo.Por momentos tomo coraje y trato de hacer publico, lo que vi. Despues razono y me arrepiento. Cuando evaluo que puede pasar. Solo me queda problemas y preocupaciones. Asi creyeran en mi. igual seria malo, por las concecuencias que trae,el comportamiento humano es egoista. y la especulacion, haria mas daño que el echo real, en si.
Me contacte con ustedes,para sacar mi incertidumbre.y saber si hay alguien mas, que se atreva a declarar como testigo de avistamiento de estos monstruos.y a futuro cuando, esto sea mas creible. Brindarle ayuda y colaboracion al especialista, que este a cargo de la investigacion. Me despido de ustedes, esperando que comprendan mi pocision
From: mediawiki-l-request@lists.wikimedia.org Subject: MediaWiki-l Digest, Vol 82, Issue 22 To: mediawiki-l@lists.wikimedia.org Date: Tue, 20 Jul 2010 12:00:08 +0000
Send MediaWiki-l mailing list submissions to mediawiki-l@lists.wikimedia.org
To subscribe or unsubscribe via the World Wide Web, visit https://lists.wikimedia.org/mailman/listinfo/mediawiki-l or, via email, send a message with subject or body 'help' to mediawiki-l-request@lists.wikimedia.org
You can reach the person managing the list at mediawiki-l-owner@lists.wikimedia.org
When replying, please edit your Subject line so it is more specific than "Re: Contents of MediaWiki-l digest..."
Today's Topics:
- Re: short headers in TOC (Frederick Grose)
- Re: How to enable new features of MW 1.16? (Peter Velan)
- Re: short headers in TOC (Scheid, Bernhard)
Message: 1 Date: Mon, 19 Jul 2010 22:01:18 -0400 From: Frederick Grose fgrose@gmail.com Subject: Re: [Mediawiki-l] short headers in TOC To: mediawiki-l@lists.wikimedia.org Message-ID: AANLkTikqUC41jemQLT2QkOhPIYKqhUvmM2YWtQvOH1V_@mail.gmail.com Content-Type: text/plain; charset=ISO-8859-1
On Mon, Jul 19, 2010 at 7:53 PM, Platonides Platonides@gmail.com wrote:
Scheid, Bernhard wrote:
Sounds interesting but a bit arcane. I found the tocLine() function in
my Linker.php, but the problem seems to me how to define/override the $tocline parameter.
Can you give me some more detailled advice? New skin would be no problem,
btw...
B.
The skins inherit from the linker. You could create a skin (supposing you want it to look like the vector skin) by putting in the appropiate file in the skins folder something like this:
require_once "Vector.php"; class SkinBernhard extends SkinVector { var $skinname = 'bernhardtoc';
function tocLine( $anchor, $tocline, $tocnumber, $level, $sectionIndex = false ) { $n = strpos($tocline, ' '); if ($n !== false) $tocline = substr( $tocline, 0, $n ); return parent::tocLine($anchor, $tocline, $tocnumber, $level, $sectionIndex); } }
In this case, if the has a double space, the toc only shows the text that appears before that.
This would be a valuable feature to make part of the standard software. It would provide a way to collapse TOC boxes made suddenly wide, and obscuring of page content, by the insertion of a long section header.
Is there a CSS or JS method we could employ for those without access to the Skins folder?
--Fred
Message: 2 Date: Tue, 20 Jul 2010 08:04:15 +0200 From: Peter Velan pv0001@dynapic.net Subject: Re: [Mediawiki-l] How to enable new features of MW 1.16? To: mediawiki-l@lists.wikimedia.org Message-ID: 4C453C5F.6060103@dynapic.net Content-Type: text/plain; charset=ISO-8859-1
am 19.07.2010 15:52 schrieb Lane, Ryan:
I put this ...
$wgVectorModules['collapsiblenav']['user'] = true; $wgVectorModules['collapsiblenav']['global'] = true;
... to my LocalConfig and checked that 'collapsiblenav' is enabled in my own settings.
Nevertheless there's no collapsing menu entries. What I'm doing wrong?
Collapsible nav doesn't work in 1.16 without modifying the Javascript.
To fix this, replace all instances of #mw-panel with #panel in Vector/Vector.combined.min.js, Vector/Vector.combined.js, Vector/Modules/CollapsibleNav/CollapsibleNav.js, css/combined.min.css, css/combined.css, and css/vector.collapsibleNav.css.
I tried this and yes, collapsible nav worked, until ... ... I had to step back, 'cause the side effects are intolerable:
- searchbox is filled with rubbish
- some labels are undecipherable for my users
- some new edit features are unusable
Sad to say, but I'm still not able to use collapsible nav.
Anyway, thanks for any suggestions, Peter
Message: 3 Date: Tue, 20 Jul 2010 13:17:16 +0200 From: "Scheid, Bernhard" Bernhard.Scheid@oeaw.ac.at Subject: Re: [Mediawiki-l] short headers in TOC To: MediaWiki announcements and site admin list mediawiki-l@lists.wikimedia.org Message-ID: 366D7D7F1F289542B015A3E5DE057D5401C4FBAB9E8C@W07EXCHANGE.oeaw.ads Content-Type: text/plain; charset="iso-8859-1"
Thank you, unfortunately it does not work. I do use a skin of my own and inserted your function there, but to no effect. I also tried ' ' and '-' as a delimiter.
B.
PS: Seems to be a good candidate for an extension, however I am unable to do that...
-----Urspr?ngliche Nachricht----- Von: mediawiki-l-bounces@lists.wikimedia.org [mailto:mediawiki-l-bounces@lists.wikimedia.org] Im Auftrag von Platonides Gesendet: Dienstag, 20. Juli 2010 01:54 An: mediawiki-l@lists.wikimedia.org Betreff: Re: [Mediawiki-l] short headers in TOC
Scheid, Bernhard wrote:
Sounds interesting but a bit arcane. I found the tocLine() function in my Linker.php, but the problem seems to me how to define/override the $tocline parameter. Can you give me some more detailled advice? New skin would be no problem, btw...
B.
The skins inherit from the linker. You could create a skin (supposing you want it to look like the vector skin) by putting in the appropiate file in the skins folder something like this:
require_once "Vector.php"; class SkinBernhard extends SkinVector { var $skinname = 'bernhardtoc';
function tocLine( $anchor, $tocline, $tocnumber, $level, $sectionIndex = false ) { $n = strpos($tocline, ' '); if ($n !== false) $tocline = substr( $tocline, 0, $n ); return parent::tocLine($anchor, $tocline, $tocnumber, $level, $sectionIndex); } }
In this case, if the has a double space, the toc only shows the text that appears before that.
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
End of MediaWiki-l Digest, Vol 82, Issue 22
_________________________________________________________________ En Hotmail estamos reinventando un nuevo correo. Preparate para lo que se viene. Ver más http://www.nuevohotmail.com
marin martinez escribió:
ansorri Iam not spikin inglish. no comprendo todos los mail recibidos. Yo solo soy, un ser preocupado por lo que vio. sin poder y con miedo. Amo a mi familia y a mi mundo.Por momentos tomo coraje y trato de hacer publico, lo que vi. Despues razono y me arrepiento. Cuando evaluo que puede pasar. Solo me queda problemas y preocupaciones. Asi creyeran en mi. igual seria malo, por las concecuencias que trae,el comportamiento humano es egoista. y la especulacion, haria mas daño que el echo real, en si.
Me contacte con ustedes,para sacar mi incertidumbre.y saber si hay alguien mas, que se atreva a declarar como testigo de avistamiento de estos monstruos.y a futuro cuando, esto sea mas creible. Brindarle ayuda y colaboracion al especialista, que este a cargo de la investigacion. Me despido de ustedes, esperando que comprendan mi pocision
Lo siento Marin, esta lista de correo no tiene nada que ver con avistamientos de cíclopes.
Sorry Marin, this mailing list has nothing to do with viewing cyclopes.
mediawiki-l@lists.wikimedia.org