http://hg.code.sf.net:8000/p/roundup/code/atom-log/tip/doc/user_guide.txt Mercurial Repository: p/roundup/code: doc/user_guide.txt history 2025-02-19T12:38:06+01:00 Make native date and number elements configurable http://hg.code.sf.net:8000/p/roundup/code/#changeset-b99e76e764967599da7978a4d57365a155f8827e Ralf Schlatterbeck rsc@runtux.com 2025-02-19T12:38:06+01:00 2025-02-19T12:38:06+01:00
changeset b99e76e76496
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Make native date and number elements configurable

Now for Number() and Integer() properties the browser-native number
format can be configured with the use_browser_number_input config item
in seciont [web]. The default is 'yes'. For Date() properties the config
item is use_browser_date_input (also in section [web]) but the default
is 'no'.

In addition when defining Date() properties, these now have a parameter
'display_time' which defaults to 'yes' and a 'format' parameter which
defaults to None. These set defaults for the field() method of the
DateHTMLProperty which have the same parameters (but the display_time
parameter of field() takes a boolean, not 'yes'/'no').
files
feat(web) - Use native number type input for Number() and Integer(). http://hg.code.sf.net:8000/p/roundup/code/#changeset-6445e63bb423fe66f50ac30b2407d10eb2956eac John Rouillard rouilj@ieee.org 2025-01-18T14:54:31-05:00 2025-01-18T14:54:31-05:00
changeset 6445e63bb423
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description feat(web) - Use native number type input for Number() and Integer().

When editing hyperdb.Number() or hyperdb.Integer() properties, use a
native number input.

For Number you can enter digits, +/-, . and e/E for exponent (1E2 =
100).

For integer we have the same keys as number, but also add step=1 to
the input. This stops submitting 23.5 suggesting 23 or 24. It does
allow 2E4 to be submitted that is rejected with an error from the
backend. However if the spinner is used with 2E4 it is turned into
20000, a pure integer and incremented/decremented by the spinner.

The upgrade happens automatically. Directions on going back to text
input provided. User guide updated to describe addition of spinner.

Tests added.
files
fix: issue2551390 - Replace text input/calendar popup with native date input http://hg.code.sf.net:8000/p/roundup/code/#changeset-2bf0c4e7795e383a6722e70d071361bb3db45b2c John Rouillard rouilj@ieee.org 2025-01-18T12:23:23-05:00 2025-01-18T12:23:23-05:00
changeset 2bf0c4e7795e
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description fix: issue2551390 - Replace text input/calendar popup with native date input

Docs, code and test changes for the changeover to a native date
element.

See issue for details.
files
docs: doc new types in user_guide; alphabetize types in reference. http://hg.code.sf.net:8000/p/roundup/code/#changeset-7d72b9a9fe9c70cdfbf410228e338bc5b1d80506 John Rouillard rouilj@ieee.org 2025-01-01T15:48:01-05:00 2025-01-01T15:48:01-05:00
changeset 7d72b9a9fe9c
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description docs: doc new types in user_guide; alphabetize types in reference.

user_guide.txt:

Removed Number from String and Number Properties. Added new Integer
and Number Properties sections to the user guide. Number Proprty
formats defined: no thousand separators, '.' decimal separator,
supports scientific 2E4 style input. Ordered in rough order of use.

reference.txt:

Alphabetized the types in the reference manual for easy lookup.
Fixed sentence on quiet property.
files
fix: issue2551374 - Add error handling for filter expressions. Fix UI http://hg.code.sf.net:8000/p/roundup/code/#changeset-cae1bbf2536bb8a1f20c6c1174e0eeb9fdae6625 John Rouillard rouilj@ieee.org 2025-01-01T02:06:00-05:00 2025-01-01T02:06:00-05:00
changeset cae1bbf2536b
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description fix: issue2551374 - Add error handling for filter expressions. Fix UI

Errors are now reported using the search template.

