[Wikitech-l] Re: Inquiry Regarding Opportunities to contribute

2023-11-15 Thread Egbe Eugene
Hello Vaishnavi,

Than you for showing interest in Wikimedia.

You can begin by going through the following resources on how to get
started as a developer

- https://www.mediawiki.org/wiki/New_Developers
 - https://developer.wikimedia.org/ You can also join

Feel free to ask any questions here if you have any.

Cheers,
Egbe

On Wed, 15 Nov 2023 at 11:35 Vaishnavi Maheshwari <
vaishnavi19offic...@gmail.com> wrote:

> Hi WIKIMEDIA,
> I'm writing to express my interest in contributing to your organization.
> I'm impressed by the work that you do and would like to know how I can get
> started. Can you please provide me with more information about how to
> become a
> contributor joining your team? What are the requirements that I need to
> meet? Are there any steps I need to take to get started?  Thank you in
> advance for considering my request. I look forward to hearing from you
> soon.
> Best regards,
> Vaishnavi Maheshwari
>
>
> [image: Mailtrack]
> 
>  Sender
> notified by
> Mailtrack
> 
>  11/15/23,
> 04:03:33 PM
> ___
> Wikitech-l mailing list -- wikitech-l@lists.wikimedia.org
> To unsubscribe send an email to wikitech-l-le...@lists.wikimedia.org
> https://lists.wikimedia.org/postorius/lists/wikitech-l.lists.wikimedia.org/
___
Wikitech-l mailing list -- wikitech-l@lists.wikimedia.org
To unsubscribe send an email to wikitech-l-le...@lists.wikimedia.org
https://lists.wikimedia.org/postorius/lists/wikitech-l.lists.wikimedia.org/

[Wikitech-l] OAuth Not working for Flask application

2021-07-02 Thread Egbe Eugene
Dear All,
I have been trying to develop a tool which uses OAuth with Flask using
mwoauth as specified here[1].

Unfortunately, the OAuth request seems to not work as it ends with no error
messages.

After investigating, it looks like /oauth-callback does not execute (which
seems unusual).

This is not the first time I am doing this but it looks like I can't get
hold of the issue here.

I will appreciate any help!

Thanks
Eugene233


[1]
https://wikitech.wikimedia.org/wiki/Help:Toolforge/My_first_Flask_OAuth_tool
___
Wikitech-l mailing list -- wikitech-l@lists.wikimedia.org
To unsubscribe send an email to wikitech-l-le...@lists.wikimedia.org
https://lists.wikimedia.org/postorius/lists/wikitech-l.lists.wikimedia.org/

Re: [Wikitech-l] Wikimedia Phabricator Tutorial Videos available on Commons

2020-09-30 Thread Egbe Eugene
This is really great! Thanks very much for your time and effort to make
this resource available.

On Wed, Sep 30, 2020 at 11:14 AM Andre Klapper 
wrote:

> Hi everyone,
>
>
>
> if you've also sometimes wondered about using Wikimedia Phabricator or
>
> struggle a bit with it: I made some tutorial videos how to best use it
>
> (including English subtitles). They are now linked from the top of
>
>
>
>   https://www.mediawiki.org/wiki/Phabricator/Help
>
>
>
> and can also be found at
>
> https://commons.wikimedia.org/wiki/Category:Phabricator_Tutorial_Series
>
>
>
> Subtitle translations to other languages would be really welcome! :)
>
>
>
> And if you think that something common and important is missing in
>
> those videos, please share your thoughts for a revised edition in
>
> https://phabricator.wikimedia.org/T263480
>
>
>
> Cheerio & thanks!,
>
> andre
>
>
>
> --
>
> Andre Klapper (he/him) | Bugwrangler / Developer Advocate
>
> https://blogs.gnome.org/aklapper/
>
>
>
>
>
> ___
>
> Wikitech-l mailing list
>
> Wikitech-l@lists.wikimedia.org
>
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
>
>
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l


Re: [Wikitech-l] Getting surface headings from VE Model

2020-06-03 Thread Egbe Eugene
Thanks very much for the reply Ed.

On Wed, Jun 3, 2020 at 3:10 PM Ed Sanders  wrote:

> I've filed https://phabricator.wikimedia.org/T254354 to track the updating
> issue.
>
> On Wed, 3 Jun 2020 at 15:04, Ed Sanders  wrote:
>
> > ve.dm.Document contains a cache of nodes by type which you can access
> with
> > ve.dm.Document.prototype.getNodesByType:
> >
> > ve.init.target.surface.model.documentModel.getNodesByType( 'mwHeading',
> > true );
> >
> > This appears to work for the initial document, but may be broken with
> > regards to newly added nodes.
> >
> > On Tue, 26 May 2020 at 10:43, Egbe Eugene  wrote:
> >
> >> Hi All,
> >>
> >> I am using the VE model in a Gadget and I am wondering how can I get the
> >> headings which have been entered on the VE surface for further
> processing
> >>
> >> Thanks
> >> ___
> >> Wikitech-l mailing list
> >> Wikitech-l@lists.wikimedia.org
> >> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
> >
> >
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Unable to Access new extension with mw.loader

