[Wikitech-l] MWHttpRequest not work for mwv1.22

2013-12-08 Thread Sen
i glad the new v1.22 is come out,but after upgrade,my code is not function any more,what happen in here $authUrl = datamarket.accesscontrol.windows.net/v2/OAuth2-13/ ; $options = array(); $options['method'] = 'POST'; $options['timeout'] =

[Wikitech-l] Fwd: MWHttpRequest not work for mwv1.22

2013-12-08 Thread Sen
i glad the new v1.22 is come out,but after upgrade,my code is not function any more,what happen in here $authUrl = datamarket.accesscontrol.windows.net/v2/OAuth2-13/ ; $options = array(); $options['method'] = 'POST'; $options['timeout'] =

Re: [Wikitech-l] Preferences not being saved on MW 1.22 when using shared databaes

2013-12-08 Thread Jack Phoenix
Hi again, Seems that we've solved this puzzle -- at least mostly. The problematic piece of code was the Gadgets extension. Disabling it allowed to save preferences normally. Why so, this is beyond me...the version we use(d) was the version that was bundled with the 1.22 tarball release. It should

Re: [Wikitech-l] Known issues in 1.22.0

2013-12-08 Thread Merlijn van Deen
On 7 December 2013 20:24, Mark A. Hershberger m...@everybody.org wrote: * There is a problem with Postgres support. bugzilla:46594 https://bugzilla.wikimedia.org/show_bug.cgi?id=46594, bugzilla:47055 https://bugzilla.wikimedia.org/show_bug.cgi?id=47055, bugilla:49523

Re: [Wikitech-l] MediaWiki to Latex Converter

2013-12-08 Thread dirk.hunniger
Hi Scott, I saw you started to work on an LaTeX Export yourself. I needed more than 3 year for mine. So I want you to be aware that it might take you a long time to come up with something that really works. I also want to offer you to share all my experience with you if you decide to do it

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Tyler Romeo
On Sat, Dec 7, 2013 at 8:09 AM, Jeroen De Dauw jeroended...@gmail.comwrote: Present situation: * By default nothing is installed * Users can choose whatever they want to add, _including_ PHPUnit This is forgetting the point that is the topic of this thread: you cannot currently add

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Bryan Davis
On Sun, Dec 8, 2013 at 2:20 PM, Tyler Romeo tylerro...@gmail.com wrote: On Sat, Dec 7, 2013 at 8:09 AM, Jeroen De Dauw jeroended...@gmail.comwrote: Present situation: * By default nothing is installed * Users can choose whatever they want to add, _including_ PHPUnit This is forgetting the

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Jeroen De Dauw
Hey, Finding a way to separate MW the library from MW the application may be a solution to this conflict. I don't think this would be a trivial project, but it doesn't seem impossible either. That'd be fanatic if it happened for many other reasons as well. For all intents and purposes it is a

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Ryan Lane
On Mon, Dec 9, 2013 at 12:06 AM, Jeroen De Dauw jeroended...@gmail.comwrote: Finding a way to separate MW the library from MW the application may be a solution to this conflict. I don't think this would be a trivial project, but it doesn't seem impossible either. That'd be fanatic if it

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Tyler Romeo
On Sun, Dec 8, 2013 at 6:06 PM, Jeroen De Dauw jeroended...@gmail.comwrote: If the core community actually gets to a point where potential usage of third party libraries via Composer is actually taken seriously, this will indeed need to be tackled. I do not think we are quite there yet. For

Re: [Wikitech-l] Adding a html builder to Lua

2013-12-08 Thread hoo
Hey TheDJ, I'm one step ahead of you ;) I've already asked the original authors and got a positive reply from them (see https://github.com/wikimedia/mediawiki-extensions-Capiunto/blob/master/resources/htmlBuilder.lua ) Cheers, Marius On Tue, 2013-12-03 at 11:49 +0100, Derk-Jan Hartman wrote:

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Daniel Friesen
On 2013-12-08 3:06 PM, Jeroen De Dauw wrote: The side effect is that it removed the ability to use Composer to manage external components used by MW the library which is Tyler's proposed use case [0]. If the core community actually gets to a point where potential usage of third party

[Wikitech-l] Bugzilla Weekly Report

2013-12-08 Thread reporter
MediaWiki Bugzilla Report for December 02, 2013 - December 09, 2013 Status changes this week Reports changed/set to UNCONFIRMED: 8 Reports changed/set to NEW: 31 Reports changed/set to ASSIGNED : 49

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Rob Lanphier
On Sun, Dec 8, 2013 at 3:06 PM, Jeroen De Dauw jeroended...@gmail.comwrote: On Sun, Dec 8, 2013 at 2:42 PM, Bryan Davis bd...@wikimedia.org wrote: Finding a way to separate MW the library from MW the application may be a solution to this conflict. I don't think this would be a trivial

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Nik Everett
Sent from my iPhone On Dec 8, 2013, at 10:22 PM, Rob Lanphier ro...@wikimedia.org wrote: On Sun, Dec 8, 2013 at 3:06 PM, Jeroen De Dauw jeroended...@gmail.comwrote: On Sun, Dec 8, 2013 at 2:42 PM, Bryan Davis bd...@wikimedia.org wrote: Finding a way to separate MW the library from MW

Re: [Wikitech-l] Making MediaWiki extensions installable via Composer

2013-12-08 Thread Tyler Romeo
On Sun, Dec 8, 2013 at 10:43 PM, Nik Everett never...@wikimedia.org wrote: Not to be a downer but isn't this one of the things x windows did that upset people? I'm not arguing that this approach is doomed, just that care must be taken. Honestly I don't know the situation well enough to have a

Re: [Wikitech-l] Module storage is coming

2013-12-08 Thread Tyler Romeo
I'm sure this has already been taken into consideration, but keep in mind that code that is executed using eval() in Javascript is *not* optimized by the V8 compiler like normal script resources are. Considering our scripts do not perform much intensive work AFAIK, it should not be an issue, but