[MediaWiki-l] Re: Error: Call to undefined method WikiPage::doEditContent() in runJob.php for pages Imported with ImportCSV for MediaWiki 1.39.5, SemanticMedia 4.1.3

2024-02-27 Thread Yaron Koren
Hi, This actually sounds like an issue with the Data Transfer extension. What version of Data Transfer are you running? On Tue, Feb 27, 2024 at 3:48 PM wrote: > I'm looking for help getting Semantic Mediawiki ImportData to work in > MediaWiki 1.39.5, SemanticMedia 4.1.3 > > My CSV job starts

[MediaWiki-l] New version of Working with MediaWiki out

2022-11-28 Thread Yaron Koren
Hi everyone, I'm pleased to announce that a new version of my MediaWiki reference book, "Working with MediaWiki" is now out. This is the fifth version of the book: it first came out in 2012, and I have tried to update it every two or three years, because after that point a MediaWiki book starts

[MediaWiki-l] New episode of Between the Brackets: Adam Baso and Julia Kieserman

2022-07-06 Thread Yaron Koren
Hi, I used to announce every new episode of my MediaWiki podcast here, but I stopped doing it about a year ago. Maybe I'll start again - but I thought the latest episode was especially noteworthy, because it's with two of the developers of Abstract Wikipedia (Adam Baso and Julia Kieserman), an

[MediaWiki-l] Recent episodes of Between the Brackets: Bill Pirkle, Ziko van Dijk, etc.

2021-10-22 Thread Yaron Koren
Hi, I host a podcast, "Between the Brackets", where I talk to notable MediaWiki developers, administrators and consultants. It looks like I last posted to this mailing list about it in August - since then four new episodes have come out. Here they are: Igor Absorto, a freelance MediaWiki

[MediaWiki-l] Re: Subject: [Cargo] Row in table does not show up on searches or most table views

2021-09-29 Thread Yaron Koren
Hi, The fact that you have "Manufacturer" as the only allowed value for the "Manufacturer" field seems incorrect, although I don't know if that's what is causing the issue. Beyond that, I would make sure that you're using the latest version of Cargo (3.0) - there have been various bugs previously

[MediaWiki-l] Re: Subject: [Cargo] Row in table does not show up on searches or most table views

2021-09-29 Thread Yaron Koren
; how to correct the problem since I just entered the data normally via the > form. What would cause this? > > -david > > On Wed, Sep 29, 2021 at 12:52 AM Yaron Koren wrote: > >> Hi David, >> >> Sorry for the long delay. Unfortunately, attached files will g

[MediaWiki-l] Re: Subject: [Cargo] Row in table does not show up on searches or most table views

2021-09-28 Thread Yaron Koren
Hi David, Sorry for the long delay. Unfortunately, attached files will get filtered out, so I can't see the image. I'm guessing, though, that it's a screenshot of Page Forms' Special:MultiPageEdit page. Is that correct? If so, note that that page actually edits template calls, not Cargo table

[MediaWiki-l] Re: [Cargo] inverse relationships and property domains?

2021-09-05 Thread Yaron Koren
Hi David, You shouldn't be storing inverse relationships (like "ComposedOf") at all - rather, that information should get directly queried whenever you want to display it. And the variable to use, when you want to display a page's name, is {{PAGENAME}} - so, in the template, you could add a query

[MediaWiki-l] Re: [cargo] can't find table with cargo_query

2021-09-02 Thread Yaron Koren
Hi David, My guess is that you haven't created the Cargo table yet - that needs to be done as a separate step. Here is how to do it, if you don't know how: https://www.mediawiki.org/wiki/Extension:Cargo/Storing_data#Creating_or_recreating_a_table -Yaron On Thu, Sep 2, 2021 at 2:17 PM David

[MediaWiki-l] Re: [cargo] autocomplete on pages displayed as links

2021-09-01 Thread Yaron Koren
that draws from the current contents of form pulldown > menus, etc? > > On Wed, Sep 1, 2021 at 9:09 PM Yaron Koren wrote: > >> Hi David, >> >> I believe this is two separate issues. The first is, I believe, due to a >> bug that existed with #template_display, whe

[MediaWiki-l] Re: [cargo] autocomplete on pages displayed as links

2021-09-01 Thread Yaron Koren
Hi David, I believe this is two separate issues. The first is, I believe, due to a bug that existed with #template_display, where it didn't display links for fields of type "Page" that also have a list of allowed values defined for them. I just checked in a fix for this, so if you get the latest

[MediaWiki-l] Re: [Cargo] typed links and tuples?

