Re: [Wikitech-l] API Sandbox (was: 2015-12-02 Scrum of Scrums meeting notes)

2015-12-06 Thread Bartosz DziewoƄski
On 2015-12-04 18:59, Adam Baso wrote: I do wonder though if we've spent much time studying the ease of getting at least some part of oojs-ui split out or making it so that new stuff going forward is part of the oojs-ui family but it's not as monolithich? Not any more than what is written at

Re: [Wikitech-l] API Sandbox (was: 2015-12-02 Scrum of Scrums meeting notes)

2015-12-04 Thread Brad Jorsch (Anomie)
On Fri, Dec 4, 2015 at 12:59 PM, Adam Baso wrote: > On Wed, Dec 2, 2015 at 1:58 PM, Grace Gellerman > wrote: > > > > === Reading Infrastructure === > > * Block: ApiSandbox is still blocked on whoever owns oojs-ui for > >

[Wikitech-l] API Sandbox (was: 2015-12-02 Scrum of Scrums meeting notes)

2015-12-04 Thread Adam Baso
On Wed, Dec 2, 2015 at 1:58 PM, Grace Gellerman wrote: > === Reading Infrastructure === > * Block: ApiSandbox is still blocked on whoever owns oojs-ui for > https://phabricator.wikimedia.org/T91148 - ACTION! let's figure out an > alternative approach (James F suggests

Re: [Wikitech-l] API Sandbox

2011-05-04 Thread Max Semenik
On 28.03.2011, 19:39 SALIL wrote: I was planning to make an api sandbox for mediawiki as a part of gsoc 2011. while going through mediawiki documentation, i found that many functions needed POST rather than GET requests. i am planning for flickr like api

Re: [Wikitech-l] API Sandbox

2011-04-07 Thread SALIL P A
http://www.mediawiki.org/wiki/User:Salil : final Gsoc proposal expecting your valuable comments regards Salil P A On Wed, Mar 30, 2011 at 4:41 AM, Krinkle krinklem...@gmail.com wrote: JSONP is exactly the reason why cross-domain works. It allows you to use callbacks and get the data from

Re: [Wikitech-l] API Sandbox

2011-03-29 Thread Krinkle
JSONP is exactly the reason why cross-domain works. It allows you to use callbacks and get the data from there. ie. something like the following will work to en.wikipedia.org from your domain as well: code $.ajax({ url: 'http://en.wikipedia.org/w/api.php', 'data' : {

[Wikitech-l] API Sandbox

2011-03-28 Thread SALIL P A
Hi I was planning to make an api sandbox for mediawiki as a part of gsoc 2011. while going through mediawiki documentation, i found that many functions needed POST rather than GET requests. i am planning for flickr like api

Re: [Wikitech-l] API Sandbox

2011-03-28 Thread Bryan Tong Minh
On Mon, Mar 28, 2011 at 5:39 PM, SALIL P A salilpa...@gmail.com wrote: to make the api sandbox really useful, it ideally should have automatic php code generation too ( i don't know if it is overambitious ). for example for login and logout, user can just give his userid and password and the

Re: [Wikitech-l] API Sandbox

2011-03-28 Thread SALIL P A
thanks bryan :) Salil P A On Mon, Mar 28, 2011 at 9:40 PM, Bryan Tong Minh bryan.tongm...@gmail.comwrote: On Mon, Mar 28, 2011 at 5:39 PM, SALIL P A salilpa...@gmail.com wrote: to make the api sandbox really useful, it ideally should have automatic php code generation too ( i don't

Re: [Wikitech-l] API Sandbox

2011-03-28 Thread Roan Kattouw
2011/3/28 Bryan Tong Minh bryan.tongm...@gmail.com: That would be the best way to go. You really don't want to do this manually. Every API modules has a function getFinalParamDescription() which will give you the parameter description, including the defaults and the variable type. Best look at