[Bug 44459] jqueryMsg should not parse plain messages as HTML

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44459

Matthew Flaschen mflasc...@wikimedia.org changed:

   What|Removed |Added

 CC||asha...@wikimedia.org,
   ||run...@gmail.com
  Component|JavaScript  |Internationalization
   Assignee|mflasc...@wikimedia.org |wikibugs-l@lists.wikimedia.
   ||org

--- Comment #10 from Matthew Flaschen mflasc...@wikimedia.org ---
It doesn't affect the current fix, but part of my comment (6) above is
incorrect.

If we want to support the curly braces but not HTML, I believe that would be
text, not plain.  From
https://www.mediawiki.org/wiki/Manual:Messages_API#Format:

wfMessage()-text(); transforms the message text (MessageCache::transform()
which transforms all '{{}}').

'plain' (which the fix is regarding) only has parameter substitution.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44571] New: addcontributions:; table name prefix leads to invalid SQL statement

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44571

   Web browser: ---
Bug ID: 44571
   Summary: addcontributions:; table name prefix leads to invalid
SQL statement
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: critical
  Priority: Unprioritized
 Component: DynamicPageList2
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: er...@eavdmeer.org
Classification: Unclassified
   Mobile Platform: ---

Using addcontributors leads to the following SQL error:

The DPL extension (version 2.01) produced a SQL statement which lead to a
Database error.
The reason may be an internal error of DPL or an error which you made,
especially when using DPL options like titleregexp.
Query text is:
SELECT DISTINCT `cdam_page`.page_namespace AS
page_namespace,`cdam_page`.page_title AS page_title,`cdam_page`.page_id AS
page_id, SUM( ABS( rc.rc_new_len - rc.rc_old_len ) ) AS contribution,
rc.rc_user_text AS contributor, `cdam_page`.page_title as sortkey FROM
`cdam_recentchanges` AS rc, `cdam_page` INNER JOIN `cdam_categorylinks` AS cl0
ON `cdam_page`.page_id=cl0.cl_from AND (cl0.cl_to='DF') INNER JOIN
`cdam_categorylinks` AS cl1 ON `cdam_page`.page_id=cl1.cl_from AND
(cl1.cl_to='Developer') WHERE 1=1 AND page.page_id=rc.rc_cur_id AND
`cdam_page`.page_is_redirect=0 GROUP BY rc.rc_cur_id ORDER BY page_title ASC
LIMIT 0, 500

Error message is:
Unknown column 'page.page_id' in 'where clause' (localhost)

The error is located in line 2136 of DPLMain.php:

$sSqlWhere   .= ' AND page.page_id=rc.rc_cur_id';

This line should be changed to:

$sSqlWhere   .= ' AND '.$sPageTable.'.page_id=rc.rc_cur_id';

The original statement refers directly to the 'page' table, which does not
exist in cases where a database prefix is used.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44459] jqueryMsg should not parse plain messages as HTML

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44459

--- Comment #11 from Michael M. listenle...@gmail.com ---
(In reply to comment #9)
 Proposed fix and tests at https://gerrit.wikimedia.org/r/#/c/47044/

As I don't have a gerrit account, I just comment here: The test with
categorytree-collapse-bullet seems useless, as the value used on en.wp doesn't
contain any critical characters. Use the default content [b−/b] instead.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44572] New: Change $wgUploadNavigationUrl for en.wikivoyage

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44572

   Web browser: ---
Bug ID: 44572
   Summary: Change $wgUploadNavigationUrl for en.wikivoyage
   Product: Wikimedia
   Version: wmf-deployment
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: Site requests
  Assignee: wikibugs-l@lists.wikimedia.org
  Reporter: at.li...@live.com.au
CC: benap...@gmail.com, dereck...@espace-win.org,
wikimedia.b...@snowolf.eu
Classification: Unclassified
   Mobile Platform: ---

