[Bug 63459] Allow configuration of the mobilefrontend menu

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

--- Comment #9 from Florian florian.schmidt.wel...@t-online.de ---
Any new status?

-- 
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 63459] Allow configuration of the mobilefrontend menu

2014-08-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63459

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

   What|Removed |Added

   Priority|Unprioritized   |Low

-- 
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 63459] Allow configuration of the mobilefrontend menu

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

--- Comment #8 from Florian florian.schmidt.wel...@t-online.de ---
 Max what would you suggest?
? :)

-- 
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 63459] Allow configuration of the mobilefrontend menu

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

Florian florian.schmidt.wel...@t-online.de changed:

   What|Removed |Added

 Blocks||65888

-- 
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 63459] Allow configuration of the mobilefrontend menu

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

--- Comment #7 from Quim Gil q...@wikimedia.org ---
(In reply to Florian from comment #4)
 Hmm, the question is, what would you exactly do? Only hide elements, you
 don't need? (Random Page, Home etc.) or add elements too?

Add elements too. The bottom line here is to keep some consistency between your
modifications to desktop's MediaWiki:Sidebar and you mobile sidebar.

-- 
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 63459] Allow configuration of the mobilefrontend menu

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

Florian florian.schmidt.wel...@t-online.de changed:

   What|Removed |Added

 Blocks||63419

-- 
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 63459] Allow configuration of the mobilefrontend menu

2014-05-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63459

Jon jrob...@wikimedia.org changed:

   What|Removed |Added

 CC||florian.schmidt.welzow@t-on
   ||line.de

--- Comment #3 from Jon jrob...@wikimedia.org ---
Note: this would be useful to disable nearby on Commons (see bug 65888)

-- 
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 63459] Allow configuration of the mobilefrontend menu

2014-05-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63459

--- Comment #4 from Florian florian.schmidt.wel...@t-online.de ---
Hmm, the question is, what would you exactly do? Only hide elements, you don't
need? (Random Page, Home etc.) or add elements too?

-- 
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 63459] Allow configuration of the mobilefrontend menu

2014-05-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63459

--- Comment #5 from Jon jrob...@wikimedia.org ---
Max what would you suggest?
I wonder if a hook on prepareDiscoveryTools and preparePersonalTools would
suffice.

An alternative approach would be a series of global variables.
e.g.
$personalTools = array(
  array(
title: Title
icon: 'home',
label: wfMessage( 'home' )
  )
)

I'd hold off any sort of patch until we work out how this would work.

-- 
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 63459] Allow configuration of the mobilefrontend menu

2014-05-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63459

--- Comment #6 from Florian florian.schmidt.wel...@t-online.de ---
 I'd hold off any sort of patch until we work out how this would work.
Totally agree :)

 I wonder if a hook on prepareDiscoveryTools and preparePersonalTools would 
 suffice.
I think no, which a hook, a normal user/wiki administrator/provider maybe can
not do anything, so i promote the second:

 An alternative approach would be a series of global variables.
Maybe one global variable is enough? Maybe as a multidimensional array like:

$wgMFNavItems = array(
  'main' = array(
'home' = array(
  'title' = 'Title'
  'icon' = 'home',
  'label' = wfMessage( 'home' )
),
'random' = array(
  'title' = 'Title',
  'icon' = 'random',
  'label' = wfMessage( 'random' )
)
  ),
  'user' = array(
'home' = array(
  'title' = 'Watchlist'
  'icon' = 'watch',
  'label' = wfMessage( 'watchlist' )
),
'random' = array(
  'title' = 'Settings',
  'icon' = 'settings',
  'label' = wfMessage( 'settings' )
)
  )
)
?

-- 
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 63459] Allow configuration of the mobilefrontend menu

2014-05-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=63459

Florian florian.schmidt.wel...@t-online.de changed:

   What|Removed |Added

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

-- 
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 63459] Allow configuration of the mobilefrontend menu

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

--- Comment #2 from Ricordisamoa ricordisa...@live.it ---
Discussion on MediaWiki.org:
https://www.mediawiki.org/wiki/Thread:Extension_talk:MobileFrontend/How_do_you_Customize_the_Menu%3F

-- 
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 63459] Allow configuration of the mobilefrontend menu

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

--- Comment #1 from Bingle bingle-ad...@wikimedia.org ---
Prioritization and scheduling of this bug is tracked on Mingle card
https://wikimedia.mingle.thoughtworks.com/projects/mobile/cards/1896

-- 
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