This should work in most situations. However if the query was
generated using an alternate search template, the user may not be able
to fix it. I'm not sure how to tell what template was used to submit
the search. By the time I handle the error, I don't think I have
access to an ok template or error template. Might need to add a new
field if this becomes a problem.

Also fixed a couple of tests changing the status code to 200 from 400
since we aren't on an error page anymore.

Updated user_guide including 3 sample error messages for search
expressions and how to understand them.
files
doc/test: issue2551374 - add error handling for filter expressions http://hg.code.sf.net:8000/p/roundup/code/#changeset-079958914ed79373768bc2ac8a5af120173816b5 John Rouillard rouilj@ieee.org 2024-12-02T13:53:23-05:00 2024-12-02T13:53:23-05:00
changeset 079958914ed7
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description doc/test: issue2551374 - add error handling for filter expressions

Added doc that invalid filter expressions are silently ignored and a
fallback search is generated.

Added disabled test that uses incorrect filter expression examples
from this issue.
files
docs: new example, summary issue2550698 - Document the logical expression search a bit http://hg.code.sf.net:8000/p/roundup/code/#changeset-6a58acc3f39fce642c4eafb7483003f2986b3cb0 John Rouillard rouilj@ieee.org 2024-12-02T12:02:36-05:00 2024-12-02T12:02:36-05:00
changeset 6a58acc3f39f
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description docs: new example, summary issue2550698 - Document the logical expression search a bit
files
docs: issue2550698 - Document the logical expression search a bit http://hg.code.sf.net:8000/p/roundup/code/#changeset-188b7a549f20d9a2463bdd1579d1487f8cd42c55 John Rouillard rouilj@ieee.org 2024-12-01T22:33:05-05:00 2024-12-01T22:33:05-05:00
changeset 188b7a549f20
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description docs: issue2550698 - Document the logical expression search a bit

Updated and tested docs in user_guide.txt.

To close out ticket still need unit tests.
files
docs: cleanups suggested by vale. http://hg.code.sf.net:8000/p/roundup/code/#changeset-b1d384d23cdb4d0a4652819c76827587737de983 John Rouillard rouilj@ieee.org 2024-07-08T13:04:05-04:00 2024-07-08T13:04:05-04:00
changeset b1d384d23cdb
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description docs: cleanups suggested by vale.
files
docs: fix unwanted highlighting. http://hg.code.sf.net:8000/p/roundup/code/#changeset-d54af8964fe3aec5f95baf44a55c2ce11889b2d8 John Rouillard rouilj@ieee.org 2024-07-02T21:51:51-04:00 2024-07-02T21:51:51-04:00
changeset d54af8964fe3
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description docs: fix unwanted highlighting.

Plain text example lines were being formatted as python. Now formatted
as plain text.
files
docs: fix misspelling http://hg.code.sf.net:8000/p/roundup/code/#changeset-ce1e65af97fb79e45dfea727cfec8162d5809669 John Rouillard rouilj@ieee.org 2024-06-11T16:29:22-04:00 2024-06-11T16:29:22-04:00
changeset ce1e65af97fb
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description docs: fix misspelling
files
issue2551353 - Add roundup-classhelper for 2.4.0 release http://hg.code.sf.net:8000/p/roundup/code/#changeset-fe0348bbe45b6feaa1f35365449d334fa4686d55 John Rouillard rouilj@ieee.org 2024-05-21T01:17:28-04:00 2024-05-21T01:17:28-04:00
changeset fe0348bbe45b
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description issue2551353 - Add roundup-classhelper for 2.4.0 release

Changes to the classic template are not done yet. Still testing.

This commit has document updates and changes to rest.py.

rest.py:

add /rest/data/user/role endpoint to core so the user doesn't have
to add the /rest/roles endpoint via interfaces.py. It will only send
roles for a user with Admin role and there is no way to override
this currently.


acknowledgements.txt:

Added members of team3 to other contributors. Specified for all
other contributes what they worked on.

upgrading.txt:

added classhelper section and basic template change
directions. Linked to admin_guide for full directions.

admin_guide.txt:

documented install, translation, troubleshooting, config etc.

user_guide.txt:

added section on using the classhelper. Added reference to section
earlier in the doc. Added image for section.
files
Link designator terms to glossary; expand permission doc; typo fixes http://hg.code.sf.net:8000/p/roundup/code/#changeset-8bc4246480bf2260dcc47a0738e6a4ba480242ab John Rouillard rouilj@ieee.org 2023-05-25T14:34:24-04:00 2023-05-25T14:34:24-04:00
changeset 8bc4246480bf
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Link designator terms to glossary; expand permission doc; typo fixes
files
Move mail gateway and roundup-admin doc to admin guide from user guide http://hg.code.sf.net:8000/p/roundup/code/#changeset-0bf616cfa1786533aa2427351c65210f2e1fd5a9 John Rouillard rouilj@ieee.org 2023-04-25T12:12:43-04:00 2023-04-25T12:12:43-04:00
changeset 0bf616cfa178
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Move mail gateway and roundup-admin doc to admin guide from user guide

A little step toward diataxis.

Move the mail gateway setup doc/manual and roundup-admin out of the
user_guide. Make the user_guide a tutorial/reference for the UI via
email and web.
files
alt text for images; captions for tables; RESt/XMLRPC reference http://hg.code.sf.net:8000/p/roundup/code/#changeset-e2f257ef737f4fafcb2c9a7154923c3ba982c79a John Rouillard rouilj@ieee.org 2023-04-25T02:09:52-04:00 2023-04-25T02:09:52-04:00
changeset e2f257ef737f
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description alt text for images; captions for tables; RESt/XMLRPC reference

Grammar fix.
Add height/width alt text keeping width under 700 for all images.
Separate two tables and add captions for them.
Reference REST/XMLRPC for automation/advanced use in web interface section.
files
add pragma command to roundup-admin http://hg.code.sf.net:8000/p/roundup/code/#changeset-9c067ed4568b4be89e63f713d3f054c55a43f510 John Rouillard rouilj@ieee.org 2023-04-12T20:49:21-04:00 2023-04-12T20:49:21-04:00
changeset 9c067ed4568b
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description add pragma command to roundup-admin

Added basic pragma command. Can assign settings, list settings.
Most settings are not yet implemented.

Only the pragma command respects unhidden pragma settings at this
point. Also added tests, doc updates for roundup-admin.

CHANGES.txt not updated because currently only pragma references the
unhidden settings.

Also fixed a couple of long lines.
files
issue2551262 - make mail gateway subject prefix parsing accept spaces http://hg.code.sf.net:8000/p/roundup/code/#changeset-86862ed039fa659bb2e604f8a5d8329b8ecb3e77 John Rouillard rouilj@ieee.org 2023-03-21T19:46:38-04:00 2023-03-21T19:46:38-04:00
changeset 86862ed039fa
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description issue2551262 - make mail gateway subject prefix parsing accept spaces

Allow spaces before/after prefix. Also allow spaces between classname
and id number in prefix designator. So "[ issue 23 ] subject" is
parsed like "[issue23] subject".
files
Mitigation for issue2551246 -u opton to roundup-admin http://hg.code.sf.net:8000/p/roundup/code/#changeset-f72ce883e677658256b79fe3da503c19b4669f3d John Rouillard rouilj@ieee.org 2022-11-30T02:09:16-05:00 2022-11-30T02:09:16-05:00
changeset f72ce883e677
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Mitigation for issue2551246 -u opton to roundup-admin

The -u option ignores the password and doesn't limit access to the
data.

Not a huge issue as currently anybody running it must have read access
to the tracker home and all the credentials. So they can change the
data directly using a db client or read anything they want.

