Hi,
I've a problem - I'd like to put some info on most of the pages in my wiki (including the ones that are being edited). I know that it's possible with mediawiki:sitenotice - to put some info on all the pages. However I need to exclude the main page (have it clearer) and some other pages that don't require this info. Is there a way to achieve it?
Thx in advance for answer
Rgds, Aretai
Maybe this helps: http://www.mediawiki.org/wiki/Extension:PageNotice (still in beta status, though)
On 5/28/07, aretai aretai aretaiuc@gmail.com wrote:
Hi,
I've a problem - I'd like to put some info on most of the pages in my wiki (including the ones that are being edited). I know that it's possible with mediawiki:sitenotice - to put some info on all the pages. However I need to exclude the main page (have it clearer) and some other pages that don't require this info. Is there a way to achieve it?
Thx in advance for answer
Rgds, Aretai _______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
thx will try that
On 5/28/07, Denise Signer denise.signer@gmail.com wrote:
Maybe this helps: http://www.mediawiki.org/wiki/Extension:PageNotice (still in beta status, though)
On 5/28/07, aretai aretai aretaiuc@gmail.com wrote:
Hi,
I've a problem - I'd like to put some info on most of the pages in my
wiki
(including the ones that are being edited). I know that it's possible
with
mediawiki:sitenotice - to put some info on all the pages. However I need to exclude the main page (have it clearer) and some other pages that don't require this info. Is there a way to achieve it?
Thx in advance for answer
Rgds, Aretai _______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Nah it's not working the way I'd like. Any other suggestions?
Regards, Aretai
On 5/29/07, aretai aretai aretaiuc@gmail.com wrote:
thx will try that
On 5/28/07, Denise Signer denise.signer@gmail.com wrote:
Maybe this helps: http://www.mediawiki.org/wiki/Extension:PageNotice (still in beta status, though)
On 5/28/07, aretai aretai aretaiuc@gmail.com wrote:
Hi,
I've a problem - I'd like to put some info on most of the pages in my
wiki
(including the ones that are being edited). I know that it's possible
with
mediawiki:sitenotice - to put some info on all the pages. However I
need
to exclude the main page (have it clearer) and some other pages that
don't
require this info. Is there a way to achieve it?
Thx in advance for answer
Rgds, Aretai _______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Hi
We are presenting numerous pieces of Mediawiki information on the front page of our Drupal/Mediawiki community through SQL/PHP blocks. One of them allows you to see the number of MW pages that you are watching that have changed since your last log in.
The SQL works fine BUT I notice that for each page I watch it creates two database entries, one in namespace 0 and the other in namespace 1?
Is this something that is configurable? I am not sure why both are there?
Thanks, Paul
Name space 1 means talk page.
On 5/29/07, Paul Coghlan pcoghlan@usa.net wrote:
Hi
We are presenting numerous pieces of Mediawiki information on the front page of our Drupal/Mediawiki community through SQL/PHP blocks. One of them allows you to see the number of MW pages that you are watching that have changed since your last log in.
The SQL works fine BUT I notice that for each page I watch it creates two database entries, one in namespace 0 and the other in namespace 1?
Is this something that is configurable? I am not sure why both are there?
Thanks, Paul
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Thanks, so in effect even the total page count is 2 (both the document and talk page) I can simply divide by 2 to get my final count.
On 5/29/07 9:17 AM, "Snowolf" mtazio@gmail.com wrote:
Name space 1 means talk page.
On 5/29/07, Paul Coghlan pcoghlan@usa.net wrote:
Hi
We are presenting numerous pieces of Mediawiki information on the front page of our Drupal/Mediawiki community through SQL/PHP blocks. One of them allows you to see the number of MW pages that you are watching that have changed since your last log in.
The SQL works fine BUT I notice that for each page I watch it creates two database entries, one in namespace 0 and the other in namespace 1?
Is this something that is configurable? I am not sure why both are there?
Thanks, Paul
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org http://lists.wikimedia.org/mailman/listinfo/mediawiki-l
aretai aretai wrote :
I've a problem - I'd like to put some info on most of the pages in my
wiki
(including the ones that are being edited). I know that it's possible
with
mediawiki:sitenotice - to put some info on all the pages. However I
need
to exclude the main page (have it clearer) and some other pages that
don't
require this info. Is there a way to achieve it?
what about using some template with #if: ? (I don't know the syntax of it but it could be something like #if: {{PAGENAME}} is not {{MAINPAGENAME}} do something)
Alexis Moinet a écrit :
aretai aretai wrote :
I've a problem - I'd like to put some info on most of the pages in my
wiki
(including the ones that are being edited). I know that it's possible
with
mediawiki:sitenotice - to put some info on all the pages. However I
need
to exclude the main page (have it clearer) and some other pages that
don't
require this info. Is there a way to achieve it?
what about using some template with #if: ? (I don't know the syntax of it but it could be something like #if: {{PAGENAME}} is not {{MAINPAGENAME}} do something)
{{ #ifeq: {{PAGENAME}} | Main Page | <todo if equal> | <to do if not equal> }}
Does anyone know about a variable for Main Page (something like {{MAINPAGE}}) ?
Alexis Moinet wrote:
{{ #ifeq: {{PAGENAME}} | Main Page | <todo if equal> | <to do if not equal> }}
Does anyone know about a variable for Main Page (something like {{MAINPAGE}}) ?
There is [[MediaWiki:Mainpage]] (it is used in the default [[MediaWiki:Sidebar]] for example), the contents of which can be inserted into a page or into your #ifeq parameter with {{MediaWiki:Mainpage}}. So:
{{ #ifeq: {{MediaWiki:Mainpage}} | Main Page | <todo if equal> | <to do if not equal> }}
I think... forgive me if I've mixed something up...
mediawiki-l@lists.wikimedia.org