After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 351086 - updates needed for Sessions Preferences
updates needed for Sessions Preferences
Status: RESOLVED DUPLICATE of bug 502018
Product: gnome-user-docs
Classification: Core
Component: user-guide
2.15.x
Other All
: Normal minor
: ---
Assigned To: Maintainers of Gnome user documentation
Maintainers of Gnome user documentation
Depends on:
Blocks:
 
 
Reported: 2006-08-12 20:11 UTC by David Planella
Modified: 2009-02-12 04:13 UTC
See Also:
GNOME target: ---
GNOME version: 2.15/2.16



Description David Planella 2006-08-12 20:11:21 UTC
Documentation 
Section: Configuring Startup Applications
"If you specify more than one startup application, use the Priority spin box to specify the startup order of the each application. The startup order is the order in which you want the startup applications to start."

Correct version:
This does not apply anymore, since the mentioned Priority spin box that used to live on the "Startup Programs" tab is not there anymore.

If the spin box is not there, the mentioned paragraph should be removed.

Other information:
There is also a minor issue under the "Setting Session Properties" section. 

The help file explains the meaning of the "Order" and "Style" columns, but there is no mention to what the "State" column means.

Some short explanation about "State" would be helpful.
Comment 1 Joachim Noreiko 2006-11-13 22:11:30 UTC
Can I get details from a developer about the State column please?
Comment 2 Vincent Untz 2006-11-13 23:15:13 UTC
Here's the relevant part in the code:

GnomeUIInfo state_data[] = {
  GNOMEUIINFO_ITEM_STOCK(N_("Inactive"), 
                         N_("Waiting to start or already finished."), 
                         NULL, GNOME_STOCK_MENU_BLANK),
  GNOMEUIINFO_ITEM_STOCK(N_("Starting"), 
                         N_("Started but has not yet reported state."), 
                         NULL, GNOME_STOCK_MENU_TIMER),
  GNOMEUIINFO_ITEM_STOCK(N_("Running"), 
                         N_("A normal member of the session."), 
                         NULL, GNOME_STOCK_MENU_EXEC),
  GNOMEUIINFO_ITEM_STOCK(N_("Saving"), 
                         N_("Saving session details."), 
                         NULL, GNOME_STOCK_MENU_SAVE),
  GNOMEUIINFO_ITEM_STOCK(N_("Unknown"), 
                         N_("State not reported within timeout."), 
                         NULL, GNOME_STOCK_PIXMAP_HELP),
  GNOMEUIINFO_END
};

Second string is an explanation of the state and the fourth field is the icon used.

Most apps are in the "running" state (with the exec icon).

Do you need more details?
Comment 3 Charles 2008-08-03 05:56:59 UTC
When modifying the documentation, please consider adding pictures of the icons used in the State column (and in the Style column).

The icons in 2.22.1.1-0ubuntu2 are not intuitively obvious, even with the help of the GNOME_STOCK_* constants above.

Meanwhile, because this has been a long time unfixed, perhaps we could have a quick-and-dirty unofficial help page somewhere as a workaround ... ?
Comment 4 Vincent Untz 2008-08-03 10:47:24 UTC
2.23 is a bit different too -- but the issues raised here are not valid anymore.
Comment 5 Matthias Clasen 2009-02-12 04:13:40 UTC
the session preferences docs are updated in the patch in bug 502018

*** This bug has been marked as a duplicate of 502018 ***