Re: [MediaWiki-l] Analog to $wgExtNewFields for dropping fields?

2014-11-21 Thread Daniel Barrett
On Thu Nov 20 2014 at 8:49:14 AM Daniel Barrett d...@cimpress.com wrote: $wgExtNewFieldshttp://www.mediawiki.org/wiki/Manual:$wgExtNewIndexes is really handy for adding columns to database tables. Is there an equivalent configuration setting for *dropping* columns from tables? (Likewise for

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
I have Mediawiki 1.23.6 Semantic Mediawiki 2.0 I've installed the chameleon skin as well. -Original Message- From: mediawiki-l-boun...@lists.wikimedia.org [mailto:mediawiki-l-boun...@lists.wikimedia.org] On Behalf Of chris tharp Sent: Thursday, November 20, 2014 11:37 AM To:

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
Thanks I will give that a try -Original Message- From: mediawiki-l-boun...@lists.wikimedia.org [mailto:mediawiki-l-boun...@lists.wikimedia.org] On Behalf Of Frank Baxmann Sent: Thursday, November 20, 2014 12:31 PM To: mediawiki-l@lists.wikimedia.org Subject: Re: [MediaWiki-l] Tooltips

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
I get an error Warning: Parameter 3 to renderToolTip() expected to be a reference, value given in /srv/www/htdocs/mw-2/includes/parser/Parser.php on line 4019 -Original Message- From: mediawiki-l-boun...@lists.wikimedia.org [mailto:mediawiki-l-boun...@lists.wikimedia.org] On Behalf Of

Re: [MediaWiki-l] Removing links

2014-11-21 Thread Legault, Phillip [ITSUS]
This is skin specific What is the skin that is being used? I was able to remove them from the chameleon skin, by removing them from a custom style xml. And using that style.xml -Original Message- From: mediawiki-l-boun...@lists.wikimedia.org

Re: [MediaWiki-l] PHP 5

2014-11-21 Thread Legault, Phillip [ITSUS]
Thanks for your reply I that was it Sent from my iPhone On Nov 14, 2014, at 12:55 PM, Max Semenik maxsem.w...@gmail.com wrote: It doesn't handle .php5 extension anymore? You should just use .php then. On Fri, Nov 14, 2014 at 4:12 AM, Legault, Phillip [ITSUS] plega...@its.jnj.com wrote:

Re: [MediaWiki-l] Removing links

2014-11-21 Thread Stephan Gambke
It is hardcoded in SMW. To remove all footer icons you could add the following to your LocalSettings.php: $wgHooks[ 'BeforePageDisplay' ][] = function( $out, $sk) { $GLOBALS[ 'wgFooterIcons' ] = array(); }; Should work with any skin. On 20 November 2014 19:26, chris tharp

Re: [MediaWiki-l] chameleon skin

2014-11-21 Thread Stephan Gambke
The bullets were replaced by :before content resembling bullets. Probably not such a great idea. I'll think of a fix. On 21 November 2014 21:28, Legault, Phillip [ITSUS] plega...@its.jnj.com wrote: I'm using the chameleon skin and I see that in the drilldown choose category it is showing

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Frank Baxmann
can you pls send me the tag as you used it? thx On 21.11.2014 22:16, Legault, Phillip [ITSUS] wrote: I get an error Warning: Parameter 3 to renderToolTip() expected to be a reference, value given in /srv/www/htdocs/mw-2/includes/parser/Parser.php on line 4019 -Original Message-

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
I used the example tag on the site and tried the template the same as the example template. It would not let me save the template. I will send you that error when i get back Sent from my iPhone On Nov 21, 2014, at 6:04 PM, Frank Baxmann serv...@frankbaxmann.de wrote: can you pls send me

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Frank Baxmann
so you did not use the updated version on discussion page? On 22.11.2014 00:47, Legault, Phillip [ITSUS] wrote: I used the example tag on the site and tried the template the same as the example template. It would not let me save the template. I will send you that error when i get back Sent

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
Ok my bad Checking now Sent from my iPhone On Nov 21, 2014, at 6:50 PM, Frank Baxmann serv...@frankbaxmann.de wrote: so you did not use the updated version on discussion page? On 22.11.2014 00:47, Legault, Phillip [ITSUS] wrote: I used the example tag on the site and tried the template

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
Testing it and I see that the tooltip appears to be working but I have can't see the text or background color -Original Message- From: mediawiki-l-boun...@lists.wikimedia.org [mailto:mediawiki-l-boun...@lists.wikimedia.org] On Behalf Of Legault, Phillip [ITSUS] Sent: Friday, November

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
OK I'm using the skin chameleon and had to add the css to the fixes.less file and now it is working. -Original Message- From: mediawiki-l-boun...@lists.wikimedia.org [mailto:mediawiki-l-boun...@lists.wikimedia.org] On Behalf Of Legault, Phillip [ITSUS] Sent: Friday, November 21, 2014

Re: [MediaWiki-l] Tooltips

2014-11-21 Thread Legault, Phillip [ITSUS]
Very nice Thank you Sent from my iPhone On Nov 21, 2014, at 9:18 PM, Legault, Phillip [ITSUS] plega...@its.jnj.com wrote: OK I'm using the skin chameleon and had to add the css to the fixes.less file and now it is working. -Original Message- From:

[MediaWiki-l] Can you override Less variables through MediaWiki:Vector.css?

2014-11-21 Thread Adam Nielsen
Hi all, I'd like to change some colours in the Vector skin, but if I do this in CSS I will have to put hundreds of lines of code into MediaWiki:Vector.css. It looks like the colours I want to change are defined as Less variables, so if I could just override those then it would be only a handful

Re: [MediaWiki-l] Can you override Less variables through MediaWiki:Vector.css?

2014-11-21 Thread Jonathan Aquilina
You would need to compile the LESS css. http://lesscss.org/ On Sat, Nov 22, 2014 at 4:51 AM, Adam Nielsen a.niel...@shikadi.net wrote: Hi all, I'd like to change some colours in the Vector skin, but if I do this in CSS I will have to put hundreds of lines of code into MediaWiki:Vector.css.