Per http://en.wikivoyage.org/wiki/Pub#Upload_file, please set
$wgUploadNavigationUrl for en.wikivoyage to Wikivoyage:Upload file.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44459] jqueryMsg should not parse plain messages as HTML

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44459

--- Comment #12 from Matthew Flaschen mflasc...@wikimedia.org ---
True.  I realized that a while after I posted the change.  I will fix it later
today, though the pagetriage-del-talk-page-notify-summary covers similar
ground.

You can sign up for Gerrit/Labs at
https://labsconsole.wikimedia.org/wiki/Help:Getting_Started#Create_a_User_Account
.  It no longer requires manually asking anyone.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25349] Resource loader should allow loading messages in nonstandard ways (e.g. raw, forcontent, parsed, ...)

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25349

Matthew Flaschen mflasc...@wikimedia.org changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=43409

--- Comment #6 from Matthew Flaschen mflasc...@wikimedia.org ---
MobileFrontend is implementing a simple case (parse-only) of this in a custom
version of ResourceLoaderFileModule.php (MFResourceLoaderFileModule.php).

See https://gerrit.wikimedia.org/r/46885 and
https://bugzilla.wikimedia.org/show_bug.cgi?id=43409 .

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43409] Use ResourceLoader for message delivery

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43409

Matthew Flaschen mflasc...@wikimedia.org changed:

   What|Removed |Added

   See Also||https://bugzilla.wikimedia.
   ||org/show_bug.cgi?id=25349

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36729] Update repo on page move

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36729

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 CC||federicol...@tiscali.it

