Changeset 8
- Timestamp:
- 07/03/06 21:51:16 (2 years ago)
- Files:
-
- 1 added
- 3 modified
-
README (modified) (3 diffs)
-
bug.py (modified) (3 diffs)
-
conseil.py (modified) (1 diff)
-
protocol_launchpadweb.py (added)
Legend:
- Unmodified
- Added
- Removed
-
README
r7 r8 2 2 ------ 3 3 Conseil rev06 - 03 July 2006 - Lionel Dricot ploum@ubuntu.com 4 http://conseil.fritalk.com 4 5 5 6 Conseil is a bug triager that will help you to triage bugs in your favourite BTS. … … 24 25 - modifications of a bug (requires authentification) 25 26 - adding a bug (already exists as a separate module) 26 - authentification27 - better way of storing password 27 28 28 29 … … 31 32 ----------- 32 33 33 - close tab close the focused tab, to the clicked one 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 34 http://conseil.fritalk.com/conseil/report/1 35 36 WARNING : 37 -------- 38 The current launchpadweb protocol is really really SLOW and output always the same result for any search. 39 Those bugs are LaunchPad bugs and I cannot do anything to solve this ! -
bug.py
r5 r8 11 11 def getNbr(self): 12 12 return self.nbr 13 14 def setPackage(self,s): 15 self.package=s 16 17 def getPackage(self): 18 return self.package 13 19 14 20 def setTitle(self,string): … … 30 36 return self.description 31 37 32 def setStatus( ) :33 print "hello"38 def setStatus(self,string) : 39 self.status = string 34 40 35 def getStatus( ) :36 print "hello"41 def getStatus(self) : 42 return self.status 37 43 38 def setImportance ( ) :39 print "hello"44 def setImportance (self, string) : 45 self.importance = string 40 46 41 def getImportance ( ) :42 print "hello"47 def getImportance (self) : 48 return self.importance 43 49 44 50 def setAllComments () : … … 57 63 self.title="" 58 64 self.description="" 65 self.importance="" 66 self.status="" 67 self.package="" 59 68 60 69 class comment: -
conseil.py
r5 r8 15 15 sys.exit(1) 16 16 17 from protocol_ dummyimport protocol17 from protocol_launchpadweb import protocol 18 18 from bug import bug 19 19
