[Bug 56292] Make ULS more lightweight (tracking)

2014-11-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292
Bug 56292 depends on bug 47075, which changed state.

Bug 47075 Summary: Evaluate which resource loader modules really need position 
=> top
https://bugzilla.wikimedia.org/show_bug.cgi?id=47075

   What|Removed |Added

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

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-06-01 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on||65988

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-04-04 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Samuel Bronson  changed:

   What|Removed |Added

  Alias||uls-diet

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bug 56292 depends on bug 60304, which changed state.

Bug 60304 Summary: Remove option to disable UniversalLanguageSelector
https://bugzilla.wikimedia.org/show_bug.cgi?id=60304

   What|Removed |Added

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

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #18 from Nemo  ---
https://www.mediawiki.org/wiki/Universal_Language_Selector/Announcement_Feb2014
https://www.mediawiki.org/wiki/Universal_Language_Selector/Upcoming_development_plan

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Status|PATCH_TO_REVIEW |NEW

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #17 from Gerrit Notification Bot  ---
Change 113957 merged by jenkins-bot:
resources/images: Optimize all SVGs (partially by hand)

https://gerrit.wikimedia.org/r/113957

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-18 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #16 from Gerrit Notification Bot  ---
Change 113957 had a related patch set uploaded by Bartosz DziewoƄski:
resources/images: Optimize all SVGs (partially by hand)

https://gerrit.wikimedia.org/r/113957

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-18 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|REOPENED|PATCH_TO_REVIEW

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #15 from Santhosh Thottingal  ---
The table is from the output of mw.loader.inspect(). You can also run it from
your developer tools console of your browser.

But the result of that has a few caveats. ULS has to serve a small svg file(cog
icon) to UI. See
https://github.com/wikimedia/mediawiki-extensions-UniversalLanguageSelector/blob/master/resources/css/ext.uls.interlanguage.css#L1

You can see the svg with 'embed' more than once. Also note that the
ResourceLoader module will have css  with the image data embedded. So the RL
module have  this repeated svg data at client side, it is an image, so it will
have some size. While calculating the module size, the total size is
javascript, css and this image data(potentially duplicated) at client side. But
what matters is bandwidth usage and in this case you will see a big difference
between actual bandwidth usage and the uncompressed RL module size at client
side. This is because the module is gzip compressed while serving. Gzip is
efficient in compressing the duplicated strings. In short, don't take the
output of mw.loader.inspect literally.

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-17 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #14 from Bryce Glover  ---
(In reply to Amir E. Aharoni from comment #12)
> (In reply to Bryce Glover from comment #11)
> > I just added up how many kilobytes the ULS loader's scripts take up once
> > loaded onto client systems using my Mac's Calculator.app, and it came out to
> > 450.2 KB!!!  This definitely needs to be fixed!
> 
> In which conditions did you make this calculation?

Oops; I should have mentioned that I just used my Mac's built-in Calculator.app
application to add up all of the script sizes from the right-hand side of the
table provided as an attachment by MZMcBride in Comment #5.  I thought that my
source would be obvious!  Now that I think about it, though, where exactly did
the results provided by that table come from again?

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bug 56292 depends on bug 56796, which changed state.

Bug 56796 Summary: mw.webfonts is much too aggressive at overriding default 
fonts
https://bugzilla.wikimedia.org/show_bug.cgi?id=56796

   What|Removed |Added

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

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #13 from Andre Klapper  ---
(In reply to Bryce Glover from comment #11)
> I just added up how many kilobytes the ULS loader's scripts take up once
> loaded onto client systems using my Mac's Calculator.app

Such comments are not helpful if you do not provide exact steps to reproduce.

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #12 from Amir E. Aharoni  ---
(In reply to Bryce Glover from comment #11)
> I just added up how many kilobytes the ULS loader's scripts take up once
> loaded onto client systems using my Mac's Calculator.app, and it came out to
> 450.2 KB!!!  This definitely needs to be fixed!

In which conditions did you make this calculation?

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-16 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bryce Glover  changed:

   What|Removed |Added

 CC||randomdsde...@gmail.com

--- Comment #11 from Bryce Glover  ---
(In reply to MZMcBride from comment #5)
> Created attachment 13629 [details]
> Screenshot of mw.loader.inspect() from the English Wikipedia, 2013-10-30

I just added up how many kilobytes the ULS loader's scripts take up once loaded
onto client systems using my Mac's Calculator.app, and it came out to 450.2
KB!!!  This definitely needs to be fixed!

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-02-06 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on||56796

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-31 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Kunal Mehta (Legoktm)  changed:

   What|Removed |Added

 Depends on||47075

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on||13097

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on|60323   |

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on||60323

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bug 56292 depends on bug 56346, which changed state.

Bug 56346 Summary: Language names blurred and difficult to read using the 
hardcoded "Autonym" font on Windows computers
https://bugzilla.wikimedia.org/show_bug.cgi?id=56346

   What|Removed |Added

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

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bug 56292 depends on bug 56346, which changed state.

Bug 56346 Summary: Language names blurred and difficult to read using the 
hardcoded "Autonym" font on Windows computers
https://bugzilla.wikimedia.org/show_bug.cgi?id=56346

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WORKSFORME  |---

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

--- Comment #10 from Nemo  ---
So, as far as we know and until corrected the plan still is, per Erik Moeller,
bug 56433 comment 22:
> OK, then I'd like to request that the language engineering team implement
> that
> approach for now, unless there are issues we're overlooking. As noted, we can
> attach EventLogging to font activation, and we could potentially also run
> notices or calls-to-action in specific affected wikis. We can figure out in
> the
> next couple weeks if we want to prioritize getting back into a default-on
> state
> for automatic font delivery for some users/languages quickly, or if this
> should
> take a backseat to the language team's other priorities.
> 
> But, considering the significant payload added by automatic font delivery, I
> think that's a reasonable compromise for now. I appreciate the team's efforts
> to improve ULS performance across the board.

https://gerrit.wikimedia.org/r/#/c/108024/ was already merged and is supposed
to serve webfonts only when strictly necessary. So, once the way forward is
detected, we need another report for what's needed to complete the plan.

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bug 56292 depends on bug 56346, which changed state.

Bug 56346 Summary: Language names blurred and difficult to read using the 
hardcoded "Autonym" font on Windows computers
https://bugzilla.wikimedia.org/show_bug.cgi?id=56346

   What|Removed |Added

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

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on||40874, 56346

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on||46744, 42157, 42371, 48532,
   ||48533, 51102, 41542

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bug 56292 depends on bug 59958, which changed state.

Bug 59958 Summary: ULS loading language-specific fonts for interlanguage links
https://bugzilla.wikimedia.org/show_bug.cgi?id=59958

   What|Removed |Added

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

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Bug 56292 depends on bug 56433, which changed state.

Bug 56433 Summary: Temporarily scale back deployment of 
UniversalLanguageSelector (ULS) to Wikimedia wikis
https://bugzilla.wikimedia.org/show_bug.cgi?id=56433

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

 Depends on||60304

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


[Bug 56292] Make ULS more lightweight (tracking)

2014-01-21 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=56292

Nemo  changed:

   What|Removed |Added

   Keywords||tracking
 Blocks||2007
Summary|Make ULS more lightweight   |Make ULS more lightweight
   ||(tracking)

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