Changeset 7
- Timestamp:
- 07/03/06 18:43:36 (3 years ago)
- Files:
-
- 1 added
- 2 modified
-
README (modified) (2 diffs)
-
auth_dummy.py (added)
-
protocol_dummy.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
README
r6 r7 1 README CONSEIL 2 -------------- 1 README 2 ------ 3 Conseil rev06 - 03 July 2006 - Lionel Dricot ploum@ubuntu.com 3 4 4 5 Conseil is a bug triager that will help you to triage bugs in your favourite BTS. 6 7 In 20,000 Leagues Under the Seas, the book of Jules Verne, Conseil is the faithful assistant of professor Aronnax, the main character of the story. Conseil has a passion about zoological classification and is a real expert. As bugs are animals, I thought that Conseil would be a great help to triage bugs. 8 9 What is working ? 10 ----------------- 11 Not really much. 12 - search : if you type an integer, the bug will be directly opened instead of searching 13 - search : if the first word of your search is a recognized package, then only bugs of this package are displayed. (ATM, only "evolution" works. Try "evolution something" 14 15 16 What's not working (and will be done soon) : 17 ------------------- 18 All ! 19 - Launchpad protocol must be implemented. (see protocol_dummy.py) 20 - Bookmarks of your favourites searches 21 22 Also planned shortly : 23 - Advanced search capabilities 24 - modifications of a bug (requires authentification) 25 - adding a bug (already exists as a separate module) 26 - authentification 27 5 28 6 29 … … 9 32 10 33 - close tab close the focused tab, to the clicked one 11 - searching for a package only doesn't work 34 - searching for a package only doesn't work (and I know how to fix it) 35 - columns are not re-orderable in the search results 36 - error at start because the notebook is empty 37 - tabs titles are not pretty at all -
protocol_dummy.py
r5 r7 4 4 import gobject 5 5 from bug import bug 6 # You have to change this if you have another storage 7 from auth_dummy import user 6 8 7 9 class protocol: 10 11 # Available informations for authentification are : 12 # - user.login() -> string that contains the login 13 # - user.password() -> string that contains the password 8 14 9 15 ################BUG RETRIEVING IN THE BTS #################################
