Re: [Mediawiki-l] UserToggles in 1.16 - no checkboxes

2010-08-10 Thread Andrew Caul
> Daniel Barrett wrote: > > In 1.16, custom preferences added by third-party extensions aren't getting > displayed on our wiki. They all use the "UserToggles" hook and a function > like this: > > function wfToggle($extraToggles) { > global $wgMessageCache; > $extraToggles[] = 'foo'; > $w

Re: [Mediawiki-l] Creating a new page returns a browser error

2010-08-10 Thread Michael Kingery (HL7)
It's not a request timeout, it's instant. Where should I look for the PHP logs? Mike Kingery Director of Technical Services Health Level Seven International +1 (919) 636-4032 -Original Message- From: mediawiki-l-boun...@lists.wikimedia.org [mailto:mediawiki-l-boun...@lists.wikimedia.org]

Re: [Mediawiki-l] Creating a new page returns a browser error

2010-08-10 Thread Platonides
Michael Kingery (HL7) wrote: > I have a wiki set up where if I attempt to create a new page, I get a > browser error. In IE it gives the typical "Internet Explorer cannot > display the webpage", and Chrome says "This webpage is not available". > But it's fine if I view an existing page. I also get

Re: [Mediawiki-l] Mediawiki Pdf Export Extension

2010-08-10 Thread Giuseppe Briotti
. . > Message: 5 > > Hello, > > I'm not sure whether *Htmldoc* is installed on the shared server i'm having > as i don't have root access. I installed Extension:Pdf Export by using the > codes in the link given below > > http://www.mediawiki.org/w/index.php?title=Extension:Pdf_Export/Source_Code&o

[Mediawiki-l] Creating a new page returns a browser error

2010-08-10 Thread Michael Kingery (HL7)
I have a wiki set up where if I attempt to create a new page, I get a browser error. In IE it gives the typical "Internet Explorer cannot display the webpage", and Chrome says "This webpage is not available". But it's fine if I view an existing page. I also get the same error if I click on the Disc

[Mediawiki-l] UserToggles in 1.16 - no checkboxes

2010-08-10 Thread Daniel Barrett
In 1.16, custom preferences added by third-party extensions aren't getting displayed on our wiki. They all use the "UserToggles" hook and a function like this: function wfToggle($extraToggles) { global $wgMessageCache; $extraToggles[] = 'foo'; $wgMessageCache->addMessage('tog-foo', 'my che

Re: [Mediawiki-l] Listing pages that use a template

2010-08-10 Thread Anne Wilson
On Tuesday 10 August 2010 14:20:50 nevio carlos de alarcão wrote: > > I had one of those middle-of-the-night revelations :-) It was a syntax > > problem - I had added the category statement in the wrong place. It now > > > works > > perfectly. > > > Share your revelations, please Sorry - th

Re: [Mediawiki-l] Archiving/Mass moving the contents of a wiki.

2010-08-10 Thread Daniel Barrett
Instead of doing database updates, use maintenance/moveBatch.php. DanB ___ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Re: [Mediawiki-l] Archiving/Mass moving the contents of a wiki.

2010-08-10 Thread Platonides
Digimer wrote: > Is it possible to (easily) move all existing pages on a wiki to a sub > "directory"? That is, move pages line "foo", "bar" and "baz" to > "archive/foo", "archive/bar" and "archive/baz"? > > Thanks! Yes, you could easily do that with a query on the page table. But instead of using

Re: [Mediawiki-l] Ending the "1 request per browser" limit? (technical)

2010-08-10 Thread Daniel Barrett
Tim Starling wrote: >PHP's file-based session storage locks the session file while the >session is open. A concurrent attempt to open the same session by >MediaWiki will block until the first request is complete. Tim, thanks for your eminently clear explanation of the PHP session behavior. We will

Re: [Mediawiki-l] Listing pages that use a template

2010-08-10 Thread nevio carlos de alarcão
> > > I had one of those middle-of-the-night revelations :-) It was a syntax problem - I had added the category statement in the wrong place. It now > works perfectly. Share your revelations, please 2010/8/10 Anne Wilson > On Monday 09 August 2010 22:47:44 nevio carlos de alarcão wrote: >

Re: [Mediawiki-l] css background-image

2010-08-10 Thread Scheid, Bernhard
This way it works, thx. B. -Ursprüngliche Nachricht- Von: mediawiki-l-boun...@lists.wikimedia.org [mailto:mediawiki-l-boun...@lists.wikimedia.org] Im Auftrag von Platonides Gesendet: Dienstag, 10. August 2010 00:15 An: mediawiki-l@lists.wikimedia.org Betreff: Re: [Mediawiki-l] css backgr

Re: [Mediawiki-l] Listing pages that use a template

2010-08-10 Thread Anne Wilson
On Monday 09 August 2010 22:47:44 nevio carlos de alarcão wrote: > > One trick I use is to > > include a Category definition on the template > > > page. Then you can easily > > get the pages using the template by querying > > > the category instead. > > I've > > just been experimenting with