--- Comment #3 from Nemo federicol...@tiscali.it ---
(In reply to comment #2)
 Consider bug 41038 as an alternative or partial solution.

There's also the question of how to deal with redirects: currently they're
completely ignored by wikidata, as far as I understand (also for search). I
don't know if some additional partial solution may come from that.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36729] Update repo on page move

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36729

Legoktm legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

 CC||legoktm.wikipe...@gmail.com

--- Comment #4 from Legoktm legoktm.wikipe...@gmail.com ---
(In reply to comment #3)
 (In reply to comment #2)
  Consider bug 41038 as an alternative or partial solution.
 
 There's also the question of how to deal with redirects: currently they're
 completely ignored by wikidata, as far as I understand (also for search). I
 don't know if some additional partial solution may come from that.

Actually, pages which are redirects can be used as sitelinks, I wrote
[[d:Wikidata:Requests for permissions/Legobot]] as a solution to that.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36729] Update repo on page move

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36729

--- Comment #5 from Nemo federicol...@tiscali.it ---
(In reply to comment #4)
 Actually, pages which are redirects can be used as sitelinks, I wrote
 [[d:Wikidata:Requests for permissions/Legobot]] as a solution to that.

Good! That's not a fix in wikidata itself, though, it's like the interwiki
bots updating all languages.
Users expect moves not to break interwikis, even temporarily: whether this is a
reasonable expectation or not, I've no idea.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44573] New: [Interwiki] Links should use HTTP or HTTPS URL protocol relative to current page

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44573

   Web browser: ---
Bug ID: 44573
   Summary: [Interwiki] Links should use HTTP or HTTPS URL
protocol relative to current page
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: Unprioritized
 Component: Interwiki (extension)
  Assignee: soxre...@gmail.com
  Reporter: fastgoldf...@gmail.com
CC: run...@gmail.com, wikibugs-l@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

The Interwiki table currently requires the specification of the protocol.
Instead, there should be an indication of whether the server at the destination
supports HTTPS, and then the protocol should be selected dynamically, to match
the protocol in use on the current page. If HTTPS is not indicated as being
supported, then the Interwiki extension should fall back to HTTP by default.

I tested this on MediaWiki 1.18.x, using the older version of Interwiki
required for 1.18. I looked at the code changes, and didn't see anything recent
that indicated protocol-relative URLs were implemented in newer versions. If
I've overlooked it, apologies.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44573] [Interwiki] Links should use HTTP or HTTPS URL protocol relative to current page

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44573

--- Comment #1 from badon fastgoldf...@gmail.com ---
Looking here:

https://www.mediawiki.org/wiki/Special:Interwiki

It appears the extension already supports protocol relative URLs via
MediaWiki's native handling, beginning with 1.18. I should have tested that.
Maybe the included table should be updated with protocol relative URls for the
projects that support HTTPS? I'll leave this open for now, since I think at
least that much can be done. I'll also update the documentation for the
extension.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44394] Account creation interface should not be using helvetica/arial when the rest of the skin does not

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44394

--- Comment #23 from Isarra zhoris...@gmail.com ---
Aiight, looks like there is mostly a consensus for this, so unless new
objections arise in the next however long it takes me to find my harddrive,
I'ma go ahead and submit a patch for this soon as I find my harddrive.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 22761] Abuse filter regex \b considers unicode characters as word boundaries

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=22761

Jérémie Roquet jroq...@arkanosis.net changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #8 from Jérémie Roquet jroq...@arkanosis.net ---
(In reply to comment #6)
 Is this still happening? My understanding is that it was a PHP behavior
 (possibly a bug depending on your interpretation) that was changed in more
 recent versions.

 snip
 
 PCRE added a switch 'PCRE_UCP' in mid-2010, which if set makes the
 traditional character classes into aliases for morally equivalent Unicode
 character classes. That should produce something closer to the expected
 behavior, at least in our case. From what I can find, this PCRE switch is
 enabled when /u is specified in newer versions of PHP, starting with 5.3.4,
 which came out in late 2010. I assume Wikimedia must be using a sufficiently
 new version by now?

Indeed, I haven't managed to reproduce the bug this morning.
I'm marking the bug as RESOLVED FIXED but don't hesitate to reopen if it's not
OK for you.

Thanks Mark for the detailed explanation!

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44394] Account creation interface should not be using helvetica/arial when the rest of the skin does not

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44394

Legoktm legoktm.wikipe...@gmail.com changed:

   What|Removed |Added

 CC||legoktm.wikipe...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44567] phpcs-HEAD should skip if there is no file to process

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44567

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |has...@free.fr
   |org |
Summary|phpcs fails on JS-only  |phpcs-HEAD should skip if
   |changes |there is no file to process

--- Comment #2 from Antoine hashar Musso has...@free.fr ---
phpcs fails on JS-only changes , which is due to it being passed an empty
fileset.

Assigning to myself, I need to tweak out the phpcs-HEAD macro or just skip the
entire build whenever there is no PHP files altered.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44570] Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44570

--- Comment #2 from Sam Reed (reedy) s...@reedyboy.net ---
Faidon noticed this earlier this week. ;) I wonder if there was already a bug
for it. I seem to recall it being much more frequent in 1.20

Noting wmf1 was out of production in October I seem to recall.

I don't remove any till at least a month after the last used date.

I guess the parser cache is seemingly far too long.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44570] Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44570

--- Comment #3 from Sam Reed (reedy) s...@reedyboy.net ---
Faidon noticed this earlier this week. ;) I wonder if there was already a bug
for it. I seem to recall it being much more frequent in 1.20

Noting wmf1 was out of production in October I seem to recall.

I don't remove any till at least a month after the last used date.

I guess the parser cache is seemingly far too long.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44570] Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44570

Sam Reed (reedy) s...@reedyboy.net changed:

   What|Removed |Added

 CC|krinklem...@gmail.com   |ro...@wikimedia.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44570] Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44570

Andre Klapper aklap...@wikimedia.org changed:

   What|Removed |Added

 CC||aklap...@wikimedia.org

--- Comment #4 from Andre Klapper aklap...@wikimedia.org ---
Duplicate of bug 40126?

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44570] Time prior to removal of old wmfbranch directories from cluster MUST be higher than longest cache of ANY kind

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44570

--- Comment #5 from Sam Reed (reedy) s...@reedyboy.net ---
(In reply to comment #4)
 Duplicate of bug 40126?

Yup. Though I think it probably makes more sense to mark 40126 as a dupe of
this one...

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44574] New: Special:EntityData should support old revisions

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44574

   Web browser: ---