2020-04-06 Thread Egbe Eugene
Hi All,

I am trying to convert an old extension into a module which I can use from
other extensions. After configuring with something like below:

"ResourceModules": {
"ext.myExtension": {
"packageFiles": [
"resources/ext.myExtension/index.js",
"resources/ext.myExtension/core.js",
"resources/ext.myExtension/foobar.js"
],
"styles": "resources/ext.myExtension.css",
"messages": [
"myextension-hello-world",
"myextension-goodbye-world"
],
"dependencies": [
"oojs"
]
}}

mw.loader.using('ext.myExtension')... results into a module not found error

What could be missing here?
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Unable to run MobileFrontEnd Extension

2020-03-24 Thread Egbe Eugene
Thanks very much for the help Daniel. A quick one... I notice that on
mobile view, clicking on `edit` on a page does not activate Visual editor.

On Tue, Mar 24, 2020 at 10:27 AM Daniel Kinzler 
wrote:

> Sounds like you are using an incompatible version of the extension. Make
> sure
> you install a snapshot that matches the version of MediaWiki you run. Pick
> the
> appropriate release on the download page:
> <
> https://www.mediawiki.org/wiki/Special:ExtensionDistributor/MobileFrontend
> >
>
> Most extensions don't keep backwards compatible with older versions of
> MediaWiki
> (including the latest release). See
> <https://www.mediawiki.org/wiki/Compatibility#mediawiki_extensions>
>
> HTH
>
> Am 24.03.20 um 10:05 schrieb Egbe Eugene:
> > Hi All,
> > After Installing the MobileFrontEnd extension, I am unable to run it due
> to
> > some error.
> >
> > *Fatal error: Uncaught Error: Call to undefined method
> > MediaWiki\MediaWikiServices::getContentHandlerFactory() in
> >
> /Library/WebServer/Documents/myweb/otherprojects/mw/core/extensions/MobileFrontend/includes/MobileFrontendEditorHooks.php*
> >
> > I am not sure what is missing and how can I make this run.
> >
> > Thanks
> > ___
> > Wikitech-l mailing list
> > Wikitech-l@lists.wikimedia.org
> > https://lists.wikimedia.org/mailman/listinfo/wikitech-l
> >
>
> --
> Daniel Kinzler
> Principal Software Engineer, Core Platform
> Wikimedia Foundation
>
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Unable to run MobileFrontEnd Extension

2020-03-24 Thread Egbe Eugene
Hi All,
After Installing the MobileFrontEnd extension, I am unable to run it due to
some error.

*Fatal error: Uncaught Error: Call to undefined method
MediaWiki\MediaWikiServices::getContentHandlerFactory() in
/Library/WebServer/Documents/myweb/otherprojects/mw/core/extensions/MobileFrontend/includes/MobileFrontendEditorHooks.php*

I am not sure what is missing and how can I make this run.

Thanks
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] My intro

2020-03-13 Thread Egbe Eugene
Hi Fabrice,

I will suggest you read through the GSoC documentation provided by Andre
thoroughly so you can know well about the program.

On Thu, Mar 12, 2020 at 10:10 PM fabrice ngoran 
wrote:

> Sorry to border you, but it's my first time taking part in such events.
> I've found tasks on the page you directed my to. What are they for?
> Plsss
> On Mar 12, 2020 9:28 PM, "fabrice ngoran" 
> wrote:
>
> > Thank you Andre
> > On Mar 12, 2020 7:39 PM, "Andre Klapper"  wrote:
> >
> >> Hi and welcome!
> >>
> >> On Thu, 2020-03-12 at 18:58 +0100, fabrice ngoran wrote:
> >> > Hi,
> >> > I'm Fabrice, new to the organization. I heard of gsoc very late but
> >> still
> >> > decided to give it a try. I don't know much on how/where to
> communicate
> >> > with members of the organization. I'll be really grateful if someone
> >> could
> >> > help me out.
> >>
> >> Glad to hear your interest in contributing to Wikimedia projects!
> >> Please see https://www.mediawiki.org/wiki/Google_Summer_of_Code/2020
> >> for more information and communication venues.
> >>
> >> Thanks,
> >> andre
> >> --
> >> Andre Klapper (he/him) | Bugwrangler / Developer Advocate
> >> https://blogs.gnome.org/aklapper/
> >>
> >>
> >> ___
> >> Wikitech-l mailing list
> >> Wikitech-l@lists.wikimedia.org
> >> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
> >
> >
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Guide with testing VE Gadget on Test Wikipedia

