[Wikitech-l] How to create account by API?

2012-08-07 Thread wangfeng wangfeng
Hi, I have build mediawiki . And I have another webservice write by myself. What I want is : 1. when I register in my service , it could create an acount in mediawiki 2. when I login in my service , it could login in mediawiki 3. when I logout in my service ,it could logout in mediawiki

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread Yury Katkov
Hi there! I'm by not at all specialist on API, but this page looks like you want: http://www.mediawiki.org/wiki/API:Account_creation - Yury Katkov On Tue, Aug 7, 2012 at 10:42 AM, wangfeng wangfeng wangfeng.v1.1...@gmail.com wrote: Hi, I have build mediawiki . And I have another

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread Yuvi Panda
There is currently no API to do account creation (https://www.mediawiki.org/wiki/API:Account_creation is a draft, and IIRC there is nobody actively working on it). There was a GSoC student working on it last year (https://www.mediawiki.org/wiki/Extension:SignupAPI) but I don't think that's in any

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread wangfeng wangfeng
Thank you. So do you mean that I cannot create an account through my service? 2012/8/7 Yuvi Panda yuvipa...@gmail.com There is currently no API to do account creation (https://www.mediawiki.org/wiki/API:Account_creation is a draft, and IIRC there is nobody actively working on it). There was

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread Christopher Wilson
It seems like it would make more sense to just use a central authentication system to support both the Wiki and the other services. There are extensions and plugins for LDAP and other authentication methods. On Mon, Aug 6, 2012 at 11:58 PM, wangfeng wangfeng wangfeng.v1.1...@gmail.com wrote:

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread wangfeng wangfeng
Thank you . I will consider it. 2012/8/7 Christopher Wilson gwsuper...@gmail.com It seems like it would make more sense to just use a central authentication system to support both the Wiki and the other services. There are extensions and plugins for LDAP and other authentication methods.

[Wikitech-l] Deprecation levels

2012-08-07 Thread Jeroen De Dauw
Hey, This is something I've come across several times before when deprecating functions: people want different behaviour with regard to the warnings they get. Typically what people want can be split into two groups: Weak deprecation: The function is documented as being deprecated but no

[Wikitech-l] Searching in mediawiki instance with solr?

2012-08-07 Thread Uwe Baumbach
Hi, is there any special advice for searching in mediawiki instances using solr? The only thing I found http://www.mediawiki.org/wiki/Extension:SolrStore seemed to be quit special for SMW? We already run solr for other projects and it would be nice to include our wiki

Re: [Wikitech-l] Deprecation levels

2012-08-07 Thread Derric Atzrott
Hey, This is something I've come across several times before when deprecating functions: people want different behaviour with regard to the warnings they get. Typically what people want can be split into two groups: Weak deprecation: The function is documented as being deprecated but no

Re: [Wikitech-l] Deprecation levels

2012-08-07 Thread Krinkle
On Tue, Aug 7, 2012 at 11:26 AM, Jeroen De Dauw jeroended...@gmail.comwrote: Hey, This is something I've come across several times before when deprecating functions: people want different behaviour with regard to the warnings they get. Typically what people want can be split into two groups:

Re: [Wikitech-l] Deprecation levels

2012-08-07 Thread Jeroen De Dauw
Hey, Didn't we solve this already by being able to pass a version to wfDeprecation() and allowing users to set $wgDeprecationReleaseLimit to hide/show from whatever cut-off point they desire? This seems to coarse - people still get mad when adding a wfDeprecated( __METHOD__, '1.20' ), even

Re: [Wikitech-l] Deprecation levels

2012-08-07 Thread Helder .
Indeed: http://www.gossamer-threads.com/lists/wiki/wikitech/249632 Helder On Tue, Aug 7, 2012 at 9:29 AM, Krinkle krinklem...@gmail.com wrote: On Tue, Aug 7, 2012 at 11:26 AM, Jeroen De Dauw jeroended...@gmail.comwrote: Hey, This is something I've come across several times before when

Re: [Wikitech-l] Deprecation levels

2012-08-07 Thread Tyler Romeo
I don't think this is a very good idea at all. The real problem has to do with the definition of a deprecated feature. If a feature has been deprecated, then it should no longer be used (at least not in the core). Inventing soft deprecation for features that have been superseded but have yet to be

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread Tyler Romeo
Hmm, if there is actually any interest, I might try and work on the account registration API. *--* *Tyler Romeo* Stevens Institute of Technology, Class of 2015 Major in Computer Science www.whizkidztech.com | tylerro...@gmail.com On Tue, Aug 7, 2012 at 3:29 AM, wangfeng wangfeng

Re: [Wikitech-l] Deprecation levels

2012-08-07 Thread Derric Atzrott
I don't think this is a very good idea at all. The real problem has to do with the definition of a deprecated feature. If a feature has been deprecated, then it should no longer be used (at least not in the core). Inventing soft deprecation for features that have been superseded but have yet to

Re: [Wikitech-l] Deprecation levels

2012-08-07 Thread Tyler Romeo
Mhm. I like the idea of function supersession. Basically, I just don't think we should call a function deprecated unless it actually is indeed deprecated, i.e., no longer used anywhere in the core. Theoretically, a function that is deprecated in the core should not show any warnings whatsoever

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread Yuvi Panda
On Tue, Aug 7, 2012 at 6:29 PM, Tyler Romeo tylerro...@gmail.com wrote: Hmm, if there is actually any interest, I might try and work on the account registration API. I'm sure there's plenty of interest! From what I know, at least Mobile Team is interested in them (enabling account creation in

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread Tyler Romeo
Awesome. In that case I'll put it on my project list. Depending on how free I am, I should have something in the next week or two. *--* *Tyler Romeo* Stevens Institute of Technology, Class of 2015 Major in Computer Science www.whizkidztech.com | tylerro...@gmail.com On Tue, Aug 7, 2012 at 9:04

[Wikitech-l] Deprecation levels

2012-08-07 Thread bawolff
Mhm. I like the idea of function supersession. Basically, I just don't think we should call a function deprecated unless it actually is indeed deprecated, i.e., no longer used anywhere in the core. Theoretically, a function that is deprecated in the core should not show any warnings

Re: [Wikitech-l] Invitation for Localisation team development demonstration 2012-08-07 15:00 UTC

2012-08-07 Thread Siebrand Mazeland (WMF)
Someone managed to cancel our demo in WebEx. Apologies. The demo link is https://wikimedia.webex.com/wikimedia/j.php?ED=182512652UID=1294182757RT=MiMyMg%3D%3D The demo will start in 5 minutes or less. On Mon, Aug 6, 2012 at 9:00 AM, Siebrand Mazeland (WMF) smazel...@wikimedia.org wrote: You

Re: [Wikitech-l] About outreach and tech events (as suggested by Sumana!)

2012-08-07 Thread Julien Dorra
Hi Al, Bawolff, Lydia, Marcin, and thanks for your feedbacks and exchanges! I was away for a few days, so I'll try to summarize what's have been said and what it makes me think about tech outreach at wikipedia. Bawolff said: it just seems that often outreach focuses on people outside the

Re: [Wikitech-l] About outreach and tech events (as suggested by Sumana!)

2012-08-07 Thread Chris McMahon
The goal would be to lure experienced TDD devs in by focusing the event on testing, make them work with the community during a weekend on the code base, existing test, writing tests, etc. and mentor others along the way. (I'm still convinced that giving it a cool, flashy, name doesn't hurt

Re: [Wikitech-l] Free software license for (global) gadgets

2012-08-07 Thread Raylton P. Sousa
I'm also interested in a reply 2012/8/6 Helder . helder.w...@gmail.com Hi! According to some pages on mediawiki.org[1][2], it seems that wiki is going to be a central repository for gadgets which will be shared with WMF projects (and other projects using MediaWiki). I would like to know

Re: [Wikitech-l] Free software license for (global) gadgets

2012-08-07 Thread Liangent
On Wed, Aug 8, 2012 at 3:57 AM, Raylton P. Sousa raylton.so...@gmail.com wrote: I'm also interested in a reply 2012/8/6 Helder . helder.w...@gmail.com Hi! According to some pages on mediawiki.org[1][2], it seems that wiki is going to be a central repository for gadgets which will be

Re: [Wikitech-l] Free software license for (global) gadgets

2012-08-07 Thread Helder .
On Tue, Aug 7, 2012 at 5:07 PM, Liangent liang...@gmail.com wrote: Also Lua modules? Good point! Helder ___ Wikitech-l mailing list Wikitech-l@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] How to distribute a Mediawiki project?

2012-08-07 Thread Mark A. Hershberger
On 08/06/2012 08:03 PM, Tomás Vírseda wrote: Anyway I think it is useful and I'd like to share this project in Internet. Which is the best strategy? I know that I can export all my pages into a file. But is there any idea/extensions about this issue? I'm interested in anything you find out

Re: [Wikitech-l] How to create account by API?

2012-08-07 Thread wangfeng wangfeng
Thank you! Your work will great help to me. 2012/8/7 Tyler Romeo tylerro...@gmail.com Awesome. In that case I'll put it on my project list. Depending on how free I am, I should have something in the next week or two. *--* *Tyler Romeo* Stevens Institute of Technology, Class of 2015 Major

[Wikitech-l] IRC office hours with the Localisation team 2012-08-15 16:30 UTC

2012-08-07 Thread Srikanth Lakshmanan (WMF)
Hello everyone, You're invited to the IRC office hours with the Localisation team[1] at the Wikimedia Foundation. Date: 2012-08-15 Time: 16.30 UTC Venue: #wikimedia-office Agenda: 1. Universal Language Selector update. 2. Language teams. 3. Q A For more logistical info and time conversion

[Wikitech-l] WYSIWYG and preview

2012-08-07 Thread Adm
hello, I have configured (and patched) richeditor in my mediawiki 1.19.1: require_once($IP/extensions/WYSIWYG/WYSIWYG.php); $wgGroupPermissions['*']['wysiwyg'] = TRUE; $wgDefaultUserOptions['riched_use_toggle'] = 1; $wgDefaultUserOptions['riched_start_disabled'] = 1;