Bug ID: 44574
   Summary: Special:EntityData should support old revisions
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Special:EntityData shoud allow old revisions of entities to be accessed. This
allows for permanent URIs for specific revisions.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44574] Special:EntityData should support old revisions

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44574

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||daniel.kinz...@wikimedia.de
 Blocks||42063
   Assignee|wikidata-bugs@lists.wikimed |daniel.kinz...@wikimedia.de
   |ia.org  |

--- Comment #1 from Daniel Kinzler daniel.kinz...@wikimedia.de ---
picked up for sprint 31.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42063] Provide a plain linked data interface for accessing entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42063

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||44574

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44575] New: Special:EntityData should support pretty syntax for document names

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44575

   Web browser: ---
Bug ID: 44575
   Summary: Special:EntityData should support pretty syntax for
document names
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Special:EntityData should support a pretty form of specifying the entity,
revision and format, in addition to using the URL parameters id, revision and
format. The following format is suggested:

* Special:EntityData/Q1234 for accessing the data about item Q1234
* Special:EntityData/Q1234.json for accessing the data about item Q1234 in
JSON.
* Special:EntityData/Q1234:87654 for accessing revision 87654 of item Q1234.
* Special:EntityData/Q1234:87654.json for accessing revision 87654 of item
Q1234 in JSON.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44575] Special:EntityData should support pretty syntax for document names

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44575

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||daniel.kinz...@wikimedia.de
 Blocks||42063
   Assignee|wikidata-bugs@lists.wikimed |daniel.kinz...@wikimedia.de
   |ia.org  |

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42063] Provide a plain linked data interface for accessing entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42063

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||44575

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44575] Special:EntityData should support pretty syntax for document names

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44575

--- Comment #1 from Daniel Kinzler daniel.kinz...@wikimedia.de ---
picked up for sprint 31

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37941] disable update.php on beta

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37941

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #2 from Antoine hashar Musso has...@free.fr ---
We keep it around for now.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44426] PageTriage extension incorrectly inserting deletion rationale into miscellany for deletion (MFD) tag

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44426

Nischay Nahata nischay...@gmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|wikibugs-l@lists.wikimedia. |nischay...@gmail.com
   |org |

--- Comment #8 from Nischay Nahata nischay...@gmail.com ---
Unable to reproduce as before but I think
https://gerrit.wikimedia.org/r/#/c/47069/ is the fix.

Would appreciate if someone could verify.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44522] Edit on double click does not work on Wikimania 2013

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44522

NordNordWest nnw...@web.de changed:

   What|Removed |Added

 CC||nnw...@web.de

--- Comment #9 from NordNordWest nnw...@web.de ---
Doesn't work on any Wikipedia or Commons for me (Mac 10.4.11, Safari).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44576] New: Special:EntityData should apply content negotiation

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44576

   Web browser: ---
Bug ID: 44576
   Summary: Special:EntityData should apply content negotiation
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

If data about an entity is requested from Special:EntityData, but the desired
serialization format is not specified, Special:EntityData should perform
content negotiation based on the Accept header. 

Once the format has been determined, Special:EntityData should send a 303
redirect to the canonical URL of that serialization of the entity.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44576] Special:EntityData should apply content negotiation

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44576

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Blocks||42063

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42063] Provide a plain linked data interface for accessing entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42063

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||44576

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36412] http://labs.wikimedia.beta.wmflabs.org does not redirect

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36412

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #3 from Antoine hashar Musso has...@free.fr ---
We will just keep http://deployment.wikimedia.beta.wmflabs.org/

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36892] [OPS] puppetize poolcounter

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36892

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #3 from Antoine hashar Musso has...@free.fr ---
We do not need poolcounter on beta, so closing this bug.  There might still be
interest from ops to have it puppetized so I have leaved the RT ticket
untouched.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36891] setup poolcounter daemon

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36891