2020-01-22 Thread Egbe Eugene
Thanks very much. I got the request accepted.

Just a follow up. I have a the following error for requests to wmflabs

"Report Only] Refused to connect to '
https://tools.wmflabs.org/scribe/api/v1/sections?article=Biblioteca%20del%20Museu%20Mar%C3%ADtim%20de%20Barcelona'
because it violates the following Content Security Policy directive:
"default-src 'self' data: blob: upload.wikimedia.org
https://commons.wikimedia.org meta.wikimedia.org *.wikimedia.org *.
wikipedia.org *.wikinews.org *.wiktionary.org *.wikibooks.org *.
wikiversity.org *.wikisource.org wikisource.org *.wikiquote.org *.
wikidata.org *.wikivoyage.org *.mediawiki.org wikimedia.org". Note that
'connect-src' was not explicitly set, so 'default-src' is used as a
fallback."

What could be the cause of this?

On Tue, Jan 21, 2020 at 11:13 PM Nick Wilson (Quiddity) <
nwil...@wikimedia.org> wrote:

> Hi Eugene,
> I believe the links you are looking for are:
> To find someone to work with:
>
> https://test.wikipedia.org/w/index.php?title=Special:ListUsers=interface-admin
> or, To request:
> https://test.wikipedia.org/wiki/Wikipedia:Requests/Permissions
> Cheers,
>
>
> On Tue, Jan 21, 2020 at 6:30 AM Egbe Eugene  wrote:
>
> > Hi All,
> >
> >
> > We are working on Scribe[1], an editing interface to support low-resource
> > language Wikipedia editors. Scribe is a gadget. To test the gadget we
> would
> > need someone to deploy it to test Wikipedia, or to add One of us to the
> > interface admins group on test Wikipedia. Could anyone help us to proceed
> > with this or connect us with someone who has the knowledge to do that?
> > Thanks, the scribe team
> >
> >
> > —
> > Eugene on behalf of Team Scribe.
> >
> > [1] https://meta.wikimedia.org/wiki/Scribe
> > ___
> > Wikitech-l mailing list
> > Wikitech-l@lists.wikimedia.org
> > https://lists.wikimedia.org/mailman/listinfo/wikitech-l
>
>
>
> --
> Nick "Quiddity" Wilson (he/him)
> Community Engagement - Documentation
> Wikimedia Foundation
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Guide with testing VE Gadget on Test Wikipedia

2020-01-21 Thread Egbe Eugene
Hi All,


We are working on Scribe[1], an editing interface to support low-resource
language Wikipedia editors. Scribe is a gadget. To test the gadget we would
need someone to deploy it to test Wikipedia, or to add One of us to the
interface admins group on test Wikipedia. Could anyone help us to proceed
with this or connect us with someone who has the knowledge to do that?
Thanks, the scribe team


—
Eugene on behalf of Team Scribe.

[1] https://meta.wikimedia.org/wiki/Scribe
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] How to alter the Visual Editor configuration object for tool bar

2020-01-13 Thread Egbe Eugene
Yes it appears under "insert" -> 'more'.

Isn't there a way to make it visible on the tool bar so it is easy and more
visible to access?

On Mon, Jan 13, 2020 at 12:08 PM Robert Vogel  wrote:

> Hi!
>
> have you tried this?
>
> https://www.mediawiki.org/wiki/VisualEditor/Gadgets/Add_a_tool
>
> --
> Robert
> ____
> Von: Wikitech-l  im Auftrag von
> Egbe Eugene 
> Gesendet: Montag, 13. Januar 2020 10:21
> An: Wikimedia developers 
> Betreff: [Wikitech-l] How to alter the Visual Editor configuration object
> for tool bar
>
> Hi All,
>
> How do I access the  configuration object for the main toolbar of
> VisualEditor and add a new option to this to represent a new tool? below is
> the image of the tool bar I am referring to.
>
>  Thanks,
> --
> Eugene233
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] How to alter the Visual Editor configuration object for tool bar

2020-01-13 Thread Egbe Eugene
Hi All,

How do I access the  configuration object for the main toolbar of
VisualEditor and add a new option to this to represent a new tool? below is
the image of the tool bar I am referring to.

 Thanks,
-- 
Eugene233
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Equivalence for using Template:Cite_Web with templates surrounding Wikicode

2020-01-06 Thread Egbe Eugene
Thanks very much Bartosz, it works just fine with Cite. Just a follow up
question. *Is Cite responsible for rendering * *?*

On Mon, Jan 6, 2020 at 3:03 PM Bartosz Dziewoński 
wrote:

> Sounds like you don’t have Cite installed?
>
> On Monday, January 6, 2020, Egbe Eugene  wrote:
>
> > Thanks very much Bartosz, I tried it on my VE sandbox page on
> en.Wikipedia
> > and it works really cool. However, I get the following error on my local
> MW
> > install
> >
> >  *jQuery.Deferred exception: ve.dm.MWReferenceModel is not a constructor
> > TypeError: ve.dm.MWReferenceModel is not a constructor*
> >
> > I should be lacking a module or something. Please can you help with this?
> >
> > Thanks once more,
> > --
> > Eugene
> >
> > On Sat, Jan 4, 2020 at 10:10 AM Bartosz Dziewoński 
> > wrote:
> >
> > > I am not really sure what you mean…
> > >
> > > Here's a complete example that inserts, basically, "Hello[1] world[2]"
> > > (text with two different references):
> > >
> > > https://phabricator.wikimedia.org/P10038
> > >
> > > Does that help?
> > >
> > > --
> > > Bartosz Dziewoński
> > >
> > > ___
> > > Wikitech-l mailing list
> > > Wikitech-l@lists.wikimedia.org
> > > https://lists.wikimedia.org/mailman/listinfo/wikitech-l
> > ___
> > Wikitech-l mailing list
> > Wikitech-l@lists.wikimedia.org
> > https://lists.wikimedia.org/mailman/listinfo/wikitech-l
>
>
>
> --
> Matma Rex
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Equivalence for using Template:Cite_Web with templates surrounding Wikicode

2020-01-05 Thread Egbe Eugene
Thanks very much Bartosz, I tried it on my VE sandbox page on en.Wikipedia
and it works really cool. However, I get the following error on my local MW
install

 *jQuery.Deferred exception: ve.dm.MWReferenceModel is not a constructor
TypeError: ve.dm.MWReferenceModel is not a constructor*

I should be lacking a module or something. Please can you help with this?

Thanks once more,
-- 
Eugene

On Sat, Jan 4, 2020 at 10:10 AM Bartosz Dziewoński 
wrote:

> I am not really sure what you mean…
>
> Here's a complete example that inserts, basically, "Hello[1] world[2]"
> (text with two different references):
>
> https://phabricator.wikimedia.org/P10038
>
> Does that help?
>
> --
> Bartosz Dziewoński
>
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Equivalence for using Template:Cite_Web with templates surrounding Wikicode

2020-01-03 Thread Egbe Eugene
Thanks very much for the suggestions.

It looks like I did not pose the question very clearly.

We desire that the surface displays something like "Hello[1] world[2]" on
the VE surface and then have the footer note pick up these [1] and [2]
automatically and display them for us at the bottom of the page as in the
case where {{cite|a}} gets picked up in wikicode and rendered.

Is this possible?
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Equivalence for using Template:Cite_Web with templates surrounding Wikicode

2020-01-02 Thread Egbe Eugene
Thanks for the help Bartosz.  However, I have a large data definition of
both texts and citations so I was wondering if its possible to insert the
texts and citations
all in one go when writing to the VE surface. In such cases, we expect the
VE surface to identify, the citation where
we are including the 'mwTransclusionInline' template in our data. Please is
this possible?

Thanks

On Wed, Jan 1, 2020 at 4:56 AM Bartosz Dziewoński 
wrote:

> {{Cite web}} and similar templates can also be used outside of a 
> tag, e.g. on a page like this:
> https://en.wikipedia.org/wiki/Review_aggregator#Bibliography (not the
> greatest example, but the best I could find quickly).
>
> If you want it inside of a footnote, it's a bit complicated in visual
> mode, since the footnotes can be reused multiple times. The way it works
> is that there is a separate place in the document where the contents of
> every reference are placed (the "internal list"), and the location of
> the  contains only a small node that links to the internal list.
>
> Manually constructing the data so that both these things refer to each
> other would be a pain, but there is a helper class that makes it more
> convenient, ve.dm.MWReferenceModel.
>
> You'd use it like this:
>
> https://phabricator.wikimedia.org/P10018
>
> I adapted that example from the code in
> ve.ui.MWCitationDialog.prototype.getActionProcess, which is how VE
> itself inserts new references.
>
> Hope that helps (and doesn't look too awful).
>
>
> --
> Bartosz Dziewoński
>
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Equivalence for using Template:Cite_Web with templates surrounding Wikicode

2019-12-31 Thread Egbe Eugene
Hi All,

I am implementing template https://en.wikipedia.org/wiki/Template:Cite_web in
VE and after using the template code[1], I get results shown below

{{Cite web|url=
https://www.w3schools.com/jsref/jsref_replace.asp|title=W3Schools|last=W3Schools|first=W3Schools
}}

what I desire to get is

{{Cite web|url=
https://www.w3schools.com/jsref/jsref_replace.asp|title=W3Schools|last=W3Schools|first=W3Schools}
}

So I guess I am missing something. Please I need help with this.

Thanks
Eugene
--
[1] https://etherpad.wikimedia.org/p/Template_cite_with_VE
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Adding a Citation on VE surface using SurfaceModel

2019-12-19 Thread Egbe Eugene
Hi All,

What is the best way to add a citation text on the VE surface?

I have wikitext of the form

{{sample mediawiki
|Path=
http://localhost/myweb/otherprojects/mw/core/index.php/Main_Page#Getting
|Title= Medaiwiki|Publisher = [[Wikimedia]]
|Date= 17 June 2019|Arrival date= 12 May 2017
| Archive Path = mediawiki.org| Archive date = 4 September 2019 }}


which when I paste, VE renders automatically. But when I write it as a
string, it does not render on the surface.

Thanks
--
Eugene233
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Javascript Parse error on MW while using spread syntax

2019-12-18 Thread Egbe Eugene
Thanks very much Lucas.

On Wed, Dec 18, 2019 at 11:47 AM Lucas Werkmeister <
lucas.werkmeis...@wikimedia.de> wrote:

> Spread syntax and other ES6 syntax are not available in MediaWiki: see
> T75714 <https://phabricator.wikimedia.org/T75714>.
>
> Am Mi., 18. Dez. 2019 um 11:39 Uhr schrieb Egbe Eugene <
> agboreug...@gmail.com>:
>
> > Hi All,
> >
> > I am using spread syntax on a array in javascript and it works fine on
> > command line but when I paste the code in a MW js file, I get the
> > error *'JavaScript
> > parse error: Parse error: Missing ) in parenthetical' *on the line where
> I
> > used the where I used the spread syntax. Please I need some help on this
> > because I don't know how to go about it. Thanks,
> >
> > --
> > Eugene
> > ___
> > Wikitech-l mailing list
> > Wikitech-l@lists.wikimedia.org
> > https://lists.wikimedia.org/mailman/listinfo/wikitech-l
>
>
>
> --
> Lucas Werkmeister (he/er)
> Full Stack Developer
>
> Wikimedia Deutschland e. V. | Tempelhofer Ufer 23-24 | 10963 Berlin
> Phone: +49 (0)30 219 158 26-0
> https://wikimedia.de
>
> Imagine a world in which every single human being can freely share in the
> sum of all knowledge. Help us to achieve our vision!
> https://spenden.wikimedia.de
>
> Wikimedia Deutschland - Gesellschaft zur Förderung Freien Wissens e. V.
> Eingetragen im Vereinsregister des Amtsgerichts Berlin-Charlottenburg unter
> der Nummer 23855 B. Als gemeinnützig anerkannt durch das Finanzamt für
> Körperschaften I Berlin, Steuernummer 27/029/42207.
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Javascript Parse error on MW while using spread syntax

2019-12-18 Thread Egbe Eugene
Hi All,

I am using spread syntax on a array in javascript and it works fine on
command line but when I paste the code in a MW js file, I get the
error *'JavaScript
parse error: Parse error: Missing ) in parenthetical' *on the line where I
used the where I used the spread syntax. Please I need some help on this
because I don't know how to go about it. Thanks,

--
Eugene
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] (no subject)

2019-12-16 Thread Egbe Eugene
Hi All,

After writing to the VE surface from a Gadget, the page saves with just
empty '' tags with no text. I could be missing something in my
config for VE or use of the model. Please can I get a solution for this?

The sample data and the segment which writes to the model is found here[1].


--
Eugene233

[1] https://etherpad.wikimedia.org/p/sample_VE_model
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Changing the action button labels of a OO.ui.confirm dialog

2019-12-16 Thread Egbe Eugene
Thanks very much for the suggestions.

On Fri, Dec 13, 2019 at 5:05 PM Bartosz Dziewoński 
wrote:

> You can actually customize the labels in OO.ui.confirm() too:
>
> OO.ui.confirm( '...', {
> actions: [
> { action: 'accept', label: 'Yes!', flags:
> 'primary' },
> { action: 'reject', label: 'No…', flags: 'safe' }
> ]
> } ).done( function ( confirmed ) {
> ...
> } );
>
> Make sure to keep the `action: 'accept'` and `action: 'reject'` (the
> dialog uses this to make the two buttons do things), the other pieces
> can be changed.
>
> --
> Bartosz Dziewoński
>
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Changing the action button labels of a OO.ui.confirm dialog

2019-12-12 Thread Egbe Eugene
Hi All,

while going through OO.ui.confirm dialog documentation I got curious about
how to change the labels of the action buttons 'Ok' and 'Cancel' to show
different texts.

--
Eugene
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] I am really intrested to the wikimedia's technoloy and I would like to contribute to his amazing development

2019-12-02 Thread Egbe Eugene
Hello Joel,

I think from your region you can have a look at the AWMD program.

https://m.mediawiki.org/wiki/Africa_Wikimedia_Developers_Project

On Mon, 2 Dec 2019 at 13:08 Fokou Joel  wrote:

> Good evening(good morning) everyone. I named Fokou Joel Bertrand, I am a
> computer engineer(in fact I am still learning in the computer engineering
> field, second year) in university of Buea (Faculty of Engineering and
> Technology - departement of Computer Engineering) in Cameroon. I have a lot
> of experiences in the web development(Frond-end). I develop very well in
> JavaScript, HTML5/CSS3. Please I'd wish to be a part of yours to propose
> some ideas to the amazing devopment of your organization. So I wish to know
> how to process from now given that I and a new person here. On that, I'm
> really expecting  help from you. Thank you very much.
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Documentation/Examples on enabling localization in Gadgets

2019-11-27 Thread Egbe Eugene
Thanks very much Niklas. I also found
https://en.wikipedia.org/wiki/User:%D7%A2%D7%A8%D7%9F/veReplace.js

On Wed, 27 Nov 2019 at 14:44 Niklas Laxström 
wrote:

> ke 27. marrask. 2019 klo 0.38 Egbe Eugene (agboreug...@gmail.com)
> kirjoitti:
> >
> > Hi All,
> >
> > Is there any documentation or Gadget I can have a quick look at yo be
> able
> > to learn how to enable translation in gadgets?
>
> The only example I know is
> https://commons.wikimedia.org/wiki/Help:Gadget-ProveIt and it is using
> Gerrit and translatewiki.net.
>   -Niklas
>
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Documentation/Examples on enabling localization in Gadgets

2019-11-26 Thread Egbe Eugene
Hi All,

Is there any documentation or Gadget I can have a quick look at yo be able
to learn how to enable translation in gadgets?

Thanks in advance.
—
Eugene233
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Cloud VPS users, please claim your projects -- one week left

2019-11-25 Thread Egbe Eugene
I don’t have to claim any project but I really wish to plead that ‘scribe’
project request be accelerated. Thanks.

On Mon, 25 Nov 2019 at 14:45 Andrew Bogott  wrote:

> Many thanks to all of you who have acted on this already!  There are now
> 17 unclaimed projects -- these will be shut down next week if they
> remain unclaimed.  They are:
>
> butterfly
> design
> etcd
> hat-imagescalers
> indico
> lewton-test
> mcr-dev
> orig
> queryrapi
> social-tools
> structurednavigation
> test-twemproxy
> visualeditor
> wikifactmine
> wikilabels
> wmf-research-tools
> wpx
>
>
> On 9/30/19 11:24 AM, Andrew Bogott wrote:
> > Every year or so the Cloud Services team tries to identify and clean
> > up unused projects and VMs.  We do this via an opt-in process: anyone
> > can mark a project as 'in use,' and that project will be preserved for
> > another year.
> >
> > I've created a wiki page the lists all existing projects, here:
> >
> > https://wikitech.wikimedia.org/wiki/News/Cloud_VPS_2019_Purge
> >
> > If you are a VPS user, please visit that page and mark any projects
> > that you use as {{Used}}.  Note that it's not necessary for you to be
> > a project admin to mark something -- if you know that you're currently
> > using a resource and want to keep using it, go ahead and mark it
> > accordingly.  If you /are/ a project admin, please take a moment to
> > mark which VMs are or aren't used in your projects.
> >
> > When December arrives, I will shut down and begin the process of
> > reclaiming resources from unused projects.
> >
> > If you think you use a VPS project but aren't sure which, I encourage
> > you to poke around on https://tools.wmflabs.org/openstack-browser/ to
> > see what looks familiar.  Worst case, just email
> > cl...@lists.wikimedia.org with a description of your use case and
> > we'll sort it out there.
> >
> > Exclusive toolforge users are free to ignore this task.
> >
> > Thank you!
> >
> > -Andrew and WMCS team
>
>
>
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Test Install of MediaWIki for Experimentation

2019-11-21 Thread Egbe Eugene
Thanks very much Zoran.

On Thu, 21 Nov 2019 at 22:14 Zoran Dori  wrote:

> Hi,
> there is https://test.wikipedia.org https://test2.wikipedia.org
>
> If you want to install it on your own, see
> https://www.mediawiki.org/wiki/Manual:Installation_guide
>
> Best regards,
> Zoran.
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Test Install of MediaWIki for Experimentation

2019-11-21 Thread Egbe Eugene
Hi All,

is there a test version of MediaWiki which is open to developers such as
test commons and the rest?

Thanks
Eugene
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Getting Error When Trying to Save Changes to Page Using Visual Editor

2019-11-04 Thread Egbe Eugene
Hi All,

After installing the VisualEditor extension and trying to edit pages I get
an error message saying 'Error contacting the Parsoid/RESTBase server:
(curl error: 7) Couldn't connect to server'

Is there anything I am missing in the configuration?