But this wasn't documented. Now it is.
files
Update manpage of mailgw http://hg.code.sf.net:8000/p/roundup/code/#changeset-f0d39308819f82a29e8cbf5fdfa8ff532baf16d0 Ralf Schlatterbeck rsc@runtux.com 2022-11-27T11:00:00+01:00 2022-11-27T11:00:00+01:00
changeset f0d39308819f
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Update manpage of mailgw

Fix minor issues (ssl -> tls/ssl), --default-class option with '-'
instead of underscore.
files
Put oauth client secret into a file http://hg.code.sf.net:8000/p/roundup/code/#changeset-f918351a0fe6c5d830bc3c736b385791f2535832 Ralf Schlatterbeck rsc@runtux.com 2022-11-26T11:32:12+01:00 2022-11-26T11:32:12+01:00
changeset f918351a0fe6
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Put oauth client secret into a file

.. and get rid of the -I option of the mailgw script.
files
Add OAuth authentication to the mailgw script http://hg.code.sf.net:8000/p/roundup/code/#changeset-3359dc1dabb09c4594c730feec4eafceb323186f Ralf Schlatterbeck rsc@runtux.com 2022-11-23T10:13:48+01:00 2022-11-23T10:13:48+01:00
changeset 3359dc1dabb0
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Add OAuth authentication to the mailgw script

Now IMAPS can be used with OAuth as required by several large cloud
providers. Move command line processing of the mailgw script to
``argparse``. Note that the command line options of the mailgw have
changed, see upgrading.txt for details.
files
Update meta description. Also fix test command in code.txt. http://hg.code.sf.net:8000/p/roundup/code/#changeset-6f5054751fb6b10e3f83cbcfa72966894ea86de2 John Rouillard rouilj@ieee.org 2022-11-15T20:33:32-05:00 2022-11-15T20:33:32-05:00
changeset 6f5054751fb6
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Update meta description. Also fix test command in code.txt.
files
add expiration of verification link http://hg.code.sf.net:8000/p/roundup/code/#changeset-30bb17dc9f82a0b0f28562539c4cff859e8e23f7 John Rouillard rouilj@ieee.org 2022-07-25T17:34:54-04:00 2022-07-25T17:34:54-04:00
changeset 30bb17dc9f82
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description add expiration of verification link
files
landmarks, skiplink, remove bad attrs, autocomplete search http://hg.code.sf.net:8000/p/roundup/code/#changeset-e7b4ad2c57ac1b3e471bdb60ceba105ce96c8804 John Rouillard rouilj@ieee.org 2022-07-12T15:00:30-04:00 2022-07-12T15:00:30-04:00
changeset e7b4ad2c57ac
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description landmarks, skiplink, remove bad attrs, autocomplete search

layout.html:
Add main and nav landmarks to layout templte.
Add skiplink to get to main.
Remove Description meta tag from layout template in favor of
description metadata in individual files.
Remove obsolete border attribute from sourceforge logo.
Add autocomplete="on" attribute for search input box.