Bug 36891 depends on bug 36892, which changed state.

Bug 36892 Summary: [OPS] puppetize poolcounter
https://bugzilla.wikimedia.org/show_bug.cgi?id=36892

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44577] New: Special:EntityData should support RDF output

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44577

   Web browser: ---
Bug ID: 44577
   Summary: Special:EntityData should support RDF output
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

In addition to the serializations supported by the API, Special:EntityData
should also offer entity data in RDF. The RDF output should be available at
least as RDF/XML and n-triples. N3/Turtle would be nice.

The RDF conversion is to be performed by the same component that is also used
to create RDF dumps.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44577] Special:EntityData should support RDF output

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44577

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Blocks||42063

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42063] Provide a plain linked data interface for accessing entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42063

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||44577

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 36996] [OPS] exim config points to mchenry.wmflabs.org

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=36996

--- Comment #4 from Antoine hashar Musso has...@free.fr ---
Need some configuration to be done in manifests/realm.pp  aka update the
$exim_mediawiki_route_list and $exim_default_route_list variables.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38611] recover /etc from -feed

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38611

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #3 from Antoine hashar Musso has...@free.fr ---
This has been around for several months. I guess there is no more interest in
getting -feed backup.

If you really need the ircd configuration files, ask them from ops and get them
in puppet to make sure we do not lost them again.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44553] Buttons for editing entity are not disabled in JS-UI if user has no rights

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44553

--- Comment #1 from Wikidata Bot wikidata-b...@wikimedia.de ---
Change Ifb503747: (bug 44553) entity edit buttons not disabled when user has no
rights

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44578] New: RDF serializer for entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44578

   Web browser: ---
Bug ID: 44578
   Summary: RDF serializer for entities
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

For RDF dumps as well as the linked data interface, we need a way to convert
entities to RDF, as defined in
https://meta.wikimedia.org/wiki/Wikidata/Development/RDF. RDF serialization
should be supported at least for RDF/XML and n-triples, but N3/Turtle would be
very nice to have too.

To allow us to create dumps of millions of entities, the RDF serialization
component must be able to operate in streaming mode, outputting the header,
then one entity after the other, then a footer.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44578] RDF serializer for entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44578

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Blocks||44577

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44577] Special:EntityData should support RDF output

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44577

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||44578

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 34394] Install Jenkins Artifactory Plugin to distribute MWDumper as a Maven Artifact

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34394

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #1 from Antoine hashar Musso has...@free.fr ---
Artifacts should be sent to http://nexus.wmflabs.org/nexus/index.html
apparently.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 34392] Build is Fragile: 'dependencies.dependency.systemPath' for MWdumper:MWdumper:jar should not point at files within the project directory

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34392

Bug 34392 depends on bug 34394, which changed state.

Bug 34394 Summary: Install Jenkins Artifactory Plugin to distribute MWDumper as 
a Maven Artifact
https://bugzilla.wikimedia.org/show_bug.cgi?id=34394

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35982] [upstream] Dependency graph points to localhost:8080

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35982

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #9 from Antoine hashar Musso has...@free.fr ---
Fixed! :-) https://integration.mediawiki.org/ci/depgraph-view/?

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44226] http/https protocols not handled correctly in image links

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44226

Nischay Nahata nischay...@gmail.com changed:

   What|Removed |Added

 Status|NEW |UNCONFIRMED
   Assignee|wikibugs-l@lists.wikimedia. |nischay...@gmail.com
   |org |
 Ever confirmed|1   |0

--- Comment #1 from Nischay Nahata nischay...@gmail.com ---
Created attachment 11716
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=11716action=edit
Screenshot showing proper HTTPS links

Could you verify this bug? I found proper HTTPS links when uploading

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 40978] Jenkins should use the minimum PHP version supported by MediaWiki

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=40978

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