--
Eugene
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Issues with Cross-Origin Resource Sharing (CORS) JQuery Request

2019-05-06 Thread Egbe Eugene
Hello All,

After looking at [1]Manual:CORS and trying to perform a request with JQuery
from an external application, I still get the error message saying "Request
from origin has been blocked by CORS policy: No
'Access-Control-Allow-Origin' header is present on the requested resource.

This is from a simple GET request to get imageinfo from Commons.

Please any hints?
Eugene233

[1] https://www.mediawiki.org/wiki/Manual:CORS#Using_jQuery_methods
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] mwoauth.errors.OAuthException in Flask

2019-04-09 Thread Egbe Eugene
Hello All,

i am not sure this is the right channel to send this. Nevertheless, I am
trying to login using OAuth from a flask application and I am getting an
error which says

*MediaWiki response lacks token information: {b'Consumer is owner-only, https://www.mediawiki.org/wiki/Help:OAuth/Errors#E010
">E010']}*

I am not sure why i got no response token. Please i need some help on this.

Thanks.

___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Looking for a mentor with experience in building tools for Wikimedia

2019-03-05 Thread Egbe Eugene
Hi,
Thanks for the clarifications Andre. This was just to get interested folks
who were experienced in developing tools on Toolforge using WM technologies
which are e already have.

Eugene

On Tue, 5 Mar 2019 at 10:22 Andre Klapper  wrote:

> Hi,
>
> On Mon, 2019-03-04 at 13:07 +0100, Egbe Eugene wrote:
> > In view of building a tool which will help users contribute to add
> > structured data on WM Commons, there's need for someone with experience
> to
> > supervise in the development and testing of this tool.
>
> Could you please be way more specific?
>
> Does "tool" mean something to be hosted on Toolforge?
> Does some source code already exist? Where to find it?
> If no source code exists, where to find more info on that tool/idea?
> What does "supervise" mean? One time, or for years to come?
> What does "there's need" mean? By who?
>
> andre
> --
> Andre Klapper | Bugwrangler / Developer Advocate
> https://blogs.gnome.org/aklapper/
>
>
>
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Looking for a mentor with experience in building tools for Wikimedia

2019-03-04 Thread Egbe Eugene
Hi All,
In view of building a tool which will help users contribute to add
structured data on WM Commons, there's need for someone with experience to
supervise in the development and testing of this tool.

Please feel free to hit me up if you have any further questions.

Kind regards
Eugene233
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Thank you Tuesday

2018-12-06 Thread Egbe Eugene
I know it's actually late, but I will like to give special thanks to a
couple of awesome guys who have taken their time out to collaborate with me.

-. Derrick N. Alangi for taking out time to direct me to whom I can talk to
regarding the projects I am working on
-. Bawolff for taking out time to go through the code base and sorting out
issues to fix in T201492 and also reviewing the code for the FormWizard
Extension.
-. Andre__ helping out with some more experienced tasks mentoring and
sharing ideas
-. Ebe123 for the experience put in for mentoring GCI tasks.
-. Kunal mehta for some good suggestions around my work on MW.

and anyone with whom I have collaborated with.

Best Regards
Eugene233

On Thu, Dec 6, 2018 at 8:59 AM Kunal Mehta  wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA512
>
> Hi,
>
> On 12/4/18 7:55 AM, MA wrote:
> > It's Tuesday (my timezone at least) and this week I'd like to thank
> > the following people for their work and assistance:
>
> Sorry for being a day late, here's my thanks:
>
> * BPirkle and Reedy for moving forwards with getting MediaWiki to use
> Guzzle (something that was proposed back in 2013).
> * All the participants of T165189 for their constructive comments on
> how to improve a not-exactly-perfect patch to something much better.
> * Joe for his work on benchmarking PHP 7.2 vs HHVM.
> * Yaron for putting together some fantastic episodes on the "Between
> the Brackets" podcast recently.
>
> - -- Legoktm
> -BEGIN PGP SIGNATURE-
>
> iQIzBAEBCgAdFiEE+h6fmkHn9DUCyl1jUvyOe+23/KIFAlwI1r8ACgkQUvyOe+23
> /KI0Nw/+JD7aWHogn/8zveQGqSUffkDtlwGjYCkjkcPOBzpkTQJXcpKOrih9i3em
> DBUpL1ztGQLtRy7jiwm9YP8spmUWJDy8ELknwno5Xkb4qlh9ZtF4n9BKB1UW93ED
> 8dWbXk6Vte8bVwKDh2P7QAQWIBNW1z0qrrxRB6HOZglOyVov/uX01t7194jw1swM
> DvH2nxxZNlB35nNsoE9ATuX0rXwHiMRV33is5nJRG84fAKlpeJmeOwrm8HGHEhba
> tGx9GpfFaTySNIOWEZZ3oaV92JQKDHbE6Rp25ev/zZqOO9YjrbwsHuoGnKrx4b83
> bF9dvBDc1q5S+1kNO1LI+4fDPjp3PB6fmlQujXIrtfN1J9NdPHNmx3ap7XFsITfp
> sxu70l40aQnTyPjy8N82wQ8RPwc/eT1N01OHykl1j4tG5n1z2fp1xocYBZVwB/fU
> SuAvWsYhrLqfufq+OCw8Roz/TKZx4xmMwtqiQyLKeHiJrbNrUKh0Ox9EwVl+nPpZ
> 3bU/LRS0i+Nhapr/IS/CkppA4Fk0/+n4kb4E32ysTvtJmuAYrsKfLqXajCUj8iFL
> KZ7uE2/S1/sfNxFPLNzcSe7lmjVFm2T/d+orh3a2hqsOddSG7hAsKBPuit3LyfFr
> E0Ff3aK5xPi4XKPGBLshOJ7LnNWcYPiE1y+QDCOaYv4uO7bdLNU=
> =yVzC
> -END PGP SIGNATURE-
>
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] introduction

