你们好:我的心情和大家一样,很急切、服务社会、网络轨道等等 ,因为网络隐私把你和我和世界隔绝!
2013年恢复正常,久违了,谢谢大家!
--------------
Send MediaWiki-l mailing list submissions to mediawiki-l@lists.wikimedia.org
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 mediawiki-l-request@lists.wikimedia.org
You can reach the person managing the list at mediawiki-l-owner@lists.wikimedia.org
When replying, please edit your Subject line so it is more specific than "Re: Contents of MediaWiki-l digest..."
Today's Topics:
- Re: Sidebar cache (Tom Hutchison)
- Re: Sidebar cache (Mlpearc)
- Re: Sidebar cache (Tom)
- Re: Gerrit 2.6 - coming to a server near you (Chad)
- Re: Path Problems Installing SemanticMediaWiki (Steve Stevenson)
Message: 1 Date: Mon, 4 Feb 2013 12:44:23 -0500 From: "Tom Hutchison" tom@hutch4.us To: "'MediaWiki announcements and site admin list'" mediawiki-l@lists.wikimedia.org Subject: Re: [MediaWiki-l] Sidebar cache Message-ID: 09f601ce02ff$45343b10$cf9cb130$@hutch4.us
Yep, Collection is forcing the printable to its section:
// Move the 'printable' link into our section for consistency if ( $action == 'view' || $action == 'purge' ) { global $wgOut; if ( !$wgOut->isPrintable() ) { $attribs = array( 'href' => $sk->getTitle()->getLocalUrl( $wgRequest->appendQueryValue( 'printable', 'yes', true ) ), 'title' => $sk->titleAttrib( 't-print', 'withaccess' ), 'accesskey' => $sk->accesskey( 't-print' ), ); if ( $attribs['title'] === false ) { unset( $attribs['title'] ); } if ( $attribs['accesskey'] === false ) { unset( $attribs['accesskey'] ); } $out .= Xml::tags( 'li', array( 'id' => 't-print' ), Xml::element( 'a', $attribs, wfMsg( 'printableversion' ) ) ); } }
Tom
Message: 2 Date: Mon, 4 Feb 2013 10:16:59 -0800 From: Mlpearc mlpearc@everythingfoodanddrink.org To: MediaWiki announcements and site admin list mediawiki-l@lists.wikimedia.org Subject: Re: [MediaWiki-l] Sidebar cache Message-ID: CAGhpzwPsMJZhTDNP8xd2wJBchDvZBg+bNtVs0zVDV4y5a2++dw@mail.gmail.com Content-Type: text/plain; charset=UTF-8
It is Extension:Collection that displays the "Print" link in the sidebar. Another strange reaction from that extension is for some un-known reason when the extension is enabled, it adds the page name of the selected page to the category box.
Mlpearc
On Mon, Feb 4, 2013 at 9:44 AM, Tom Hutchison tom@hutch4.us wrote:
Yep, Collection is forcing the printable to its section:
// Move the 'printable' link into our section for consistency if ( $action == 'view' || $action == 'purge' ) { global $wgOut; if ( !$wgOut->isPrintable() ) { $attribs = array( 'href' => $sk->getTitle()->getLocalUrl( $wgRequest->appendQueryValue( 'printable', 'yes', true ) ), 'title' => $sk->titleAttrib( 't-print', 'withaccess' ), 'accesskey' => $sk->accesskey( 't-print' ), ); if ( $attribs['title'] === false ) { unset( $attribs['title'] ); } if ( $attribs['accesskey'] === false ) { unset( $attribs['accesskey'] ); } $out .= Xml::tags( 'li', array( 'id' => 't-print' ), Xml::element( 'a', $attribs, wfMsg( 'printableversion' ) ) ); } }
Tom
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
--
Mlpearc* Founder Everything Food & Drink.org everythingfoodanddrink.orghttp://www.everythingfoodanddrink.org/w/index.php/Main_Page Phone: 760-718-1290
Message: 3 Date: Mon, 4 Feb 2013 14:31:50 -0500 From: Tom tom@hutch4.us To: "mlpearc@everythingfoodanddrink.org" mlpearc@everythingfoodanddrink.org, MediaWiki announcements and site admin list mediawiki-l@lists.wikimedia.org Subject: Re: [MediaWiki-l] Sidebar cache Message-ID: 8D7464DB-6E3A-4D1C-B045-7C355607444E@hutch4.us Content-Type: text/plain; charset=us-ascii
I never noticed that behavior.
Tom
On Feb 4, 2013, at 1:16 PM, Mlpearc mlpearc@everythingfoodanddrink.org wrote:
It is Extension:Collection that displays the "Print" link in the sidebar. Another strange reaction from that extension is for some un-known reason when the extension is enabled, it adds the page name of the selected page to the category box.
Mlpearc
On Mon, Feb 4, 2013 at 9:44 AM, Tom Hutchison tom@hutch4.us wrote:
Yep, Collection is forcing the printable to its section:
// Move the 'printable' link into our section for consistency if ( $action == 'view' || $action == 'purge' ) { global $wgOut; if ( !$wgOut->isPrintable() ) { $attribs = array( 'href' => $sk->getTitle()->getLocalUrl( $wgRequest->appendQueryValue( 'printable', 'yes', true ) ), 'title' => $sk->titleAttrib( 't-print', 'withaccess' ), 'accesskey' => $sk->accesskey( 't-print' ), ); if ( $attribs['title'] === false ) { unset( $attribs['title'] ); } if ( $attribs['accesskey'] === false ) { unset( $attribs['accesskey'] ); } $out .= Xml::tags( 'li', array( 'id' => 't-print' ), Xml::element( 'a', $attribs, wfMsg( 'printableversion' ) ) ); } }
Tom
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
--
Mlpearc* Founder Everything Food & Drink.org everythingfoodanddrink.orghttp://www.everythingfoodanddrink.org/w/index.php/Main_Page Phone: 760-718-1290 _______________________________________________ MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
Message: 4 Date: Mon, 4 Feb 2013 17:43:29 -0500 From: Chad innocentkiller@gmail.com To: Wikimedia developers wikitech-l@lists.wikimedia.org, MediaWiki announcements and site admin list mediawiki-l@lists.wikimedia.org Subject: Re: [MediaWiki-l] Gerrit 2.6 - coming to a server near you Message-ID: CADn73rMLynmA5qDMTgEE2rFyYp0mL-qaLDRJS3qygFh+r-H3rA@mail.gmail.com Content-Type: text/plain; charset=UTF-8
On Mon, Feb 4, 2013 at 6:44 AM, Chad innocentkiller@gmail.com wrote:
Hi,
After much delay, Gerrit 2.6 will be coming to our servers. This release brings a *lot* of really cool features and fixes, but I'd like to outline a couple of the major ones:
- A stable, documented RESTful api
- Plugin support:
** We'll be replacing Gitweb with Gitblit once the initial dust of the upgrade settles ** We've got a plugin to let us delete projects ** We're working on plugins for renaming projects, as well as providing some Bugzilla integration
- IE9 & IE10 are now supported
- The code formatter got some updates, which should solve some of
the ArrayIndexOutOfBounds errors you saw in some diffs.
- Ability to leave comments on a whole file (instead of just a line in a
file)
- Search suggestions
- More unicorns!
We're planning to do this on 1:00-2:00UTC on February 12th (that's 17:00-18:00 PST on February 11th) -- that's one week from today.
I can't believe I forgot to mention two of my favorite new features:
- Editing topics and commit messages directly from the UI :)
-Chad
Message: 5 Date: Mon, 4 Feb 2013 19:41:18 -0500 From: Steve Stevenson steve@clemson.edu To: MediaWiki announcements and site admin list mediawiki-l@lists.wikimedia.org Subject: Re: [MediaWiki-l] Path Problems Installing SemanticMediaWiki Message-ID: CAKoJ0=mQ_+rxuH9AXWwki-0w4T+BznaT+jT4KuyrQba6rMsTsg@mail.gmail.com Content-Type: text/plain; charset=ISO-8859-1
Thanks for the jog of the memory ... SemanticBundle wasn't installed properly. All good now.
On Mon, Feb 4, 2013 at 12:04 PM, Platonides Platonides@gmail.com wrote:
Does the user under which apache is running have access to read
/opt/local/apache2/htdocs/wiki-1.20.2/extensions/SemanticMediaWiki/SemanticMediaWiki.php ?
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
-- D. E. (Steve) Stevenson (Almost emeritus) Associate Professor Clemson University steve at clemson dot edu
"Those that know, do. Those that understand, teach," Aristotle.
MediaWiki-l mailing list MediaWiki-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
End of MediaWiki-l Digest, Vol 113, Issue 6
mediawiki-l@lists.wikimedia.org