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-requ...@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-requ...@lists.wikimedia.org
> 
> You can reach the person managing the list at
> mediawiki-l-ow...@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:
> 
> 1. Re: short headers in TOC (Frederick Grose)
> 2. Re: How to enable new features of MW 1.16? (Peter Velan)
> 3. Re: short headers in TOC (Scheid, Bernhard)
> 
> 
> ----------------------------------------------------------------------
> 
> Message: 1
> Date: Mon, 19 Jul 2010 22:01:18 -0400
> From: Frederick Grose <fgr...@gmail.com>
> Subject: Re: [Mediawiki-l] short headers in TOC
> To: mediawiki-l@lists.wikimedia.org
> Message-ID:
> <aanlktikquc41jemqlt2qkohpiykqhuvmm2ywtqvoh...@mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
> 
> On Mon, Jul 19, 2010 at 7:53 PM, Platonides <platoni...@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 <pv0...@dynapic.net>
> Subject: Re: [Mediawiki-l] How to enable new features of MW 1.16?
> To: mediawiki-l@lists.wikimedia.org
> Message-ID: <4c453c5f.6060...@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.sch...@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:
> <366d7d7f1f289542b015a3e5de057d5401c4fbab9...@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 '&nbsp;' 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-boun...@lists.wikimedia.org 
> [mailto:mediawiki-l-boun...@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
_______________________________________________
MediaWiki-l mailing list
MediaWiki-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to