doc/*.txt
Remove language attribute from description meta tags.


These changes also occur for other files not in this commit. Thse
other files have changes to files for the 2.2.0 release not yet tobe
committed.
files
Doc updates for indexers. http://hg.code.sf.net:8000/p/roundup/code/#changeset-2eec7a5003338c9f2ecb5e9e94bd7ef0be7d48c5 John Rouillard rouilj@ieee.org 2022-02-07T22:52:03-05:00 2022-02-07T22:52:03-05:00
changeset 2eec7a500333
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Doc updates for indexers.

change word size max from 25 to 50

phrase search syntax updated

clear up wording for automatic selection of xapian/whoosh

link user_guide to admin_guide for finding syntax for native_fts
searches.
files
Document full text search http://hg.code.sf.net:8000/p/roundup/code/#changeset-828e2eaee7cdd613cbcc1eaffb60588fa76b9d07 John Rouillard rouilj@ieee.org 2022-01-24T23:23:27-05:00 2022-01-24T23:23:27-05:00
changeset 828e2eaee7cd
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Document full text search
files
Add meta description to some doc pages. http://hg.code.sf.net:8000/p/roundup/code/#changeset-24e2eeb2ed9a6b88e43ed2b7e3bb203219e20d59 John Rouillard rouilj@ieee.org 2022-01-21T14:29:46-05:00 2022-01-21T14:29:46-05:00
changeset 24e2eeb2ed9a
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Add meta description to some doc pages.

Try to improve SEO a bit. Get more users/contributors.
files
Document "Make a copy" link http://hg.code.sf.net:8000/p/roundup/code/#changeset-98082155ffea316f1e9d98e7228dc4780c04aaf5 John Rouillard rouilj@ieee.org 2021-08-18T22:27:38-04:00 2021-08-18T22:27:38-04:00
changeset 98082155ffea
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Document "Make a copy" link

Commentary from issue2550674.
files
Update user_guide to include support for html messages. http://hg.code.sf.net:8000/p/roundup/code/#changeset-ef7bc1fac35ae219adc0ee4c836b7b58af03f886 John Rouillard rouilj@ieee.org 2021-05-10T23:11:31-04:00 2021-05-10T23:11:31-04:00
changeset ef7bc1fac35a
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Update user_guide to include support for html messages.
files
Document password reset mechanism in web interface. http://hg.code.sf.net:8000/p/roundup/code/#changeset-f9c059921ccc08958c3aa82913f204725e717b11 John Rouillard rouilj@ieee.org 2020-08-29T00:23:58-04:00 2020-08-29T00:23:58-04:00
changeset f9c059921ccc
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Document password reset mechanism in web interface.
files
Add indexing for roundup-admin references. http://hg.code.sf.net:8000/p/roundup/code/#changeset-5522c950a2e404444da8f7fdbc4101101a8208d0 John Rouillard rouilj@ieee.org 2020-05-16T13:40:12-04:00 2020-05-16T13:40:12-04:00
changeset 5522c950a2e4
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Add indexing for roundup-admin references.
files
Fix typos. http://hg.code.sf.net:8000/p/roundup/code/#changeset-c263187e82d174b2a920981fc0f57698a69fb990 John Rouillard rouilj@ieee.org 2019-06-25T17:02:52-04:00 2019-06-25T17:02:52-04:00
changeset c263187e82d1
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Fix typos.
files
[maint-1.6] Changed references to http://issues.roundup-tracker.org to https now http://hg.code.sf.net:8000/p/roundup/code/#changeset-64ceb9c14b287aeb84ab44987a040f6729d55176 John Rouillard rouilj@ieee.org 2019-02-12T21:31:41-05:00 2019-02-12T21:31:41-05:00
changeset 64ceb9c14b28
branch maint-1.6
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Changed references to http://issues.roundup-tracker.org to https now
that the site is TLS enabled.
files
Changed references to http://issues.roundup-tracker.org to https now http://hg.code.sf.net:8000/p/roundup/code/#changeset-0df5f9eeefd452bc5be7ba03a7554ca95deb063d John Rouillard rouilj@ieee.org 2019-02-12T21:31:41-05:00 2019-02-12T21:31:41-05:00
changeset 0df5f9eeefd4
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Changed references to http://issues.roundup-tracker.org to https now
that the site is TLS enabled.
files
Update documentation for Python 3 support (issue 2550968, issue 2550980). http://hg.code.sf.net:8000/p/roundup/code/#changeset-df3f553fa41439ab5e422d1f36d48bf2378fd1dd Joseph Myers jsm@polyomino.org.uk 2018-09-03T00:12:46+00:00 2018-09-03T00:12:46+00:00
changeset df3f553fa414
branch
bookmark
tag
user Joseph Myers <jsm@polyomino.org.uk>
description Update documentation for Python 3 support (issue 2550968, issue 2550980).

A few obsolete references to Python 2.3 or 2.4 also removed or
updated.
files
issue2550757: one bug raised by issue fixed. Patch created by http://hg.code.sf.net:8000/p/roundup/code/#changeset-d995ee7d49bf28ebd2d06944a68bbea0222e180a John Rouillard rouilj@ieee.org 2016-04-30T21:33:41-04:00 2016-04-30T21:33:41-04:00
changeset d995ee7d49bf
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description issue2550757: one bug raised by issue fixed. Patch created by
W. Trevor King (wking) for documentation of mailgw applied by
John Rouillard.
files
Fix issue1615201: Added a new configuration option EMAIL_KEEP_REAL_FROM http://hg.code.sf.net:8000/p/roundup/code/#changeset-a46d5d0fd5f83d3ef46be378f76cacce3feca681 Peter Funk pf@artcom-gmbh.de 2016-03-18T16:18:20+01:00 2016-03-18T16:18:20+01:00
changeset a46d5d0fd5f8
branch
bookmark
tag
user Peter Funk <pf@artcom-gmbh.de>
description Fix issue1615201: Added a new configuration option EMAIL_KEEP_REAL_FROM
which makes the mail gateway ignore a Resent-From:-header and use the
real From:-header of the original author for further processing of the
message. Setting this option to 'yes' restores the original behaviour
of Roundup before the change in version 0.7.0 where the processing of
Resent-From: was added unconditionally.
files
doc: Link XMLRPC `filter` doc to User Guide chapter about querying http://hg.code.sf.net:8000/p/roundup/code/#changeset-57a482110a24aec31a229e837388c67f1e237c1e anatoly techtonik techtonik@gmail.com 2014-09-29T18:37:26+03:00 2014-09-29T18:37:26+03:00
changeset 57a482110a24
branch
bookmark
tag
user anatoly techtonik <techtonik@gmail.com>
description doc: Link XMLRPC `filter` doc to User Guide chapter about querying
files
docs: Remove one nesting level from ToC on subpages http://hg.code.sf.net:8000/p/roundup/code/#changeset-609edf9de0a57fdffa35986b97a8d40a8c55ac37 anatoly techtonik techtonik@gmail.com 2014-04-15T15:07:30+03:00 2014-04-15T15:07:30+03:00
changeset 609edf9de0a5
branch
bookmark
tag
user anatoly techtonik <techtonik@gmail.com>
description docs: Remove one nesting level from ToC on subpages
files
issue2550789 document how to initialize a tracker without exposing the admin password http://hg.code.sf.net:8000/p/roundup/code/#changeset-1a0cf0345465200340fbc086b8dcc14c83fb792e John Rouillard rouilj@ieee.org 2013-06-08T22:24:35-04:00 2013-06-08T22:24:35-04:00
changeset 1a0cf0345465
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description issue2550789 document how to initialize a tracker without exposing the admin password
files
issue2550766: Minor formatting issues in the docs for date properties, thanks John Kristensen. http://hg.code.sf.net:8000/p/roundup/code/#changeset-0485b47a39a8dd6a0aed7bed803e8a0b96c5545d Bernhard Reiter bernhard@intevation.de 2012-07-29T21:16:12+02:00 2012-07-29T21:16:12+02:00
changeset 0485b47a39a8
branch
bookmark
tag
user Bernhard Reiter <bernhard@intevation.de>
description issue2550766: Minor formatting issues in the docs for date properties, thanks John Kristensen.
files
update mailgw docs http://hg.code.sf.net:8000/p/roundup/code/#changeset-abb7dbbf27ba3d612ca4a253ca1e462db22f1b32 Richard Jones richard@users.sourceforge.net 2010-07-29T00:40:13+00:00 2010-07-29T00:40:13+00:00
changeset abb7dbbf27ba
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description update mailgw docs
files
Fix typo in email section of user guide, fixes issue2550607 http://hg.code.sf.net:8000/p/roundup/code/#changeset-f6468c5e1493a8a8f54018d3928e12afac015b73 Richard Jones richard@users.sourceforge.net 2009-12-07T00:26:12+00:00 2009-12-07T00:26:12+00:00
changeset f6468c5e1493
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Fix typo in email section of user guide, fixes issue2550607
files
Cleanup. http://hg.code.sf.net:8000/p/roundup/code/#changeset-be9122d753c5d67eacd1052cc7fb275ef6b6fba3 Stefan Seefeld stefan@seefeld.name 2009-02-12T16:21:46+00:00 2009-02-12T16:21:46+00:00
changeset be9122d753c5
branch
bookmark
tag
user Stefan Seefeld <stefan@seefeld.name>
description Cleanup.
files
clarify default permission change http://hg.code.sf.net:8000/p/roundup/code/#changeset-17bdd79a3ae1c2c58f0030732f7ea329b85b2eff Richard Jones richard@users.sourceforge.net 2008-12-08T08:46:48+00:00 2008-12-08T08:46:48+00:00
changeset 17bdd79a3ae1
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description clarify default permission change
files
retire "topic" usage http://hg.code.sf.net:8000/p/roundup/code/#changeset-91008ec8f9a0d2c18ceb5489e2f78c665a29ee67 Justus Pendleton jpend@users.sourceforge.net 2007-09-16T02:45:11+00:00 2007-09-16T02:45:11+00:00
changeset 91008ec8f9a0
branch
bookmark
tag
user Justus Pendleton <jpend@users.sourceforge.net>
description retire "topic" usage

"Topic" still appears in the locale files. I'm sure we need to support
that for existing trackers. I *think* they don't care about any of the other
changes that have been made.

I also left Ka-Ping Yee's original design document unchanged.

This takes care of sf feature request [SF#953161]
files
images for user guide http://hg.code.sf.net:8000/p/roundup/code/#changeset-068b3d7d427991ec3bfddf3c9e61d19e9302e9bb Richard Jones richard@users.sourceforge.net 2006-11-12T00:27:40+00:00 2006-11-12T00:27:40+00:00
changeset 068b3d7d4279
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description images for user guide
files
documentation cleanup from Luke Ross (patch [SF#1594860]) http://hg.code.sf.net:8000/p/roundup/code/#changeset-9f4dd27ae84311c356505bd2ad9202ce1896ac70 Richard Jones richard@users.sourceforge.net 2006-11-12T00:09:42+00:00 2006-11-12T00:09:42+00:00
changeset 9f4dd27ae843
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description documentation cleanup from Luke Ross (patch [SF#1594860])
files
Sorting/grouping by multiple properties. http://hg.code.sf.net:8000/p/roundup/code/#changeset-790363e9685256ce0765d966207e976647417f8d Ralf Schlatterbeck schlatterbeck@users.sourceforge.net 2006-08-30T20:28:26+00:00 2006-08-30T20:28:26+00:00
changeset 790363e96852
branch
bookmark
tag
user Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
description Sorting/grouping by multiple properties.

- Implement sorting/grouping by multiple properties for the web
interface. I'm now using @sort0/@sortdir0,@sort1/@sortdir1,... and
@group0/@groupdir0,... when generating URLs from a search template.
These are converted to a list internally. When saving URLs (e.g. when
storing queries) I'm using @sort=prop1,prop2,... and @group=... with
optional '-' prepended to individual props.
This means saved URLs are backward compatible with existing trackers
(and yes, this was a design goal).
I need the clumsy version with @sort0,@sort1 etc, because I'm
currently using several selectors and checkboxes (as the classic
template does, too). I don't think there is a way around that in HTML?
- Updated (hopefully all) documentation to reflect the new URL format
and the consequences in the web-interface.
- I've set the number of sort/group properties in the classic template
to two -- this can easily be reverted by changing n_sort to 1.

Richard, would you look over these changes? I've set a tag before and
(will set) after commit, so that it would be easy to merge out.
Don't be too scared about the size of the change, most is documentation,
the guts are in cgi/templating.py and small changes in the classic
template.
files
copy over status/priority descriptions from old overview doc http://hg.code.sf.net:8000/p/roundup/code/#changeset-77e067e64035a59cbd3f2ec732c3d6f1c1d941f0 Richard Jones richard@users.sourceforge.net 2006-08-09T07:02:19+00:00 2006-08-09T07:02:19+00:00
changeset 77e067e64035
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description copy over status/priority descriptions from old overview doc
files
more explanation http://hg.code.sf.net:8000/p/roundup/code/#changeset-4fd84dcfed33c2c73d5eec890ad7295a6c8b65a2 Richard Jones richard@users.sourceforge.net 2006-01-31T03:19:49+00:00 2006-01-31T03:19:49+00:00
changeset 4fd84dcfed33
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description more explanation
files
[maint-0.7] merge from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-6fbc8633a4c8cfa956bcdf3480d1380066d2cd87 Richard Jones richard@users.sourceforge.net 2005-01-03T23:02:27+00:00 2005-01-03T23:02:27+00:00
changeset 6fbc8633a4c8
branch maint-0.7
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description merge from HEAD
files
[maint-0.8] merge from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-714f2a60a97e99183a1cc07d8089e2bc556463bb Richard Jones richard@users.sourceforge.net 2005-01-03T22:56:26+00:00 2005-01-03T22:56:26+00:00
changeset 714f2a60a97e
branch maint-0.8
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description merge from HEAD
files
updated searching / indexing docs http://hg.code.sf.net:8000/p/roundup/code/#changeset-8fa6b5747a5332fa1476850ba6342babf5e3b9f0 Richard Jones richard@users.sourceforge.net 2005-01-03T22:55:09+00:00 2005-01-03T22:55:09+00:00
changeset 8fa6b5747a53
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description updated searching / indexing docs
files
doc updates http://hg.code.sf.net:8000/p/roundup/code/#changeset-5c0e5abcb5e3229343557c092c67bb61aa806c9f Richard Jones richard@users.sourceforge.net 2004-11-14T23:30:43+00:00 2004-11-14T23:30:43+00:00
changeset 5c0e5abcb5e3
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description doc updates
files
[maint-0.7] *** empty log message *** http://hg.code.sf.net:8000/p/roundup/code/#changeset-e435d2b81547677bd41b5b9eac18c58e9da5c058 Richard Jones richard@users.sourceforge.net 2004-10-12T21:58:40+00:00 2004-10-12T21:58:40+00:00
changeset e435d2b81547
branch maint-0.7
bookmark
tag 0.7.7
user Richard Jones <richard@users.sourceforge.net>
description *** empty log message ***
files
[maint-0.7] merge from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-fd392d8cbfe1bac5fb7e1ecb6f7d11ddc266e624 Richard Jones richard@users.sourceforge.net 2004-10-12T21:54:55+00:00 2004-10-12T21:54:55+00:00
changeset fd392d8cbfe1
branch maint-0.7
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description merge from HEAD
files
copy date/interval formatting from design spec to user guide http://hg.code.sf.net:8000/p/roundup/code/#changeset-a97bbd72a64363d490606b84b4b344cc1a9fb6f4 Richard Jones richard@users.sourceforge.net 2004-10-12T21:54:25+00:00 2004-10-12T21:54:25+00:00
changeset a97bbd72a643
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description copy date/interval formatting from design spec to user guide
files
merge http://hg.code.sf.net:8000/p/roundup/code/#changeset-096063697f776efb9633318d1b591f6e2a0e20ae Richard Jones richard@users.sourceforge.net 2004-06-09T00:25:32+00:00 2004-06-09T00:25:32+00:00
changeset 096063697f77
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description merge
files
[maint-0.7] some more documentation work http://hg.code.sf.net:8000/p/roundup/code/#changeset-ef226254ef460b92c866a54393942dd6b9d4396d Richard Jones richard@users.sourceforge.net 2004-06-09T00:11:49+00:00 2004-06-09T00:11:49+00:00
changeset ef226254ef46
branch maint-0.7
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description some more documentation work
files