#2911 closed defect (fixed)
There should be a way to disable the help links
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | low | Milestone: | 1.0 |
Component: | general | Version: | 0.9.4 |
Severity: | normal | Keywords: | help |
Cc: | Branch: | ||
Release Notes: |
New user preference for controlling the verbosity of the UI: Don't show the various help links. |
||
API Changes: | |||
Internal Changes: |
Description
I would like to see some sort of a way to disable the little informational "Note:" text at the bottom of pages like the Roadmap and the Newticket pages.
Something as simple as a small circular button with an 'x' inside it that stored a cookie or something would be fine with me.
Attachments (0)
Change History (12)
comment:1 by , 19 years ago
Owner: | changed from | to
---|---|
Priority: | normal → low |
Severity: | normal → minor |
comment:2 by , 19 years ago
Milestone: | → 0.12 |
---|---|
Summary: | There should be a way to disable the "Note:"s → There should be a way to disable the help links |
This should be part of the “Better help/documentation system” item that's planned for 0.12. I'm not in favor of adding extra conditionals cruft to every controller and template for this.
follow-up: 4 comment:3 by , 19 years ago
So what I'm talking about is, currently, the 'Note:' text looks like this:
<strong>Note:</strong> This is an annoying note that you'll see every time you look at this page!
I would really like it if, for each 'Note', there was a small icon, maybe like the small circular 'X' icon in this image: http://www.maven.de/pics/dsl6k.png - clicking on the icon would set a cookie on your machine which would make that 'Note:' always hidden.
follow-up: 5 comment:4 by , 18 years ago
Keywords: | help added |
---|
Replying to clee@c133.org:
So what I'm talking about is, currently, the 'Note:' text looks like this:
<strong>Note:</strong> This is an annoying note that you'll see every time you look at this page!
This could probably removed from the output by a filter, the same way we filtered out the access keys in 0.11.
comment:5 by , 16 years ago
Replying to cboos:
This could probably removed from the output by a filter, the same way we filtered out the access keys in 0.11.
Like this in a site.html
template:
<div py:match="div[@id='content']//div[@id='help']" py:attrs="select('@*')"> <!-- All help notes are removed from this site... --> </div>
With 0.11 and Genshi, I really see no need to add code to Trac to support the removal of these messages. I propose closing as wontfix
.
comment:6 by , 16 years ago
Owner: | changed from | to
---|
I do hope that snippet doesn't remove unexpected things - please use with care :-)
comment:7 by , 16 years ago
Milestone: | 0.13 → 0.12 |
---|
comment:8 by , 15 years ago
Milestone: | 0.12 |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
I never felt like the help links went into the way, and I still use them occasionally.
If this is nevertheless a problem for some people, the recipe in comment:5 should do.
comment:9 by , 12 years ago
Milestone: | → 1.0 |
---|---|
Owner: | changed from | to
Release Notes: | modified (diff) |
Severity: | minor → normal |
Btw, this has been implemented for 1.0.
| Something as simple as a small circular button with an 'x' inside it that stored a cookie or something would be fine with me.
I must lack coffee this morning, but I've no idea what you're talking about … :)
A more concrete implementation for this would be a global TracIni setting
and the templates could output the Note: block conditionally:
trac/web/main.py
templates/roadmap.cs