On Wed, Apr 7, 2010 at 4:03 AM,
<[email protected]> wrote:
> Send MediaWiki-l mailing list submissions to
>        [email protected]
>
> 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
>        [email protected]
>
> You can reach the person managing the list at
>        [email protected]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of MediaWiki-l digest..."
>
>
> Today's Topics:
>
>   1. Re: Yellow discussion pages (Platonides)
>   2. Re: MediaWiki-l Digest, Vol 79, Issue 7 (Eng shoeb ahmed)
>   3. Re: Contents of MediaWiki-l digest... (Eng shoeb ahmed)
>   4. MediaWiki security update: 1.15.3 and 1.16.0beta2 (Tim Starling)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 06 Apr 2010 23:54:09 +0200
> From: Platonides <[email protected]>
> Subject: Re: [Mediawiki-l] Yellow discussion pages
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Benoit BRAIDA a ?crit:
>> Dear all,
>>
>> I'm looking for the extension that color in different yellow shades the 
>> discussions in Wikipedia. Could you indicate me which extension does that ?
>>
>> Cheers,
>> Beno?t
>
> Just copy http://fr.wikipedia.org/wiki/MediaWiki:Monobook.css to yours.
> You are probably interested on all of it.
> The section doing the yellow background is:
> /* Pages de discussion */
> .ns-talk * #content,
> .ns-talk * #p-cactions li,
> .ns-talk * #p-cactions li a { background:#FFE }
>
>
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 7 Apr 2010 01:19:53 +0300
> From: Eng shoeb ahmed <[email protected]>
> Subject: Re: [Mediawiki-l] MediaWiki-l Digest, Vol 79, Issue 7
> To: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On Tue, Apr 6, 2010 at 11:27 PM,
> <[email protected]> wrote:
>> Send MediaWiki-l mailing list submissions to
>> ? ? ? [email protected]
>>
>> 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
>> ? ? ? [email protected]
>>
>> You can reach the person managing the list at
>> ? ? ? [email protected]
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of MediaWiki-l digest..."
>>
>>
>> Today's Topics:
>>
>> ? 1. Re: Breadcrumbs? (Sean McAfee)
>> ? 2. Re: Flow into the pages (Platonides)
>> ? 3. (no subject) (Eng shoeb ahmed)
>> ? 4. Re: Contents of MediaWiki-l digest... (Eng shoeb ahmed)
>> ? 5. Re: Upgrade to 1.15.2 question (Tolliver)
>> ? 6. Fwd: Re: ?Contents of MediaWiki-l digest... (Chad)
>> ? 7. Yellow discussion pages (Benoit BRAIDA)
>> ? 8. Re: Upgrade to 1.15.2 question (Tolliver)
>> ? 9. Trouble hiding Navigation toolbar (Alex Durlak (Standard Form))
>>
>>
>> ----------------------------------------------------------------------
>>
>> Message: 1
>> Date: Tue, 06 Apr 2010 10:29:09 -0400
>> From: Sean McAfee <[email protected]>
>> Subject: Re: [Mediawiki-l] Breadcrumbs?
>> To: MediaWiki announcements and site admin list
>> ? ? ? ?<[email protected]>
>> Message-ID: <[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>>
>> Deon Metelski wrote:
>>> Deon Metelski wrote:
>>>> Hi all,
>>>>
>>>> I just created subpages and enabled them for the Custom NameSpace that I
>>>> created. My question is does the breadcrumb bar show automatically with
>>>> subpages or do I have to install the extension breadcrumb? I am not sure
>>> if
>>>> this is a built-in feature already on mediwiki or it is the extension.
>>>>
>>>> Thank you,
>>>> Deon
>>>
>>>> As long as the namespace appears in $wgNamespacesWithSubpages, >the
>>>> breadcrumbs should magically show up.
>>>
>>>> Sean McAfee
>>>> Senior Systems Engineer
>>>
>>> I even went to the Monobook theme and it still does not show. I am creating
>>> the subpages through Semantic Forms so i am not sure if that is causing
>>> issues...my LocalSetting.php has the following which I think is correct
>>>
>>> $wgExtraNamespaces[200] = "Lesson";
>>> $wgExtraNamespaces[201] = "Lesson_talk";
>>> $wgExtraNamespaces[202] = "ProjectLearning";
>>> $wgExtraNamespaces[203] = "ProjectLearning_talk";
>>>
>>> $wgContentNamespaces[] = 200;
>>> $wgContentNamespaces[] = 202;
>>>
>>> define("NS_PROJECTLEARNING", 200);
>>> define("NS_LESSON_TALK", 201);
>>> define("NS_PROJECTLEARNING_TALK", 202);
>>>
>>>
>>> $wgNamespacesWithSubpages [NS_PROJECTLEARNING] = true;
>>> $wgNamespacesWithSubpages [NS_PROJECTLEARNING_TALK] = true;
>>> $wgNamespacesWithSubpages [NS_LESSON_TALK] = true;
>>>
>>> If anyone can confirm these settings would work o generate breadcrumbs I can
>>> look at the Semantic Form extension/templates
>>> Thanks,
>>> Deon
>>> _______________________________________________
>>> MediaWiki-l mailing list
>>> [email protected]
>>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>
>> First off, you've got a typo:
>>
>> ?> define("NS_PROJECTLEARNING", 200);
>> ?> define("NS_LESSON_TALK", 201);
>> ?> define("NS_PROJECTLEARNING_TALK", 202);
>>
>> Should be:
>>
>> define("NS_PROJECTLEARNING", 200);
>> define("NS_LESSON_TALK", 201);
>> define("NS_PROJECTLEARNING", 202);
>> define("NS_PROJECTLEARNING_TALK", 203);
>>
>> I did something eerily similar before and it resulted in a bunch of
>> broken namespaces that were a disaster to clean up later.
>>
>> But to enable the breadcrumbs for those namespaces try adding the
>> following line to LocalSettings.php:
>>
>> $wgNamespacesWithSubpages = array_fill(200, 203, true);
>>
>> --
>> Sean McAfee
>> Senior Systems Engineer
>>
>>
>>
>> ------------------------------
>>
>> Message: 2
>> Date: Tue, 06 Apr 2010 17:02:34 +0200
>> From: Platonides <[email protected]>
>> Subject: Re: [Mediawiki-l] Flow into the pages
>> To: [email protected]
>> Message-ID: <[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>> Juan Jes?s Cremades Monserrat escribi?:
>>> Hi,
>>>
>>> I'm searching a meaning to give a little flow to the articles of my wiki.
>>> For example, if a section value into a template is void:
>>>
>>> ...
>>> ==Title==
>>> {{{title}}}
>>> ...
>>> ---------------------------------------
>>> {{
>>> ...
>>> | title =
>>> ...
>>> }}
>>>
>>> The "Title" won't be printing. I've found the
>>> "Extension:Winter/Documentation" but, is this the only? Thnaks
>>
>> That's usually achieved in wikipedia by using parserfunctions:
>>
>> {{#if: {{{title|}}} |
>> == Title ==
>> {{{title}}}
>> }}
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 3
>> Date: Tue, 6 Apr 2010 18:09:28 +0300
>> From: Eng shoeb ahmed <[email protected]>
>> Subject: [Mediawiki-l] (no subject)
>> To: [email protected]
>> Message-ID:
>> ? ? ? ?<[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 4
>> Date: Tue, 6 Apr 2010 18:11:49 +0300
>> From: Eng shoeb ahmed <[email protected]>
>> Subject: Re: [Mediawiki-l] Contents of MediaWiki-l digest...
>> To: [email protected]
>> Message-ID:
>> ? ? ? ?<[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 5
>> Date: Tue, 06 Apr 2010 12:14:50 -0300
>> From: Tolliver <[email protected]>
>> Subject: Re: [Mediawiki-l] Upgrade to 1.15.2 question
>> To: MediaWiki announcements and site admin list
>> ? ? ? ?<[email protected]>
>> Message-ID: <[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>>
>> Hello,
>>
>> Thanks very much, that worked!
>>
>> Unfortunately, when I try to access the wiki I get a permissions error;
>> that I will determine where the permissions need to be granted again,
>> since the upgrade.
>>
>>
>> ?Forbidden
>>
>> You don't have permission to access / on this server.
>>
>> When I try ?"apachectl graceful" , I get this error:
>> ---------------------------------------------------------------------------------
>> apachectl: Configuration syntax error, will not run "graceful":
>> httpd: Syntax error on line 209 of /etc/httpd/conf/httpd.conf: Syntax
>> error on line 180 of /etc/httpd/conf.d/wiki-ssl.conf: Could not open
>> configuration file /appl/web/devwiki/etc/devwiki.conf: No such file or
>> directory
>>
>> Lines in question:
>> line 209 in httpd.conf is: Include conf.d/*.conf
>> Line 180 of wiki-ssl.conf is: SSLOptions +StdEnvVars
>> /appl/web/devwiki/etc/devwiki.conf (doesn't exist)
>>
>>
>>
>> Thanks,
>> Graham
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> Huib Laurens wrote:
>>> Graham,
>>>
>>> Maybe you should comment all the extensions out of Localsettings.php
>>> and re-add them when you are done.
>>>
>>> Huib
>>>
>>> 2010/4/5, Tolliver <[email protected]>:
>>>
>>>> Hello Ryan,
>>>>
>>>> I get the following with that line removed from LocalSettings.php:
>>>>
>>>> PHP Notice: ?Undefined index: ?PHP_AUTH_USER in
>>>> /appl/web/devwiki/public_www/mediawiki-1.15/extensions/Auth_remoteuser.php
>>>> on line 92
>>>> PHP Warning: ?require_once(extensions/WhosOnline.php): failed to open
>>>> stream: No such file or directory in
>>>> /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php on line 143
>>>> PHP Fatal error: ?require_once(): Failed opening required
>>>> 'extensions/WhosOnline.php'
>>>> (include_path='/appl/web/devwiki/public_www/mediawiki-1.15:/appl/web/devwiki/public_www/mediawiki-1.15/includes:/appl/web/devwiki/public_www/mediawiki-1.15/languages:.:/usr/share/pear:/usr/share/php')
>>>> in /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php on line 
>>>> 143
>>>>
>>>> Thanks,
>>>> Graham
>>>> ------------------
>>>> Lane, Ryan wrote:
>>>>
>>>>>> Here is what I get when I run, ?php update.php --aconf
>>>>>> ../AdminSettings.php:
>>>>>>
>>>>>> PHP Notice: ?Undefined index: ?PHP_AUTH_USER in
>>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/extensions/Auth_re
>>>>>> moteuser.php
>>>>>> on line 92
>>>>>> PHP Warning:
>>>>>> require_once(/appl/web/devwiki/public_www/mediawiki-1.15/exten
>>>>>> sions/FCKeditor/FCKeditor.php):
>>>>>> failed to open stream: No such file or directory in
>>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php
>>>>>> on line 138
>>>>>> PHP Fatal error: ?require_once(): Failed opening required
>>>>>> '/appl/web/devwiki/public_www/mediawiki-1.15/extensions/FCKedi
>>>>>> tor/FCKeditor.php'
>>>>>> (include_path='/appl/web/devwiki/public_www/mediawiki-1.15:/ap
>>>>>> pl/web/devwiki/public_www/mediawiki-1.15/includes:/appl/web/de
>>>>>> vwiki/public_www/mediawiki-1.15/languages:.:/usr/share/pear:/u
>>>>>> sr/share/php')
>>>>>> in
>>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php
>>>>>> on line 138
>>>>>>
>>>>>>
>>>>>>
>>>>>> - This is line 92 from AdminSettings.php:
>>>>>> ? if ( strlen($_SERVER['PHP_AUTH_USER']) ) {
>>>>>>
>>>>>>
>>>>>>
>>>>> This part of the update.php log is just a notice, and can be ignored.
>>>>> PHP_AUTH_USER isn't defined because no one is authenticating. You don't
>>>>> need
>>>>> authentication from the commandline though.
>>>>>
>>>>>
>>>>>
>>>>>> - There isn't a FCKeditor.php file in the root dir; can it simply be
>>>>>> copied from and existing wiki on the server?
>>>>>>
>>>>>>
>>>>>>
>>>>> Comment out the FCKeditor extension from LocalSettings.php, and then try
>>>>> again. Re-add it when you are done.
>>>>>
>>>>> V/r,
>>>>>
>>>>> Ryan Lane
>>>>>
>>>>> ------------------------------------------------------------------------
>>>>>
>>>>> _______________________________________________
>>>>> MediaWiki-l mailing list
>>>>> [email protected]
>>>>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>>>>
>>>>>
>>>> _______________________________________________
>>>> MediaWiki-l mailing list
>>>> [email protected]
>>>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>>>
>>>>
>>>
>>>
>>>
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 6
>> Date: Tue, 6 Apr 2010 11:54:48 -0400
>> From: Chad <[email protected]>
>> Subject: [Mediawiki-l] Fwd: Re: ?Contents of MediaWiki-l digest...
>> To: MediaWiki announcements and site admin list
>> ? ? ? ?<[email protected]>
>> Message-ID:
>> ? ? ? ?<[email protected]>
>> Content-Type: text/plain; charset=UTF-8
>>
>> I sent a private e-mail to -owner asking for this person
>> to be put on moderation. Asking again publicly: please
>> moderate this person. This is the 4th (5th?) junk email
>> from this address.
>>
>> -Chad
>>
>> ---------- Forwarded message ----------
>> From: "Eng shoeb ahmed" <[email protected]>
>> Date: Apr 6, 2010 11:12 AM
>> Subject: Re: [Mediawiki-l] Contents of MediaWiki-l digest...
>> To: <[email protected]>
>>
>>
>>
>> _______________________________________________
>> MediaWiki-l mailing list
>> [email protected]
>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>
>>
>> ------------------------------
>>
>> Message: 7
>> Date: Tue, 6 Apr 2010 18:24:45 +0200
>> From: Benoit BRAIDA <[email protected]>
>> Subject: [Mediawiki-l] Yellow discussion pages
>> To: [email protected]
>> Message-ID: <[email protected]>
>> Content-Type: text/plain; charset=iso-8859-1
>>
>> Dear all,
>>
>> I'm looking for the extension that color in different yellow shades the 
>> discussions in Wikipedia. Could you indicate me which extension does that ?
>>
>> Cheers,
>> Beno?t
>>
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 8
>> Date: Tue, 06 Apr 2010 15:42:26 -0300
>> From: Tolliver <[email protected]>
>> Subject: Re: [Mediawiki-l] Upgrade to 1.15.2 question
>> To: [email protected], MediaWiki announcements and site admin list
>> ? ? ? ?<[email protected]>
>> Message-ID: <[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>>
>>
>> Hello,
>>
>> Thanks to everyone for all of you assistance.
>>
>> I have resolved the issue; it was just missing the devwiki.conf file, of
>> which I shouldn't have overlooked.
>>
>>
>> Thanks again!
>>
>> --------------
>> Tolliver wrote:
>>> Hello,
>>>
>>> Thanks very much, that worked!
>>>
>>> Unfortunately, when I try to access the wiki I get a permissions error;
>>> that I will determine where the permissions need to be granted again,
>>> since the upgrade.
>>>
>>>
>>> ? Forbidden
>>>
>>> You don't have permission to access / on this server.
>>>
>>> When I try ?"apachectl graceful" , I get this error:
>>> ---------------------------------------------------------------------------------
>>> apachectl: Configuration syntax error, will not run "graceful":
>>> httpd: Syntax error on line 209 of /etc/httpd/conf/httpd.conf: Syntax
>>> error on line 180 of /etc/httpd/conf.d/wiki-ssl.conf: Could not open
>>> configuration file /appl/web/devwiki/etc/devwiki.conf: No such file or
>>> directory
>>>
>>> Lines in question:
>>> line 209 in httpd.conf is: Include conf.d/*.conf
>>> Line 180 of wiki-ssl.conf is: SSLOptions +StdEnvVars
>>> /appl/web/devwiki/etc/devwiki.conf (doesn't exist)
>>>
>>>
>>>
>>> Thanks,
>>> Graham
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> Huib Laurens wrote:
>>>
>>>> Graham,
>>>>
>>>> Maybe you should comment all the extensions out of Localsettings.php
>>>> and re-add them when you are done.
>>>>
>>>> Huib
>>>>
>>>> 2010/4/5, Tolliver <[email protected]>:
>>>>
>>>>
>>>>> Hello Ryan,
>>>>>
>>>>> I get the following with that line removed from LocalSettings.php:
>>>>>
>>>>> PHP Notice: ?Undefined index: ?PHP_AUTH_USER in
>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/extensions/Auth_remoteuser.php
>>>>> on line 92
>>>>> PHP Warning: ?require_once(extensions/WhosOnline.php): failed to open
>>>>> stream: No such file or directory in
>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php on line 143
>>>>> PHP Fatal error: ?require_once(): Failed opening required
>>>>> 'extensions/WhosOnline.php'
>>>>> (include_path='/appl/web/devwiki/public_www/mediawiki-1.15:/appl/web/devwiki/public_www/mediawiki-1.15/includes:/appl/web/devwiki/public_www/mediawiki-1.15/languages:.:/usr/share/pear:/usr/share/php')
>>>>> in /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php on line 
>>>>> 143
>>>>>
>>>>> Thanks,
>>>>> Graham
>>>>> ------------------
>>>>> Lane, Ryan wrote:
>>>>>
>>>>>
>>>>>>> Here is what I get when I run, ?php update.php --aconf
>>>>>>> ../AdminSettings.php:
>>>>>>>
>>>>>>> PHP Notice: ?Undefined index: ?PHP_AUTH_USER in
>>>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/extensions/Auth_re
>>>>>>> moteuser.php
>>>>>>> on line 92
>>>>>>> PHP Warning:
>>>>>>> require_once(/appl/web/devwiki/public_www/mediawiki-1.15/exten
>>>>>>> sions/FCKeditor/FCKeditor.php):
>>>>>>> failed to open stream: No such file or directory in
>>>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php
>>>>>>> on line 138
>>>>>>> PHP Fatal error: ?require_once(): Failed opening required
>>>>>>> '/appl/web/devwiki/public_www/mediawiki-1.15/extensions/FCKedi
>>>>>>> tor/FCKeditor.php'
>>>>>>> (include_path='/appl/web/devwiki/public_www/mediawiki-1.15:/ap
>>>>>>> pl/web/devwiki/public_www/mediawiki-1.15/includes:/appl/web/de
>>>>>>> vwiki/public_www/mediawiki-1.15/languages:.:/usr/share/pear:/u
>>>>>>> sr/share/php')
>>>>>>> in
>>>>>>> /appl/web/devwiki/public_www/mediawiki-1.15/LocalSettings.php
>>>>>>> on line 138
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> - This is line 92 from AdminSettings.php:
>>>>>>> ? if ( strlen($_SERVER['PHP_AUTH_USER']) ) {
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>> This part of the update.php log is just a notice, and can be ignored.
>>>>>> PHP_AUTH_USER isn't defined because no one is authenticating. You don't
>>>>>> need
>>>>>> authentication from the commandline though.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>> - There isn't a FCKeditor.php file in the root dir; can it simply be
>>>>>>> copied from and existing wiki on the server?
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>> Comment out the FCKeditor extension from LocalSettings.php, and then try
>>>>>> again. Re-add it when you are done.
>>>>>>
>>>>>> V/r,
>>>>>>
>>>>>> Ryan Lane
>>>>>>
>>>>>> ------------------------------------------------------------------------
>>>>>>
>>>>>> _______________________________________________
>>>>>> MediaWiki-l mailing list
>>>>>> [email protected]
>>>>>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>>>>>
>>>>>>
>>>>>>
>>>>> _______________________________________________
>>>>> MediaWiki-l mailing list
>>>>> [email protected]
>>>>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>> _______________________________________________
>>> MediaWiki-l mailing list
>>> [email protected]
>>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>>
>>>
>>
>>
>>
>>
>> ------------------------------
>>
>> Message: 9
>> Date: Tue, 6 Apr 2010 16:27:12 -0400
>> From: "Alex Durlak (Standard Form)" <[email protected]>
>> Subject: [Mediawiki-l] Trouble hiding Navigation toolbar
>> To: [email protected]
>> Message-ID:
>> ? ? ? ?<[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>> Hello Everyone!
>>
>> I'm working on customizing my mediawiki site:
>>
>> http://standardform.org/wiki
>>
>> I was able to successfully hide the logo and the search boxes that are
>> on the left hand side by using the following method in the 'main.css'
>> file of my skin:
>>
>>
>> #p-logo {
>> ? ? ? ?display:none!important;
>> }
>>
>>
>> but when I try the same thing with #p-navigation nothing happens. I've
>> also tried going into MediaWiki:Sidebar and delete all the contents
>> from there and it just reverts to the default list of links.
>>
>> Any suggestions on how I can hide/remove the navigation toolbox?
>>
>> Thanks!
>> Alex
>>
>>
>>
>> ------------------------------
>>
>> _______________________________________________
>> MediaWiki-l mailing list
>> [email protected]
>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>
>>
>> End of MediaWiki-l Digest, Vol 79, Issue 7
>> ******************************************
>>
>
>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 7 Apr 2010 01:25:59 +0300
> From: Eng shoeb ahmed <[email protected]>
> Subject: Re: [Mediawiki-l] Contents of MediaWiki-l digest...
> To: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On Tue, Apr 6, 2010 at 3:00 PM,
> <[email protected]> wrote:
>> Send MediaWiki-l mailing list submissions to
>> ? ? ? [email protected]
>>
>> 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
>> ? ? ? [email protected]
>>
>> You can reach the person managing the list at
>> ? ? ? [email protected]
>>
>> When replying, please edit your Subject line so it is more specific
>> than "Re: Contents of MediaWiki-l digest..."
>>
>>
>> Today's Topics:
>>
>> ? 1. Breadcrumbs? (Deon Metelski)
>> ? 2. Re: Importing only new articles (Moore, David)
>> ? 3. Flow into the pages (Juan Jes?s Cremades Monserrat)
>>
>>
>> ----------------------------------------------------------------------
>>
>> Message: 1
>> Date: Mon, 5 Apr 2010 21:22:21 -0400
>> From: Deon Metelski <[email protected]>
>> Subject: [Mediawiki-l] Breadcrumbs?
>> To: [email protected]
>> Message-ID:
>> ? ? ? ?<[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>> Deon Metelski wrote:
>>> Hi all,
>>>
>>> I just created subpages and enabled them for the Custom NameSpace that I
>>> created. My question is does the breadcrumb bar show automatically with
>>> subpages or do I have to install the extension breadcrumb? I am not sure
>> if
>>> this is a built-in feature already on mediwiki or it is the extension.
>>>
>>> Thank you,
>>> Deon
>>
>>>As long as the namespace appears in $wgNamespacesWithSubpages, >the
>>>breadcrumbs should magically show up.
>>
>>>Sean McAfee
>>>Senior Systems Engineer
>>
>> I even went to the Monobook theme and it still does not show. I am creating
>> the subpages through Semantic Forms so i am not sure if that is causing
>> issues...my LocalSetting.php has the following which I think is correct
>>
>> $wgExtraNamespaces[200] = "Lesson";
>> $wgExtraNamespaces[201] = "Lesson_talk";
>> $wgExtraNamespaces[202] = "ProjectLearning";
>> $wgExtraNamespaces[203] = "ProjectLearning_talk";
>>
>> $wgContentNamespaces[] = 200;
>> $wgContentNamespaces[] = 202;
>>
>> define("NS_PROJECTLEARNING", 200);
>> define("NS_LESSON_TALK", 201);
>> define("NS_PROJECTLEARNING_TALK", 202);
>>
>>
>> $wgNamespacesWithSubpages [NS_PROJECTLEARNING] = true;
>> $wgNamespacesWithSubpages [NS_PROJECTLEARNING_TALK] = true;
>> $wgNamespacesWithSubpages [NS_LESSON_TALK] = true;
>>
>> If anyone can confirm these settings would work o generate breadcrumbs I can
>> look at the Semantic Form extension/templates
>> Thanks,
>> Deon
>>
>>
>> ------------------------------
>>
>> Message: 2
>> Date: Tue, 6 Apr 2010 00:10:59 -0400
>> From: "Moore, David" <[email protected]>
>> Subject: Re: [Mediawiki-l] Importing only new articles
>> To: MediaWiki announcements and site admin list
>> ? ? ? ?<[email protected]>
>> Message-ID:
>> ? ? ? ?<[email protected]>
>> Content-Type: text/plain; charset="us-ascii"
>>
>> If you want to avoid the programming, export the 1,000 existing articles 
>> from the new wiki. ?Import all of the 10,000 articles you wish to transfer. 
>> ?Then re-import the 1,000 existing articles.
>>
>> David Moore
>> Virginia Tech Institute for Policy and Governance
>> 205 W. Roanoke Street (0489)
>> Blacksburg, VA 24061-0489
>> 540-230-6914 (cell)
>> 540-231-6775 (office) NEW
>> 540-231-6722 (fax)
>> [email protected]
>> www.ipg.vt.edu
>>
>>
>> -----Original Message-----
>> From: [email protected] 
>> [mailto:[email protected]] On Behalf Of Patrick 
>> Flaherty
>> Sent: Monday, April 05, 2010 5:32 PM
>> To: [email protected]
>> Subject: [Mediawiki-l] Importing only new articles
>>
>> Hi all,
>> I'm looking for a way to import about 10,000 articles into a wiki. The only
>> catch is about 1000 of these articles have already been created. Ideally i
>> would like to import only the articles that don't exist and not have any
>> article get overwritten by the import. Is there a good extension/tool to
>> prevent an import from overwriting pages that already exist? I have a
>> feeling that the answer is no and I will have to write a code that would
>> query the api and disregard found articles. Has anyone done this before?
>>
>> Thanks so much,
>> Patrick
>> _______________________________________________
>> MediaWiki-l mailing list
>> [email protected]
>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>
>>
>>
>> ------------------------------
>>
>> Message: 3
>> Date: Tue, 6 Apr 2010 09:26:19 +0200
>> From: Juan Jes?s Cremades Monserrat <[email protected]>
>> Subject: [Mediawiki-l] Flow into the pages
>> To: [email protected]
>> Message-ID:
>> ? ? ? ?<[email protected]>
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>> Hi,
>>
>> I'm searching a meaning to give a little flow to the articles of my wiki.
>> For example, if a section value into a template is void:
>>
>> ...
>> ==Title==
>> {{{title}}}
>> ...
>> ---------------------------------------
>> {{
>> ...
>> | title =
>> ...
>> }}
>>
>> The "Title" won't be printing. I've found the
>> "Extension:Winter/Documentation" but, is this the only? Thnaks
>>
>>
>> ------------------------------
>>
>> _______________________________________________
>> MediaWiki-l mailing list
>> [email protected]
>> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>>
>>
>> End of MediaWiki-l Digest, Vol 79, Issue 6
>> ******************************************
>>
>
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 07 Apr 2010 11:03:09 +1000
> From: Tim Starling <[email protected]>
> Subject: [Mediawiki-l] MediaWiki security update: 1.15.3 and
>        1.16.0beta2
> To: [email protected], [email protected],
>        [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=UTF-8
>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> This is a security and bugfix release of MediaWiki 1.15.3 and MediaWiki
> 1.16.0beta2.
>
> MediaWiki was found to be vulnerable to login CSRF. An attacker who
> controls a user account on the target wiki can force the victim to log
> in as the attacker, via a script on an external website. If the wiki is
> configured to allow user scripts, say with "$wgAllowUserJs = true" in
> LocalSettings.php, then the attacker can proceed to mount a
> phishing-style attack against the victim to obtain their password.
>
> Even without user scripting, this attack is a potential nuisance, and so
> all public wikis should be upgraded if possible.
>
> Our fix includes a breaking change to the API login action. Any clients
> using it will need to be updated. We apologise for making such a
> disruptive change in a minor release, but we feel that security is
> paramount.
>
> For more details see https://bugzilla.wikimedia.org/show_bug.cgi?id=23076
>
> **********************************************************************
>  1.15.3
> **********************************************************************
>
> Full release notes:
> http://svn.wikimedia.org/svnroot/mediawiki/tags/REL1_15_3/phase3/RELEASE-NOTES
>
> Download:
> http://download.wikimedia.org/mediawiki/1.15/mediawiki-1.15.3.tar.gz
>
> Patch to previous version (1.15.2), without interface text:
> http://download.wikimedia.org/mediawiki/1.15/mediawiki-1.15.3.patch.gz
> Interface text changes:
> http://download.wikimedia.org/mediawiki/1.15/mediawiki-i18n-1.15.3.patch.gz
>
> GPG signatures:
> http://download.wikimedia.org/mediawiki/1.15/mediawiki-1.15.3.tar.gz.sig
> http://download.wikimedia.org/mediawiki/1.15/mediawiki-1.15.3.patch.gz.sig
> http://download.wikimedia.org/mediawiki/1.15/mediawiki-i18n-1.15.3.patch.gz.sig
>
> Public keys:
> https://secure.wikimedia.org/keys.html
>
> **********************************************************************
>  1.16.0beta2
> **********************************************************************
> Full release notes:
> http://svn.wikimedia.org/svnroot/mediawiki/tags/REL1_16_0beta2/phase3/RELEASE-NOTES
>
> Download:
> http://download.wikimedia.org/mediawiki/1.16/mediawiki-1.16.0beta2.tar.gz
>
> Patch to previous version (1.16.0beta1), without interface text:
> http://download.wikimedia.org/mediawiki/1.16/mediawiki-1.16.0beta2.patch.gz
> Interface text changes:
> http://download.wikimedia.org/mediawiki/1.16/mediawiki-i18n-1.16.0beta2.patch.gz
>
> GPG signatures:
> http://download.wikimedia.org/mediawiki/1.16/mediawiki-1.16.0beta2.tar.gz.sig
> http://download.wikimedia.org/mediawiki/1.16/mediawiki-1.16.0beta2.patch.gz.sig
> http://download.wikimedia.org/mediawiki/1.16/mediawiki-i18n-1.16.0beta2.patch.gz.sig
>
> Public keys:
> https://secure.wikimedia.org/keys.html
>
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.9 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
>
> iEYEARECAAYFAku72c0ACgkQgkA+Wfn4zXmmywCgg93Qn9fFiBZmMjfFfRXtQAAY
> /2kAn3mnedysUErnHt59Va2rGHuSJUzf
> =Ytqc
> -----END PGP SIGNATURE-----
>
>
>
>
> ------------------------------
>
> _______________________________________________
> MediaWiki-l mailing list
> [email protected]
> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>
>
> End of MediaWiki-l Digest, Vol 79, Issue 8
> ******************************************
>

_______________________________________________
MediaWiki-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to