Changeset 7

Show
Ignore:
Timestamp:
07/03/06 18:43:36 (3 years ago)
Author:
ploum
Message:

adding dummy authentification

Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • README

    r6 r7  
    1 README CONSEIL 
    2 -------------- 
     1README 
     2------ 
     3Conseil rev06 -  03 July 2006 - Lionel Dricot ploum@ubuntu.com 
    34 
    45Conseil is a bug triager that will help you to triage bugs in your favourite BTS. 
     6 
     7In 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 
     9What is working ? 
     10----------------- 
     11Not 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 
     16What's not working (and will be done soon) : 
     17------------------- 
     18All ! 
     19- Launchpad protocol must be implemented. (see protocol_dummy.py) 
     20- Bookmarks of your favourites searches 
     21 
     22Also 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 
    528 
    629 
     
    932 
    1033- 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  
    44import gobject 
    55from bug import bug 
     6# You have to change this if you have another storage 
     7from auth_dummy import user 
    68 
    79class protocol: 
     10 
     11# Available informations for authentification are : 
     12# -  user.login()  -> string that contains the login 
     13# -  user.password() -> string that contains the password 
    814 
    915################BUG RETRIEVING IN THE BTS #################################