2021-08-26 Thread Yaron Koren
Hi David, Right, Cargo is stricter than Semantic MediaWiki about entering data: you can't come up with your own property names and their values. I think that’s a plus: the data structure, set of allowed values, etc. should be consistent across all pages, not subject to arbitrary changes on

[MediaWiki-l] Re: [Cargo] editing class

2021-08-23 Thread Yaron Koren
Hi David, This is really a Page Forms, not Cargo, question, but yes, you do need to modify both the template and form pages whenever you modify the data structure. I'm working on simplifying form pages, with the eventual goal of not requiring a form definition at all and just getting everything

[MediaWiki-l] Re: Replacing jQuery's hasClass() in MW extension JS code

2021-08-17 Thread Yaron Koren
l.) -Yaron On Sat, Aug 14, 2021 at 8:34 AM James Forrester wrote: > [Moving to wikitech-l; mediawiki-l is a little off-topic.] > > On Mon, 26 Jul 2021 at 21:27, Yaron Koren wrote: > >> Hi, >> >> I've been trying to get rid of the ESLint warnings for the JavaScript

[MediaWiki-l] New episodes of Between the Brackets: Ilana Fried, Peter Meyer, Daisy Chen

2021-08-03 Thread Yaron Koren
Hi everyone, A new episode is out of the MediaWiki podcast "Between the Brackets", and I somehow neglected to send an email about the previous two, so let me happily announce all three now. First, about a month ago was the episode with Ilana Fried, who is the product manager for the Campaigns

[MediaWiki-l] Replacing jQuery's hasClass() in MW extension JS code

2021-07-26 Thread Yaron Koren
Hi, I've been trying to get rid of the ESLint warnings for the JavaScript code in some of my extensions, when they go through Jenkins validation. One warning that appears fairly often is this one: Where possible, maintain application state in JS to avoid slower DOM queries

[MediaWiki-l] Re: Bug report: Extension DataTransfer

2021-06-25 Thread Yaron Koren
Hi Otheus, Sorry for not responding before. I'm the main author of Data Transfer, as you probably know. I haven't heard of either of those problems happening before, I don't think: either the 500 error or that PHP notice. I'm guessing that the two are related, and my further guess is that the

[MediaWiki-l] Use of HTML "required" parameter in OOUI

2021-06-15 Thread Yaron Koren
Hi, I recently discovered that the OOUI library, when an input is declared as "required" (i.e., mandatory), accomplishes this by adding the "required" parameter to the input, which is an HTML parameter that's part of HTML5. When "required" is specified, the browser checks the input when the form

[MediaWiki-l] New episodes of Between the Brackets: Robert Heine, Nischay Nahata

2021-06-09 Thread Yaron Koren
Hi, There is a new episode of the MediaWiki podcast "Between the Brackets", and I forgot to send out a separate announcement for Robert Heine from two weeks ago, so I'm happy to announce both of their episodes now. First, the most recent episode is an interview with Nischay Nahata, who is the

[MediaWiki-l] New episode of Between the Brackets: Jon Robson

2021-05-20 Thread Yaron Koren
Hi everyone, The episode actually came out last week, but I forgot to send an email about it before. Anyway, the latest episode of the MediaWiki podcast "Between the Brackets" features an interview with Jon Robson, a Wikimedia Foundation developer who is heavily involved in, among other things,

[MediaWiki-l] New episode of Between the Brackets: Lars Dalgaard

2021-04-29 Thread Yaron Koren
Hi everyone, A new episode of the MediaWiki podcast "Between the Brackets" has been published: this one is an interview with Lars Dalgaard, who is the main administrator of the wiki for the Ballerup Municipality, near Copenhagen, Denmark. We talked about the benefits of MediaWiki, the current

[MediaWiki-l] New episode of Between the Brackets: Liam Wyatt

2021-04-14 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" is out - this one is an interview with Liam Wyatt, also known as Wittylama, a longtime Wikimedian who is currently the community liaison for the new Wikimedia Enterprise API project:

[MediaWiki-l] New episode of Between the Brackets: Adam Shorland

2021-02-18 Thread Yaron Koren
Hi, There's a new episode of the MediaWiki podcast "Between the Brackets": an interview with Adam Shorland (Addshore), the tech lead for Wikidata and Wikibase at Wikimedia Deutschland. You can listen to the interview here: https://betweenthebrackets.libsyn.com/episode-80-adam-shorland -Yaron

Re: [MediaWiki-l] Getting template arguments from a parser function?

2021-02-15 Thread Yaron Koren
; time that's not something to worry about, but it makes a big difference for > control structures like #if. > > > I probably should have said Parser::SFH_OBJECT_ARGS instead of just > SFH_OBJECT_ARGS. I think the non class prefixed constant is deprecated. > > -- > Brian > >

