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
> ******************************************
>

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

Reply via email to