Hi Alexandre, Le mardi 05 juin 2012, à 18:10 +0200, Alexandre Franke a écrit : > Hi, > > As someone reported https://bugzilla.gnome.org/show_bug.cgi?id=677298 > against the module I'm maintaining, we noticed that the menu spec > requires applications with the ProjectManagement additional category > to have Office;Development as main categories. We think this is a > rather nonsensical requirement as project management applications such > as Planner don't belong to the Development category. Could the spec be > updated to require either one of those, but not necessarily both?
Good point. This issue was raised for a few similar cases. Here's a patch to fix this. If nobody raises a -1, this will go in next week. Vincent -- Les gens heureux ne sont pas pressés.
>From 2c726bd421f3cc414bad0daf3b8a815c2dcbb6b8 Mon Sep 17 00:00:00 2001 From: Vincent Untz <[email protected]> Date: Wed, 3 Oct 2012 16:19:25 +0200 Subject: [PATCH] menu: Change some related categories from "and" to "or" Several categories were related to, say, "Education;Science" while what we really want is really "Education or Science". https://bugs.freedesktop.org/show_bug.cgi?id=35844 --- menu/menu-spec.xml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/menu/menu-spec.xml b/menu/menu-spec.xml index 729de0e..358ec7b 100644 --- a/menu/menu-spec.xml +++ b/menu/menu-spec.xml @@ -1509,7 +1509,7 @@ </row><row> <entry>Dictionary</entry> <entry>A dictionary</entry> - <entry>Office;TextTools</entry> + <entry>Office or TextTools</entry> </row><row> <entry>Chart</entry> @@ -1519,7 +1519,7 @@ </row><row> <entry>Email</entry> <entry>Email application</entry> - <entry>Office;Network</entry> + <entry>Office or Network</entry> </row><row> <entry>Finance</entry> @@ -1539,7 +1539,7 @@ </row><row> <entry>ProjectManagement</entry> <entry>Project management application</entry> - <entry>Office;Development</entry> + <entry>Office or Development</entry> </row><row> <entry>Presentation</entry> @@ -1814,7 +1814,7 @@ </row><row> <entry>Music</entry> <entry>Musical software</entry> - <entry>AudioVideo;Education</entry> + <entry>AudioVideo or Education</entry> </row><row> <entry>Languages</entry> @@ -1829,32 +1829,32 @@ </row><row> <entry>ArtificialIntelligence</entry> <entry>Artificial Intelligence software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Astronomy</entry> <entry>Astronomy software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Biology</entry> <entry>Biology software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Chemistry</entry> <entry>Chemistry software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>ComputerScience</entry> <entry>ComputerSience software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>DataVisualization</entry> <entry>Data visualization software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Economy</entry> @@ -1864,7 +1864,7 @@ </row><row> <entry>Electricity</entry> <entry>Electricity software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Geography</entry> @@ -1874,12 +1874,12 @@ </row><row> <entry>Geology</entry> <entry>Geology software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Geoscience</entry> <entry>Geoscience software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>History</entry> @@ -1889,7 +1889,7 @@ </row><row> <entry>ImageProcessing</entry> <entry>Image Processing software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Literature</entry> @@ -1899,27 +1899,27 @@ </row><row> <entry>Math</entry> <entry>Math software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>NumericalAnalysis</entry> <entry>Numerical analysis software</entry> - <entry>Education;Science;Math</entry> + <entry>Education;Math or Science;Math</entry> </row><row> <entry>MedicalSoftware</entry> <entry>Medical software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Physics</entry> <entry>Physics software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Robotics</entry> <entry>Robotics software</entry> - <entry>Education;Science</entry> + <entry>Education or Science</entry> </row><row> <entry>Sports</entry> @@ -1929,7 +1929,7 @@ </row><row> <entry>ParallelComputing</entry> <entry>Parallel computing software</entry> - <entry>Education;Science;ComputerScience</entry> + <entry>Education;ComputerScience or Science;ComputerScience</entry> </row><row> <entry>Amusement</entry> -- 1.7.10.4
_______________________________________________ xdg mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/xdg