2018-08-16 Thread Egbe Eugene
I would recommend you start with the AWMD program.

https://www.mediawikiorg/wiki/Africa_Wikimedia_Developers_Project

This should be a good place where you will meet folks closest to you who
can help.


On Thu, 16 Aug 2018 at 12:25 Jack Gleeson  wrote:

> Hello Awah Nadege Tayebatu!
>
> I would recommend that you look here to get started
> https://www.mediawiki.org/wiki/How_to_become_a_MediaWiki_hacker
>
> Jack
>
> On 16 August 2018 at 12:09, Nadege Awah  wrote:
>
> >  Dear sir/madame;
> >
> > I am Awah Nadege Tayebatu, female and a Cameroonian. I am an Applied
> > Geology student of the University of Buea, Cameroon. I will love to
> > contribute code to MediaWiki and so will appreciate some guide on how to
> > start contributing and some learning  resources i can use as a beginner.
> >
> >   Thank you.
> > ___
> > Wikitech-l mailing list
> > Wikitech-l@lists.wikimedia.org
> > https://lists.wikimedia.org/mailman/listinfo/wikitech-l
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Request for Mentorship for Gsoc project

2017-03-23 Thread Egbe Eugene
Hi All.

while browsing the list of possible projects and i stepped on the project
titled [1] Editor-focused dashboard gadget. I was requested by the
co-mentor of the project to look for someone who may likely opt to act as
primary mentor for the project. So please if you are willing to help me as
the mentor of this project it will be highly appreciated.

Thanks.

[1] https://phabricator.wikimedia.org/T91655
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Re: [Wikitech-l] Introduction

2017-03-19 Thread Egbe Eugene
Thanks for the warm welcome into the community *All*

I wish to express my desire to participate in this year's summer of code as
i know it is the most rapid way ( apart from the hackathons) to hack the
Foundation projects. For someone as new to the foundation as i am, are
there any projects which could be suggested for me to quickly get about and
straight to work.

Thanks very much
Egbe

On Wed, Mar 8, 2017 at 8:55 AM, Jan Dittrich 
wrote:

> Hi Egbe,
>
> Great to have you on board!
>
> Don’t hesitate to poke people if you have trouble finding or understanding
> documentation, we may be already used to its quirks :-)
>
> Jan
>
>
> --
> Jan Dittrich
> UX Design/ User Research
>
> Wikimedia Deutschland e.V. | Tempelhofer Ufer 23-24 | 10963 Berlin
> Phone: +49 (0)30 219 158 26-0
> http://wikimedia.de
>
> Imagine a world, in which every single human being can freely share in the
> sum of all knowledge. That‘s our commitment.
>
> Wikimedia Deutschland - Gesellschaft zur Förderung Freien Wissens e. V.
> Eingetragen im Vereinsregister des Amtsgerichts Berlin-Charlottenburg unter
> der Nummer 23855 B. Als gemeinnützig anerkannt durch das Finanzamt für
> Körperschaften I Berlin, Steuernummer 27/029/42207.
> ___
> Wikitech-l mailing list
> Wikitech-l@lists.wikimedia.org
> https://lists.wikimedia.org/mailman/listinfo/wikitech-l
>
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

[Wikitech-l] Introduction

2017-03-07 Thread Egbe Eugene
Hi all,

I am Egbe Eugene. I come from Cameroon and i am quite new to the movement
as a developer. My thought towards contributing to the community is driven
by the impact which the foundation could bring to my country and Africa and
also what i will do in order that the movement be heard around the ends of
my country.

I will also wish to enhance my engineering skills while contributing to the
movement by working on the foundation's projects.

Hope to get more help to get started soonest.

Thanks
EEA
___
Wikitech-l mailing list
Wikitech-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikitech-l