--- Comment #1 from Antoine hashar Musso has...@free.fr ---
This is probably too much troubles to setup for very minor enhancement to our
unit tests.  So we will not implement this.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 42904] Blocked merges because of test time outs

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=42904

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #6 from Antoine hashar Musso has...@free.fr ---
Timeout has been raised to 10 seconds https://gerrit.wikimedia.org/r/#/c/46503/

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44579] New: Low-level RDF serialization library

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44579

   Web browser: ---
Bug ID: 44579
   Summary: Low-level RDF serialization library
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

In order to implement RDF output for Wikibase, we need a low level RDF
serialization library that supports at least RDF/XML and n-triples (and
hopefully also N3 and/or Turtle). This can be a 3rd party library, or something
we write ourselves.

The serialization interface shall be oriented towards streaming operation, that
is, it should have methods for outputting a header (with namespace
declarations, etc) and a footer as well as RDF statements. For convenient
coding, the serialization should support a Turtle-style interface, something
like this:

  writeStatements( $subject, array(
  $predicate1 = $value1,
  $predicate2 = array( $x, $y, $z ), 
  ) 
  );

It should also support typed literals and localized string literals.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44579] Low-level RDF serialization library

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44579

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Blocks||44578

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44578] RDF serializer for entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44578

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||44579

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44580] New: Script for creating RDF dumps of all entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44580

   Web browser: ---
Bug ID: 44580
   Summary: Script for creating RDF dumps of all entities
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

We need a maintenance script for creating RDF dumps of all entities in a
Wikibase installation.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44580] Script for creating RDF dumps of all entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44580

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Depends on||44578

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44578] RDF serializer for entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44578

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Blocks||44580

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44568] bin/ulimit5.sh isn't UNIX compliant

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44568

--- Comment #3 from Dereckson dereck...@espace-win.org ---
[ Documentation note to add ]

Our extension uses the timeout command, part of the GNU core utilities.

On BSD systems, you have to install the coreutils package to make this command
available. If not, limits defined by the extension code will be ignored.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44581] New: Partial RDF dumps

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44581

   Web browser: ---
Bug ID: 44581
   Summary: Partial RDF dumps
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

Implement options for the RDF dump script to only dump a pre-defined set of
entities (given on the command line or in a file, or by limiting the type of
entities to dump).

In addition to the entities given explicitly, any properties used in describing
the entities should be automatically included in the dump.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44581] Partial RDF dumps

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44581

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Depends on||44580

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44580] Script for creating RDF dumps of all entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44580

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Blocks||44581

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 31541] Reports of bits.wikimedia.org taking too long

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=31541

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #2 from Antoine hashar Musso has...@free.fr ---
Closing this year old bug. The bits issue reported there has most definitely
been fixed meanwhile.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 30261] Remove/Correct sep11.wikipedia domain

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30261

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||has...@free.fr
 Resolution|--- |FIXED

--- Comment #26 from Antoine hashar Musso has...@free.fr ---
The interwiki seems to work fine. I guess this is now fully fixed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 24805] Remove sep11 wiki from the interwiki table

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24805

Bug 24805 depends on bug 30261, which changed state.

Bug 30261 Summary: Remove/Correct sep11.wikipedia domain
https://bugzilla.wikimedia.org/show_bug.cgi?id=30261

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44582] New: spec out linked data interface for wikidata ontology

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44582

   Web browser: ---
Bug ID: 44582
   Summary: spec out linked data interface for wikidata ontology
   Product: MediaWiki extensions
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: Unprioritized
 Component: WikidataRepo
  Assignee: wikidata-b...@lists.wikimedia.org
  Reporter: daniel.kinz...@wikimedia.de
CC: wikibugs-l@lists.wikimedia.org,
wikidata-b...@lists.wikimedia.org
Classification: Unclassified
   Mobile Platform: ---

The RDF representation of wikibase entities is based on the wikibase ontology
and data type vocabulary. We need to spec out the URIs for these, and come up
with a way to resolve these URIs to useful machine readable definitions as well
as human readable documentation.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44582] spec out linked data interface for wikidata ontology

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44582

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 CC||daniel.kinz...@wikimedia.de
 Blocks||44578

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44578] RDF serializer for entities

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44578