Re: [MediaWiki-l] Getting template arguments from a parser function?

2021-02-15 Thread Yaron Koren
; This new form has a PPFrame object as a second arg. You should be able to > call $frame->getParent() on it which should give you what you need. > > -- > Brian > > On Monday, February 15, 2021, Yaron Koren wrote: > >> Hi, >> >> When you have a pars

[MediaWiki-l] Getting template arguments from a parser function?

2021-02-15 Thread Yaron Koren
Hi, When you have a parser function called from within a template, you can of course pass in to it any template parameters, like: {{#flagicon:{{{Flag image|}}} }} (This is a silly example, but bear with me.) I would like to instead be able to call the parser function without the parameter, like

[MediaWiki-l] New episode of Between the Brackets: Kate Chapman

2021-01-21 Thread Yaron Koren
Hello, A new episode of the MediaWiki podcast "Between the Brackets" has been released: this one is an interview with Kate Chapman, Director of Architecture at the Wikimedia Foundation. You can watch the episode here: https://www.youtube.com/watch?v=We9kFdhXCAA ...or, you can listen to the

[MediaWiki-l] Two new events for 2021: EMWCon (online), EMW Hackathon (in-person)

2021-01-11 Thread Yaron Koren
Hi everyone, I'm excited to announce two upcoming MediaWiki-related events over the next six months or so: First is the 2021 Enterprise MediaWiki Conference, or EMWCon. Last year's was online-only, and some of us really wanted this year's to be in-person, but it didn't work out. So this year's

[MediaWiki-l] New episode of Between the Brackets: Joseph Reagle and Jackie Koerner

2020-12-09 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" is out. This one is an interview with Joseph Reagle and Jackie Koerner, the two editors of the new book "Wikipedia @ 20". It's probably the least MediaWiki-focused episode of the podcast so far, but we do talk quite a lot about

[MediaWiki-l] New episode of Between the Brackets: Larry Sanger

2020-12-01 Thread Yaron Koren
Hi, Well, it's not really new - it came out a week ago - but I forgot to post about it before. The latest episode of the MediaWiki podcast "Between the Brackets" features Larry Sanger, co-founder (although he prefers the term "ex-founder") of Wikipedia. You can listen to it here:

[MediaWiki-l] Announcing EMWCon Spring 2021 in Nashville, Tennessee

2020-11-09 Thread Yaron Koren
Hi everyone, I am very pleased to announce that the next EMWCon, or Enterprise MediaWiki Conference, will be an in-person event, to be held in Nashville, Tennessee (in the United States) next year. We don't have a date yet, but it will probably be sometime in April or May. EMWCon is an annual

[MediaWiki-l] New episode of Between the Brackets: Grant Ingersoll

2020-10-27 Thread Yaron Koren
Hi, The latest episode of the MediaWiki podcast "Between the Brackets" features an interview with Grant Ingersoll, the CTO of the Wikimedia Foundation. We talked about how Mediawiki compares to other open-source projects, innovation at the Wikimedia Foundation, and a lot of other topics. You can

[MediaWiki-l] New episode of Between the Brackets: Markus and Richard from Hallo Welt

2020-10-14 Thread Yaron Koren
Hi, There is a new episode of the MediaWiki podcast "Between the Brackets", featuring an interview with Richard Heigl and Markus Glaser, two of the founders/executives of the MediaWiki development and consulting company Hallo Welt, which is best known for producing the BlueSpice MediaWiki

[MediaWiki-l] New episode of Between the Brackets: Nikki Nikkhoui

2020-09-01 Thread Yaron Koren
Hi, The latest episode of the MediaWiki podcast Between the Brackets features an interview with Nikki Nikkhoui, who is a developer at the Wikimedia Foundation in the Platform team. You can listen to it here: https://betweenthebrackets.libsyn.com/episode-68-nikki-nikkhoui -Yaron

[MediaWiki-l] New episodes of Between the Brackets: Richard Knipel and Raimond Spekking

2020-08-12 Thread Yaron Koren
Hi, Well, not really new, since one came out a week ago and the other came out three weeks ago, but I forgot to announce either of them at the time. So: two new episodes of the MediaWiki podcast Between the Brackets have come out in the last month. The first, from July, is with Richard Knipel,

[MediaWiki-l] New MediaWiki extension: Page Exchange

2020-06-29 Thread Yaron Koren
Hi everyone, I'm pleased to announce a new extension: Page Exchange (PX). This extension serves as a sort of "package manager" (like yum or apt, if you've heard of those), but where the "packages" are collections of wiki pages and files (such as images). Packages are defined in JSON files, so

[MediaWiki-l] New episode of Between the Brackets: Tom O'Neill

2020-06-24 Thread Yaron Koren
Hi everyone, There's a new episode out of the MediaWiki podcast "Between the Brackets": this one is an interview with Tom O'Neill, who runs the U.S. Department of Energy's internal wiki, Powerpedia. He also runs "MediaWiki in Government", the informal group/mailing list for MediaWiki users and

[MediaWiki-l] New episode of Between the Brackets: Sarah Rodlund and Alexandra Paskulin

2020-06-10 Thread Yaron Koren
Hi, There's a new episode out of the MediaWiki podcast "Between the Brackets"; this one is a (very interesting) discussion with Sarah Rodlund and Alexandra Paskulin, both of whom are technical writers for the Wikimedia Foundation. You can listen to the episode here:

[MediaWiki-l] New version of "Working with MediaWiki" released

2020-06-03 Thread Yaron Koren
Hi everyone, I'm excited to announce that a new version of my MediaWiki reference book, "Working with MediaWiki", has just been released. To briefly recap: the first edition came out in 2012, and then an updated version in 2014; then the 2nd edition came out in 2017, and this is an updated

[MediaWiki-l] New episode of Between the Brackets: Will Kavanagh

2020-05-26 Thread Yaron Koren
Hi, A new episode is out of the MediaWiki podcast Between the Brackets: this one is an interview with Will Kavanagh, who is the Global Community Lead for Fandom, the website previously known as Wikia. We talked about the current ongoing project to update Fandom's wikis from MediaWiki 1.19 to

[MediaWiki-l] New episode of Between the Brackets: Amir Aharoni

2020-05-12 Thread Yaron Koren
Hi, There's a new episode of the MediaWiki podcast Between the Brackets: this one is an interview with Amir Aharoni, who is a strategist in the Language team of the Wikimedia Foundation. You can listen to the episode here: http://betweenthebrackets.libsyn.com/episode-60-amir-aharoni -Yaron

[MediaWiki-l] New episode of "Between the Brackets": Duncan Crane

2020-04-29 Thread Yaron Koren
Hi, There's a new episode out of the MediaWiki podcast Between the Brackets: this one is an interview with Duncan Crane, a MediaWiki administrator who is also the main author of the TinyMCE extension. You can listen to the episode here:

[MediaWiki-l] New episode of Between the Brackets: Evita Hollis

2020-03-31 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" is out: this one features Evita Hollis, who runs the GE Wiki at General Electric - possibly the single largest MediaWiki installation within a company (I could be wrong about that, though).You can listen to our entire conversation

[MediaWiki-l] New episode of Between the Brackets: Ad Strack van Schijndel

2020-03-18 Thread Yaron Koren
Hi everyone, A new episode of the MediaWiki podcast "Between the Brackets" was released yesterday: an interview with Ad Strack van Schijndel, the founder of the Dutch MediaWiki consulting company Wikibase Solutions (which, despite its name, does not use Wikibase - though they do use the Semantic

Re: [MediaWiki-l] [Cargo] How to avoid duplicate records?

2020-03-11 Thread Yaron Koren
gt; I'm sorry if I explained my issue poorly. If you have a better > solution/work-arround, please let me know. > > -Brian > > On 2020-03-08 21:47, Yaron Koren wrote: > > Hi Brian, > > > > There are some strange aspects to those calls: the #cargo_store call > should >

Re: [MediaWiki-l] [Cargo] How to avoid duplicate records?

2020-03-08 Thread Yaron Koren
Hi Brian, There are some strange aspects to those calls: the #cargo_store call should not have a "where" parameter (you may be confusing between #cargo_store and #cargo_query). Also there's no need for a "Page_Name" field, because every Cargo table will already have an automatic "_pageName"

[MediaWiki-l] New-ish episode of Between the Brackets: Andrew Kuntz and Valerio Pelliccioni

2020-03-02 Thread Yaron Koren
Hi, In anticipation of an upcoming episode of the MediaWiki podcast "Between the Brackets", I realized that I forgot to post here anything about the previous episode: an interview with Andrew Kuntz and Valerio Pelliccioni, who together run the wiki Traditional Tune Archive. You can listen to the

[MediaWiki-l] New episode of Between the Brackets: Trevor Parscal

2020-02-05 Thread Yaron Koren
Hi, Yesterday a new episode of the MediaWiki podcast "Between the Brackets" was released: an interview with Trevor Parscal, whom probably many of you know as a former Wikimedia Foundation developer, and who now works for wikiHow. This was the longest episode yet (2 hours), because there was a lot

Re: [MediaWiki-l] Using wikieditor with Extension:PageForms.

2020-01-23 Thread Yaron Koren
Hi Valerio, I assume it's because the textareas within Page Forms forms don't have the ID 'wpTextbox1'. Could you replace '#wpTextbox1' in the JavaScript with just 'textarea', or would that mess up textareas that are not supposed to get WikiEditor? If 'textarea' won't work, something like

[MediaWiki-l] New episode of Between the Brackets: Richard Evans

2020-01-08 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" was released yesterday: my interview with Richard Evans, an electrical engineer at NASA who (among other things) maintains wikis for them, and who is also running the upcoming EMWCon in Sandusky, Ohio. You can listen to the podcast

Re: [MediaWiki-l] EMWCon Spring 2020 Announcement + Call for Presentations

2019-12-31 Thread Yaron Koren
Hi Brian, For the hotel: there's no hard deadline by which hotel rooms have to be reserved, though earlier is better. We currently have a block of rooms assigned to us - if the demand exceeds that, then we can get more, unless they run out. Which apparently is more likely to happen on the Friday

[MediaWiki-l] New episode of Between the Brackets: Holiday special!

2019-12-24 Thread Yaron Koren
Hi everyone, A new episode of the MediaWiki podcast Between the Brackets has been released. This one was fun to put together: it's a 30-minute "holiday special", with some music and surprise guests. You can listen to the episode here:

[MediaWiki-l] New episode of Between the Brackets: Gergo Tisza (plus, Jan Hoeffler)

2019-12-10 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast Between the Brackets has been released: this one is an interview with Gergő Tisza, also known as user "Tgr", a developer at the Wikimedia Foundation. You can listen to the episode here: http://betweenthebrackets.libsyn.com/episode-49-gerg-tisza Also, I

Re: [MediaWiki-l] Page Forms multiple-instance coordinate entry

2019-11-18 Thread Yaron Koren
Hi Billy, Sorry about that problem. You might be the first person who's tried having map inputs within a multiple-instance template... at least, I haven't heard of someone doing that before, I don't think. Anyway, you did uncover a real bug. I just checked in a fix for this, so if you get the

Re: [MediaWiki-l] [Cargo] table format for _pageData and _fileData

2019-11-08 Thread Yaron Koren
Hi Jan, Oh, that's too bad. I didn't know that MyISAM doesn't support database clustering. (You might be the first person to run Cargo on a clustered database - it's good to know that it seems to be working, other than this one problem.) You're right that the MyISAM requirement is only for old

[MediaWiki-l] New episode of Between the Brackets: Clément Flipo

2019-10-30 Thread Yaron Koren
Hi, There's a new episode out of my MediaWiki podcast, "Between the Brackets". In this one I talk to Clément Flipo, who started his MediaWiki career co-creating the tutorial site Wikifab, and now co-runs the consulting company Dokit, which creates tutorial sites for many others. You can listen to

[MediaWiki-l] New episode of Between the Brackets: Felipe Schenone (Sophivorus)

2019-10-04 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" was released on Tuesday: this one is a discussion with MediaWiki developer and consultant Felipe Schenone, better known by his username Sophivorus. You can listen to the episode here:

[MediaWiki-l] Between the Brackets episodes: Derk-Jan Hartman and Olga Vasileva

2019-09-17 Thread Yaron Koren
Hi, There's a new episode of the MediaWiki podcast out today - and also I forgot to announce on this list the previous episode when it came out. So, the new episode is an interview of Olga Vasileva, a project manager in the Readers Web Team at the Wikimedia Foundation:

[MediaWiki-l] New episode of Between the Brackets: Lucas Billett

2019-08-20 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released: this one is a conversation with Lucas Billett, who has managed the wiki at his company, Ingredion, since 2009. You can hear the episode here: http://betweenthebrackets.libsyn.com/episode-41-lucas-billett -Yaron

[MediaWiki-l] New episode of "Between the Brackets": Yotam HaCohen

2019-08-06 Thread Yaron Koren
Hi, There's a new episode of the MediaWiki podcast "Between the Brackets": this one is an interview with Yotam HaCohen, who runs Israel's foremost (and maybe only) MediaWiki-based consulting company, OpenFox. You can listen to the episode here:

Re: [MediaWiki-l] New episode of Between the Brackets: Bryan Davis

2019-07-16 Thread Yaron Koren
my wishlist. > > Also have an interview of https://meta.wikimedia.org/wiki/User:Tgr_(WMF) > > Regards, > *Jnanaranjan Sahu (Gyana)* > *Bhubaneswar* > *jsahu.me <http://jsahu.me>* > > > On Thu, Jul 11, 2019 at 7:08 AM Yaron Koren wrote: > > > Hi, > > &g

[MediaWiki-l] New episode of Between the Brackets: Bryan Davis

2019-07-10 Thread Yaron Koren
Hi, This announcement is about 24 hours late, but: a new episode of the MediaWiki podcast came out yesterday, featuring an interview with Bryan Davis, who is head of the Cloud Services team at the Wikimedia Foundation. You can listen to the interview here:

[MediaWiki-l] New episode of Between the Brackets: Airy Magnien

2019-06-25 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released: this one is an interview with Airy Mangien, of the International Union of Railways, who is managing the creation of the MediaWiki-based site Ontorail, which aims to serve as a global ontology and dictionary for

[MediaWiki-l] New episode of Between the Brackets: Derick Alangi

2019-06-11 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released: an interview with semi-freelance MediaWiki developer Derick Alangi. You can listen to the episode here: http://betweenthebrackets.libsyn.com/episode-36-derick-alangi -Yaron

Re: [MediaWiki-l] [non-nasa source] Re: [EXTERNAL] Re: [Semediawiki-user] interior maps extension

2019-06-10 Thread Yaron Koren
AM Evans, Richard K. (GRC-H000) < richard.k.ev...@nasa.gov> wrote: > *derp* questions #1 and "#2"... > > -Original Message- > From: MediaWiki-l [mailto:mediawiki-l-boun...@lists.wikimedia.org] On > Behalf Of Evans, Richard K. (GRC-H000) > Sent: Monday, June

Re: [MediaWiki-l] [Semediawiki-user] interior maps extension

2019-06-09 Thread Yaron Koren
stimate your contribution to the > enterprise world. It’s amazing. You really have done and continue to do > great work. > > > > -- > On: 07 June 2019 18:03, "Yaron Koren" wrote: > > Hi Rich, > > It should be noted that the

Re: [MediaWiki-l] [Semediawiki-user] interior maps extension

2019-06-07 Thread Yaron Koren
Hi Rich, It should be noted that the use of images as maps comprises two parts: entering the data, and viewing the data. I don't believe either one is currently possible, though I could be wrong. For data entry, I think the easiest way to add support for it would be to modify either the

[MediaWiki-l] New episode of "Between the Brackets": Alex Tanchoco

2019-05-29 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast Between the Brackets has been published (well, it was published yesterday): an interview with Alex Tanchoco, who runs the internal wiki at Memorial Sloan Kettering Cancer Center in New York City. You can listen to the episode here:

Re: [MediaWiki-l] Referata MediaWiki hosting service dead?

2019-05-19 Thread Yaron Koren
s display > once the wiki is up again and hand out some blocks/perform some deletions. > -- Amanda > > > On Sunday, May 5, 2019, 8:05 PM, Yaron Koren wrote: > > Hi Amanda, > Sorry about that. Yes, Referata is currently hacked, and has been hacked > repeatedly by someone in t

[MediaWiki-l] New episode of Between the Brackets: Andre Klapper

2019-05-14 Thread Yaron Koren
Hi, There is a new episode of the MediaWiki podcast "Between the Brackets" - this one is my interview of Andre Klapper, bugwrangler and developer advocate at the Wikimedia Foundation. You can listen to it here: http://betweenthebrackets.libsyn.com/episode-34-andre-klapper -Yaron

Re: [MediaWiki-l] Introducing: Professional.Wiki

2019-05-08 Thread Yaron Koren
Hi, At the risk of starting an unnecessary argument, let me say that I think this kind of email is fine. Paid support is a form of help/support, so even though the mailing list description doesn't specifically list consulting as one of the allowed topics, it seems to me that it fits within the

Re: [MediaWiki-l] Referata MediaWiki hosting service dead?

2019-05-05 Thread Yaron Koren
ng, as no site hosted under Referata's domain name, nor the main > "meta" website itself is accessible. CC'ing Yaron Koren who I believe is > the lead sysadmin of the service. If we have indeed lost another free > MediaWiki host, I will definitely say that it is a major setback and h

Re: [MediaWiki-l] Advice needed for BPM flowchart support for MediaWiki

2019-05-03 Thread Yaron Koren
e. On Fri, May 3, 2019 at 3:18 PM Krabina Bernhard wrote: > Hi Yaron, > > I haven't really dealt with it, but Alexander Gesinn has I guess. > > BTW, are your aware of https://github.com/SemanticMediaWiki/Mermaid > > Cheers, > Bernhard > > ----- Am 2. Mai 2019 um 20:47

[MediaWiki-l] Advice needed for BPM flowchart support for MediaWiki

2019-05-02 Thread Yaron Koren
Hi, I am thinking seriously about creating, or at least helping to oversee the creation of, a MediaWiki extension that lets users create flowcharts for use in BPM (business process management, or business process modeling). The extension would most likely be a wrapper around bpmn-js, an open

[MediaWiki-l] New episode of Between the Brackets: John Lewis

2019-04-02 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released; this one is an interview with John Lewis, the co-founder, co-maintainer and co-developer of the popular wiki farm Miraheze: http://betweenthebrackets.libsyn.com/episode-31-john-lewis Also, I realized that I

Re: [MediaWiki-l] Adding a row of logos to the mediawiki.org

2019-03-27 Thread Yaron Koren
Hi Jan, Having the logos embedded within the skin is an interesting setup, although for mediawiki.org I think it makes sense to have the logos appear on only one page (i.e., the front page), instead of on every page. -Yaron On Tue, Mar 26, 2019 at 10:54 PM Jan Steinman wrote: > As a

[MediaWiki-l] New episode of Between the Brackets: Sam Wilson

2019-03-06 Thread Yaron Koren
Hi, There's a new episode out of the MediaWiki podcast "Between the Brackets": this one is an interview with Sam Wilson, Australian WMF developer and a longtime MediaWiki user/admin. You can listen to the episode here: http://betweenthebrackets.libsyn.com/episode-29-sam-wilson -Yaron

[MediaWiki-l] EMWCon Spring 2019: registration now open

2019-02-20 Thread Yaron Koren
Hello everyone, Registration for the upcoming EMWCon (Enterprise MediaWiki Conference) is now open! To register, go here: http://emwcon2019.eventbrite.com/ The cost is $400 if your company or organization is paying for your attendance, and $100 otherwise. For that price you get two full days of

[MediaWiki-l] New episode of Between the Brackets: Barry Grenon

2019-02-19 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been published: this one is an interview with Barry Grenon, who is Senior Manager of the Information Experience team at Genesys. We talked about the use of MediaWiki for documentation and technical communication, which has what

[MediaWiki-l] New episode of Between the Brackets: Megan Cutrofello

2019-01-22 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released: this one features an interview with Megan Cutrofello, AKA River, who runs various large esports wikis, most notably Leaguepedia, which is for the video game League of Legends. You can listen to the episode here:

[MediaWiki-l] New episode of Between the Brackets: Denny Vrandečić

2019-01-08 Thread Yaron Koren
Hi, The latest episode of the MediaWiki podcast Between the Brackets has been released, featuring an interview with Denny Vrandečić, the co-creator of Semantic MediaWiki and creator of Wikidata: http://betweenthebrackets.libsyn.com/episode-25-denny-vrandei -Yaron

[MediaWiki-l] New episode of "Between the Brackets": Daniel Robbins

2018-12-11 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" is up - this one is a talk with Daniel Robbins, best known as the creator of Gentoo Linux and Funtoo Linux, but also a longtime MediaWiki enthusiast and consultant. You can hear the episode here:

[MediaWiki-l] Announcing: EMWCon Spring 2019, April 3-5 in Daly City, CA

2018-12-03 Thread Yaron Koren
Hi everyone, A few weeks ago I sent out a tentative announcement, but now it's more official: the next EMWCon, or Enterprise MediaWiki Conference, will be taking place five months from now, on April 3-5, 2019, in Daly City, right near San Francisco. For more information, and to indicate that

[MediaWiki-l] New episode of "Between the Brackets": Corey Floyd

2018-11-27 Thread Yaron Koren
Hello, Episode #22 of the MediaWiki podcast Between the Brackets has been released; this one is an interview with Corey Floyd, who is Director of Engineering of the Core Platform team of the Wikimedia Foundation. We talked about the recent Wikimedia Technical Conference, plans for the future, and

[MediaWiki-l] Tentative time/place for next EMWCon: April 3-5, 2019 in San Francisco

2018-11-15 Thread Yaron Koren
Hi, We now have a tentative date and location for EMWCon Spring 2019, or the Enterprise MediaWiki Conference: per the subject line, the plan is to have it on Wednesday to Friday, April 3-5, 2019, in San Francisco, California - or, more precisely, in neighboring Daly City, CA, at the Genesys

[MediaWiki-l] New episode of "Between the Brackets": Håkon Wium Lie

2018-11-13 Thread Yaron Koren
Hi, There's a new episode out of the MediaWiki podcast Between the Brackets, this one featuring a talk with Håkon Wium Lie. Some of you may recognize the name, because he is, among other things, the inventor of CSS. I talked to him because he is currently one of the administrators, and the public

[MediaWiki-l] New episode of Between the Brackets: "BTB Digest"

2018-10-30 Thread Yaron Koren
Hi, The latest episode of the MediaWiki podcast Between the Brackets has been released. This one just contains some highlights from previous episodes, so you can get a condensed version of five recent episodes (featuring Stas Malyshev, Remco De Boer, Dustin Phillips, Nikhil Kumar & Yashdeep

[MediaWiki-l] New episode of Between the Brackets: Pau Giner

2018-10-16 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast Between the Brackets has been released - this one features an interview with Pau Giner, who works for the Wikimedia Foundation as a user experience (UX) designer. You can listen to it here: http://betweenthebrackets.libsyn.com/episode-19-pau-giner

[MediaWiki-l] New episode of Between the Brackets: Sabine Melnicki

2018-10-02 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released; this one features a conversation with freelance MediaWiki consultant Sabine Melnicki. You can listen to the episode here: http://betweenthebrackets.libsyn.com/episode-18-sabine-melnicki -Yaron

[MediaWiki-l] New episode of "Between the Brackets": Nikhil Kumar and Yashdeep Thorat

2018-09-04 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released. In this one, I talk to the two students I mentored during the recently-completed Google Summer of Code: Nikhil Kumar and Yashdeep Thorat, both college students in India. By coincidence, I believe these were also

[MediaWiki-l] New episode of "Between the Brackets": Dustin Phillips

2018-08-21 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast Between the Brackets has been released: this one is an interview with Dustin Phillips, who is the co-executive director of ICANNWiki (the organization), which runs ICANNWiki (the website), which in turn is the semi-official wiki of ICANN, the

[MediaWiki-l] New episode of Between the Brackets: "BTB Digest 2"

2018-08-07 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast Between the Brackets has been released: "BTB Digest 2", which, as you might guess from its name, is the 2nd episode of highlighted clips from previous episodes. It's only 25 minutes long, encompassing five episodes, containing (hopefully) the most

[MediaWiki-l] New "Between the Brackets" episode: Remco de Boer

2018-07-24 Thread Yaron Koren
Hi everyone, Episode #13 of the MediaWiki podcast "Between the Brackets" has been released; this one is an interview with Remco de Boer of the Dutch consulting company ArchiXL, which makes significant use of MediaWiki in its projects. You can find and listen to the episode here:

Re: [MediaWiki-l] [Wikitech-l] New extension, VEForAll, enables VisualEditor for use in other textareas

2018-07-18 Thread Yaron Koren
stalled > yet. ;-) But how probably is this probably? Thank you, > Igal > > > 2018-07-18 3:43 GMT+03:00 Yaron Koren : > > > Hi, > > > > Probably... but only on a wiki that has VEForAll installed on it, of > > course. > > > > -Yaron > > > &g

[MediaWiki-l] New extension, VEForAll, enables VisualEditor for use in other textareas

2018-07-17 Thread Yaron Koren
Hi everyone, I'm very excited to announce the release of a new MediaWiki extension: VEForAll. Its name stands for "VisualEditor For All", and it provides something that some people have been asking about for a long time - a way to incorporate the VisualEditor interface into textarea inputs other

[MediaWiki-l] New episode of "Between the Brackets": Stas Malyshev

2018-07-10 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released, featuring an interview with Wikimedia Foundation developer Stas Malyshev, who works on search in both MediaWiki and Wikidata. You can listen to the interview here:

[MediaWiki-l] New episode of Between the Brackets: Markus Krötzsch

2018-06-27 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" was released yesterday - this one an interview with Markus Krötzsch, now a CS professor, formerly the co-creator and lead developer of Semantic MediaWiki, and an important figure in the history of Wikidata. You can listen to the

[MediaWiki-l] Between the Brackets episode 10: Ben Fletcher

2018-06-12 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" is out - this time, an interview with Ben Fletcher, a systems architect who is in charge of MediaWiki at the UK Ministry of Defence. You can listen to the podcast here: http://betweenthebrackets.libsyn.com/episode-10-ben-fletcher

[MediaWiki-l] New Between the Brackets episode: Kunal Mehta

2018-05-29 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast Between the Brackets is out, this one an interview with WMF developer Kunal Mehta (also known as legoktm). You can listen to it here: http://betweenthebrackets.libsyn.com/episode-9-kunal-mehta -Yaron ___

[MediaWiki-l] New Between the Brackets episode: BTB Digest

2018-05-15 Thread Yaron Koren
Hi, A new episode of the MediaWiki podcast "Between the Brackets" has been released. This one is called "BTB Digest", and it just has highlights from the first five episodes. If you've already heard the previous episodes, there's no real new content here; but if you haven't, this may be a nice

  1   2   >