Daniel Kinzler daniel.kinz...@wikimedia.de changed:

   What|Removed |Added

 Depends on||44582

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 24413] [OPS] Consider DNSSec

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=24413

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

   Keywords||ops
Summary|Consider DNSSec |[OPS] Consider DNSSec

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 1609] [OPS] SPF (Sender Policy Framework) anti-forgery DNS record

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=1609

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

   Keywords||ops
Summary|SPF (Sender Policy  |[OPS] SPF (Sender Policy
   |Framework) anti-forgery DNS |Framework) anti-forgery DNS
   |record  |record

--- Comment #7 from Antoine hashar Musso has...@free.fr ---
SPF records has been set for the wikimedia.org domain.  Does not fix yet the
project domains though.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 23157] Please remove the wrong codes for Danish (redirect from dk to da)

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=23157

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||has...@free.fr
 Resolution|--- |WONTFIX

--- Comment #7 from Antoine hashar Musso has...@free.fr ---
We want to keep the convenient redirects around, so we are not going to remove
the dk.project domain DNS entries nor the redirects to their da.project
domain equivalent.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 32143] [OPS] stats.wikimedia.org not HTTPS enabled

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=32143

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

   Keywords||ops
Summary|Stats for https:// prompts  |[OPS] stats.wikimedia.org
   |for authentication  |not HTTPS enabled

--- Comment #5 from Antoine hashar Musso has...@free.fr ---
stats.wikimedia.org does not listen to HTTPS. Rephrasing summary.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 28601] EtherPad 1.1 sucks

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28601

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #11 from Antoine hashar Musso has...@free.fr ---
Please use the labs setup http://etherpad.wmflabs.org/pad/

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 28601] EtherPad 1.1 sucks

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28601

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29822] Upgrade EtherPad to 1.1.17

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29822

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WONTFIX

--- Comment #10 from Antoine hashar Musso has...@free.fr ---
This is never going to be fixed. Please use the labs instance instead:
http://etherpad.wmflabs.org/pad/

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 28601] EtherPad 1.1 sucks

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28601

Bug 28601 depends on bug 29822, which changed state.

Bug 29822 Summary: Upgrade EtherPad to 1.1.17
https://bugzilla.wikimedia.org/show_bug.cgi?id=29822

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 25611] Support optimized WebP thumbnails as alternative to JPEG

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=25611

Marco maic...@yahoo.com changed:

   What|Removed |Added

 CC||maic...@yahoo.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 30176] Etherpad load/connection issues

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30176

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||has...@free.fr
 Resolution|--- |FIXED

--- Comment #6 from Antoine hashar Musso has...@free.fr ---
That etherpad should no more used in favor of the labs one at
http://etherpad.wmflabs.org/pad/

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 28601] EtherPad 1.1 sucks

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28601

Bug 28601 depends on bug 30176, which changed state.

Bug 30176 Summary: Etherpad load/connection issues
https://bugzilla.wikimedia.org/show_bug.cgi?id=30176

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 43404] Use SSL for the etherpad lite instance on Labs

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=43404

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Blocks||35637

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35637] Etherpad does not work on https

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35637

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Depends on||43404

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44544] Move Statements out of experimental state

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44544

tobias.gritschac...@wikimedia.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||tobias.gritschacher@wikimed
   ||ia.de
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44554] Buttons for editing entity are not hidden in JS-UI in diff view

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44554

--- Comment #1 from Wikidata Bot wikidata-b...@wikimedia.de ---
Change I8b6899e3: (bug 44554) hiding all ui-toolbars when not in editView

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44544] Move Statements out of experimental state

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44544

--- Comment #2 from Wikidata Bot wikidata-b...@wikimedia.de ---
Change I4914fdf8: (bug 44544) removing experimental flag from statements
selenium tests.
Change merged.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44554] Buttons for editing entity are not hidden in JS-UI in diff view

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44554

tobias.gritschac...@wikimedia.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||tobias.gritschacher@wikimed
   ||ia.de

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44553] Buttons for editing entity are not disabled in JS-UI if user has no rights

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44553

tobias.gritschac...@wikimedia.de changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||tobias.gritschacher@wikimed
   ||ia.de

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 29923] Install QA system at ask.wikimedia.org

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=29923

Hydra hy...@alphacorp.tk changed:

   What|Removed |Added

 CC||hy...@alphacorp.tk

--- Comment #14 from Hydra hy...@alphacorp.tk ---
(In reply to comment #13)
 Related:
 https://meta.wikimedia.org/w/index.
 php?diff=5055994oldid=5041439rcid=3835860
 http://area51.stackexchange.com/proposals/49276/wikis

Thanks Nemo for those links. It would be good if Wikimedia expressed their
support for the creation of this new QA website. Note that new editors can
simply post their question on the site even if they do not have an account on
the site.

It is the following and committing part of the proposal that would require
more experienced users with an account on the site to take part in, but all
these for a simpler way for users to find answers to questions, the outcome is
priceless.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 3593] SVG client side rendering

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=3593

Marco maic...@yahoo.com changed:

   What|Removed |Added

 CC||maic...@yahoo.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 30176] Etherpad load/connection issues

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30176

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Resolution|FIXED   |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 28601] EtherPad 1.1 sucks

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=28601

Nemo federicol...@tiscali.it changed:

   What|Removed |Added

 Resolution|FIXED   |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35467] Write docu/how-to for Windows with a GUI client

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35467

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Blocks||1
   Severity|normal  |enhancement

--- Comment #2 from Antoine hashar Musso has...@free.fr ---
This is a doc bug (block 1) and enhancement

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 1] Documentation is out of date, incomplete (tracking)

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=1

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Depends on||35467

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35663] Move svn.wikimedia.org/doc/

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35663

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 CC||wikibugs-l@lists.wikimedia.
   ||org
  Component|Git/Gerrit  |Testing Infrastructure

--- Comment #9 from Antoine hashar Musso has...@free.fr ---
Moving from Git/Gerrit to Testing Infrastructure.  Will be solved whenever I
complete the doc generation jobs in Jenkins.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 44462] Create Wikipedia Minangkabau

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=44462

luthfi.indra.yudha.offic...@gmail.com changed:

   What|Removed |Added

 CC||luthfi.indra.yudha.official
   ||@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35951] Git review trying to push old commits

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35951

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||has...@free.fr
 Resolution|--- |FIXED

--- Comment #7 from Antoine hashar Musso has...@free.fr ---
Roan patch is included since git-review v1.17

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 35951] Git review trying to push old commits

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=35951

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |roan.katt...@gmail.com
   |org |

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 37687] Could not write file due to insufficient permissions or missing directories/containers.

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=37687

Antoine hashar Musso has...@free.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||has...@free.fr
 Resolution|--- |WORKSFORME

--- Comment #1 from Antoine hashar Musso has...@free.fr ---
We have changed our whole file infrastructure (to use Swift instead of NFS). I
guess that most probably have solved that issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 30949] Upgrade Semantic MediaWiki and related extensions

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30949

--- Comment #4 from Antoine hashar Musso has...@free.fr ---
Reassigning AkaWiki bugs to the bug assignee bugs at acawiki dot org

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 30700] Add Select all and Select none checkboxes, when presenting list of BibTeX references to import

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=30700

--- Comment #1 from Antoine hashar Musso has...@free.fr ---
Reassigning AkaWiki bugs to the bug assignee bugs at acawiki dot org

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 34390] Deprecated: Function split() is deprecated in ...

2013-02-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=34390

--- Comment #1 from Antoine hashar Musso has...@free.fr ---
Reassigning AkaWiki bugs to the bug assignee bugs at acawiki dot org

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


  1   2   3   >