# # BugZilla query page scanner to work with ancient # Debian Stable bugzilla installationss # # This includes three test sites # site contains one bug entry # all_bugs contains all Openmoko bugs as of \today # no_bug is a query which showed no bug # from HTMLParser import HTMLParser class BugQueryExtractor(HTMLParser): STATE_NONE = 0 STATE_FOUND_TR = 1 STATE_FOUND_NUMBER = 2 STATE_FOUND_PRIO = 3 STATE_FOUND_PRIO2 = 4 STATE_FOUND_NAME = 5 STATE_FOUND_PLATFORM = 6 STATE_FOUND_STATUS = 7 STATE_FOUND_WHATEVER = 8 # I don't know this field STATE_FOUND_DESCRIPTION =9 def __init__(self): HTMLParser.__init__(self) self.state = self.STATE_NONE self.bug = None self.bugs = [] def handle_starttag(self, tag, attr): if self.state == self.STATE_NONE and tag.lower() == "tr": # check for bz_normal and bz_P2 as indicator in buglist.cgi # use 'all' and 'map' on python2.5 if len(attr) == 1 and attr[0][0] == 'class' and \ ('bz_normal' in attr[0][1] or 'bz_blocker' in attr[0][1] or 'bz_enhancement' in attr[0][1] or 'bz_major' in attr[0][1] or 'bz_minor' in attr[0][1] or 'bz_trivial' in attr[0][1] or 'bz_critical' in attr[0][1] or 'bz_wishlist' in attr[0][1]) \ and 'bz_P' in attr[0][1]: print "Found tr %s %s" % (tag, attr) self.state = self.STATE_FOUND_TR elif self.state == self.STATE_FOUND_TR and tag.lower() == "td": self.state += 1 def handle_endtag(self, tag): if tag.lower() == "tr": print "Going back" if self.state != self.STATE_NONE: self.bugs.append( (self.bug,self.status) ) self.state = self.STATE_NONE self.bug = None if self.state > 1 and tag.lower() == "td": print "Next TD" self.state += 1 def handle_data(self,data): data = data.strip() # skip garbage if len(data) == 0: return if self.state == self.STATE_FOUND_NUMBER: """ #1995 in bugs.oe.org has [SEC] additionally to the number and we want to ignore it """ print "Bug Number '%s'" % data.strip() if self.bug: print "Ignoring bug data" return self.bug = data elif self.state == self.STATE_FOUND_STATUS: print "Status Name '%s'" % data.strip() self.status = data def result(self): print "Found bugs" return self.bugs # bugs_openmoko = """ Bug List
Bug List
Fri Mar 16 20:51:52 CET 2007
It was a time of great struggle and heroic deeds

282 bugs found.
ID Sev Pri Plt Owner State Result Summary
1 cri P2 Neo laforge@openmoko.org CLOS FIXE kernel is running way too slow
2 nor P2 Neo laforge@openmoko.org RESO FIXE SD card driver unstable
3 nor P2 Neo sean_chiang@fic.com.tw CLOS FIXE Debug Board trying to control GSM_EN / FA_19
4 nor P2 Neo laforge@openmoko.org RESO FIXE random crashes of gsmd
5 nor P2 Neo laforge@openmoko.org RESO FIXE call progress information is lacking
6 nor P2 Neo sean_chiang@fic.com.tw NEW GSM_EN should be called nGSM_EN
7 nor P2 Neo laforge@openmoko.org CLOS FIXE PMU RTC driver date/time conversion is erroneous
8 cri P5 Neo laforge@openmoko.org RESO FIXE SD/MMC: Card sometimes not detected
9 nor P2 Neo laforge@openmoko.org ASSI Boot speed too low (kernel part)
10 enh P2 Neo laforge@openmoko.org CLOS FIXE u-boot support for usb-serial lacking
11 blo P2 Neo ken_zhao@fic-sh.com.cn RESO FIXE u-boot lacks USB DFU support
12 nor P2 Neo gordon_hsu@fic-sh.com.cn NEW Boot speed too low (bootloader part)
13 nor P2 Neo teddy@fic-sh.com.cn RESO FIXE power button should not immediately react
14 min P2 Neo werner@openmoko.org RESO FIXE bootloader should display startup image before booting th...
15 nor P2 Neo laforge@openmoko.org NEW kernel oops when unloading g_ether
16 blo P2 Neo sean_chiang@fic.com.tw RESO FIXE bluetooth pullup / pulldown resistors
17 nor P2 Neo sean_chiang@fic.com.tw RESO FIXE microSD socket still has mechanical contact problems
18 nor P2 Neo mickey@vanille-media.de RESO FIXE OE build of u_boot with CVSDATE 20061030 uses latest git ...
19 min P2 Neo teddy@fic-sh.com.cn RESO FIXE "reboot" doesn't work
20 cri P2 Neo laforge@openmoko.org RESO FIXE connection status
21 blo P3 Neo sean_chiang@fic.com.tw NEW sms function missing
22 nor P2 Neo laforge@openmoko.org RESO FIXE outgoing call generates 'segmentation fault' when the pee...
23 nor P2 Neo laforge@openmoko.org RESO FIXE dtmf support not available now
24 wis P2 Neo laforge@openmoko.org NEW libgsmd/misc.h: lgsm_get_signal_quality()
25 nor P2 Neo davewu01@seed.net.tw ASSI GtkSpinBox unfinished
26 nor P2 Neo ken_zhao@fic-sh.com.cn NEW Pixmap Engine and Shadows
27 nor P2 Neo ken_zhao@fic-sh.com.cn ASSI Labels on GtkButton don't appear centered
28 nor P2 Neo ken_zhao@fic-sh.com.cn NEW GtkComboBox styling woes
29 nor P2 Neo ken_zhao@fic-sh.com.cn RESO FIXE GtkProgressBar styling woes
30 nor P2 Neo mickey@vanille-media.de REOP Touchscreen emits bogus events under X
31 cri P2 Neo laforge@openmoko.org NEW Display colors are slightly off
32 enh P2 Neo mickey@vanille-media.de NEW Common function for loading GdkPixbuf
33 blo P2 Neo laforge@openmoko.org RESO FIXE incoming call status report causes gsmd to crash.
34 blo P2 Neo laforge@openmoko.org RESO WORK Need to decide if lgsm_handle is still valid.
35 enh P5 Neo laforge@openmoko.org RESO WONT Support debug board from u-boot
36 blo P2 Neo laforge@openmoko.org RESO FIXE Implement s3c2410 udc (usb device controller) driver in u...
37 blo P2 Neo laforge@openmoko.org RESO DUPL Implement USB Device Firmware Upgrade (DFU)
38 enh P2 Neo laforge@openmoko.org RESO DUPL implement USB serial emulation in u-boot
39 maj P2 Neo gordon_hsu@fic-sh.com.cn RESO FIXE Move LCM initialization into u-boot (currently in kernel ...
40 nor P2 Neo werner@openmoko.org RESO DUPL test + debug display of image on LCM in u-boot
41 enh P2 Neo ken_zhao@fic-sh.com.cn NEW evaluate sapwood theme engine
42 blo P3 Neo laforge@openmoko.org RESO FIXE dynamic mtd partition table cration
43 maj P2 All mickey@vanille-media.de NEW StatusBar (Footer) API
44 wis P2 All mickey@vanille-media.de NEW InputMethod API
45 nor P2 All mickey@vanille-media.de NEW Automatic opening input methods
46 maj P2 Neo laforge@openmoko.org RESO FIXE 266MHz initialization of GTA01Bv2
47 min P2 Neo ken_zhao@fic-sh.com.cn RESO DUPL Evaluate sapwood theming engine
48 maj P2 Neo laforge@openmoko.org RESO DUPL Only power up the phone in case power button was pressed ...
49 min P2 All mickey@vanille-media.de NEW Implement touchscreen & click daemon
50 nor P2 All mickey@vanille-media.de NEW Sound Event API
51 nor P2 Neo mickey@vanille-media.de NEW Preferences API
52 nor P2 Neo cj_steven@fic-sh.com.cn RESO FIXE Single Instance Startup
53 nor P2 All tonyguan@fic-sh.com.cn RESO FIXE DTMF tones during call
54 blo P1 All tonyguan@fic-sh.com.cn RESO FIXE PIN Entry
55 maj P2 All tonyguan@fic-sh.com.cn RESO FIXE Don't pop up the dialer interface initially
56 blo P4 All tonyguan@fic-sh.com.cn RESO FIXE Integrate with contacts database
57 min P2 All tonyguan@fic-sh.com.cn RESO LATE Recording Calls
58 nor P2 Neo mickey@vanille-media.de NEW API for devmand
59 enh P2 Neo ken_zhao@fic-sh.com.cn NEW Real DPI vs. Fake DPI
60 min P2 Neo ken_zhao@fic-sh.com.cn NEW fontconfig antialiasing
61 maj P2 Neo ken_zhao@fic-sh.com.cn NEW Theme is very slow
62 wis P2 All mickey@vanille-media.de NEW High Level Multi Layer Network Discovery API
63 enh P2 Neo mickey@vanille-media.de ASSI matchbox-panel 1 vs. 2
64 maj P2 Neo mickey@vanille-media.de NEW Show Cipher Status in GSM-Panel applet
65 maj P2 Neo mickey@vanille-media.de NEW Visual indication for SMS overflow
66 cri P2 Neo mickey@vanille-media.de NEW Applet for Missed Events
67 nor P2 All mickey@vanille-media.de RESO WONT libmokopim not necessary
68 nor P2 Neo laforge@openmoko.org NEW SIM backend for EDS
69 maj P2 All buglog@lists.openmoko.org NEW Speed up System Initialization
70 nor P2 Neo buglog@lists.openmoko.org NEW Minimize Services started on Bootup
71 enh P2 Neo gordon_hsu@fic-sh.com.cn RESO FIXE make a short vibration pulse once u-boot is starting
72 wis P2 Neo gordon_hsu@fic-sh.com.cn RESO FIXE Add on-screen boot menu
73 blo P2 Neo laforge@openmoko.org RESO FIXE test and verify battery charger control (pcf50606)
74 blo P1 Neo laforge@openmoko.org RESO WONT stub audio driver to power up amp and route audio through...
75 maj P2 Neo laforge@openmoko.org RESO FIXE PWM code for display brightness control
76 enh P2 Neo teddy@fic-sh.com.cn NEW Implement PWM control for vibrator
77 nor P2 Neo songcw@fic-sh.com.cn NEW Finish, test and verify agpsd implementation
78 maj P2 Neo laforge@openmoko.org RESO FIXE Implement and test ASoC platform driver
79 blo P1 Neo werner@openmoko.org RESO FIXE suspend/resume to RAM support
80 maj P2 Neo laforge@openmoko.org RESO WONT Add sysfs entry for PMU wakeup reason
81 maj P2 Neo werner@openmoko.org NEW Decide how PMU RTC alarm interrupt is signalled to userspace
82 nor P2 Neo laforge@openmoko.org NEW implement and test cpufreq interface to S3C2410 PLL / SLO...
83 enh P2 Neo teddy@fic-sh.com.cn NEW evaluate process and I/O schedulers
84 nor P2 Neo laforge@openmoko.org RESO FIXE enable voluntary preemption
85 min P2 Neo laforge@openmoko.org RESO FIXE test NO_IDLE_HZ / tickless idle
86 nor P2 Neo laforge@openmoko.org RESO FIXE APM emulation for battery / charger / charging and possib...
87 nor P2 Neo laforge@openmoko.org RESO FIXE define and implement how headphone jack routing/signallin...
88 min P2 Neo teddy@fic-sh.com.cn NEW use and test PMU watchdog driver
89 cri P2 Neo teddy@fic-sh.com.cn NEW determine correct gamma calibration values and put them i...
90 cri P1 Neo laforge@openmoko.org NEW GSM TS07.10 multiplex missing
91 maj P2 Neo laforge@openmoko.org RESO DUPL debug sd card timeout problems
92 nor P2 Neo laforge@openmoko.org RESO FIXE test multiple microSD card vendors for compatibility with...
93 nor P2 Neo laforge@openmoko.org NEW test 4GB microSD card compatibility
94 maj P2 Neo tonyguan@fic-sh.com.cn RESO FIXE + symbol support
95 min P2 Neo sean_chiang@fic.com.tw NEW verify charger current and battery temperature reading co...
96 maj P2 Neo laforge@openmoko.org NEW make sure PMU alarm (set via rtc interface) is persistent
97 blo P2 Neo laforge@openmoko.org RESO FIXE remove static mtd partition table, use u-boot created dyn...
98 enh P2 Neo mickey@vanille-media.de NEW how to do touch panel calibration in factory and store va...
99 maj P2 All laforge@openmoko.org RESO DUPL Implement SMS support
100 maj P2 All laforge@openmoko.org NEW Implement Cell Broadcast support
ID Sev Pri Plt Owner State Result Summary
101 maj P2 Neo laforge@openmoko.org NEW Implement GPRS setup/teardown support
102 cri P2 Neo laforge@openmoko.org ASSI SIM phonebook access
103 blo P1 Neo laforge@openmoko.org RESO FIXE power-up/power-down GSM Modem
104 cri P2 All tonyguan@fic-sh.com.cn RESO LATE Volume control
105 enh P2 Neo laforge@openmoko.org RESO DUPL add passthrough mode
106 blo P2 Neo tonyguan@fic-sh.com.cn RESO LATE Emergency Call Support
107 maj P2 Neo laforge@openmoko.org NEW obtain list of operators / control operator selection
108 nor P2 Neo tonyguan@fic-sh.com.cn REOP allow query of manufacturer/model/revision/imei
109 enh P2 Neo laforge@openmoko.org NEW add dbus interface, like recent upstream gpsd
110 nor P2 Neo laforge@openmoko.org NEW look into gps / agps integration
111 nor P2 Neo laforge@openmoko.org NEW integrate agpsd in our system power management.
112 nor P2 Neo buglog@lists.openmoko.org NEW How to deliver kernel-level alarm to destination app
113 nor P2 Neo marcel@holtmann.org ASSI bluetooth headset support
114 nor P2 Neo buglog@lists.openmoko.org NEW Who is managing wakeup times?
115 enh P2 Neo marcel@holtmann.org ASSI A2DP / alsa integration
116 nor P2 Neo marcel@holtmann.org ASSI bluetooth HID support (host)
117 min P2 Neo marcel@holtmann.org ASSI bluetooth HID support (device)
118 nor P2 Neo marcel@holtmann.org ASSI bluetooth networking support
119 cri P3 All mickey@vanille-media.de NEW merge openmoko-taskmanager into openmoko-footer
120 nor P2 Neo marcel@holtmann.org ASSI bluetooth OBEX
121 cri P3 All mickey@vanille-media.de NEW merge openmoko-mainmenu into openmoko-mainmenu (panel)
122 nor P2 Neo mickey@vanille-media.de NEW rename openmoko-history to openmoko-taskmanager
123 nor P2 Neo mickey@vanille-media.de RESO DUPL rename openmoko-history to openmoko-taskmanager
124 nor P2 PC laforge@openmoko.org NEW modem volume control on connection
125 nor P2 All davewu01@seed.net.tw RESO FIXE FInger UI is not usable on 2.8" screen
126 nor P2 All sunzhiyong@fic-sh.com.cn ASSI Remove back functionality from Main Menu
127 maj P2 All davewu01@seed.net.tw RESO FIXE Power On / Off Images needed
128 nor P2 PC cj_steven@fic-sh.com.cn NEW Tap and hold on panel icon doesn't change to Today applic...
129 nor P2 All ken_zhao@fic-sh.com.cn NEW Create / Find better system fonts
130 nor P2 All mickey@vanille-media.de NEW GTK Popup menus size incorrectly
131 nor P2 All davewu01@seed.net.tw ASSI Move Search Open / Close buttons into same location
132 nor P2 All sunzhiyong@fic-sh.com.cn RESO FIXE Task Manager is not quick to use
133 nor P2 All davewu01@seed.net.tw ASSI Designer image layouts should have both 4 corners and ful...
134 nor P2 All mickey@vanille-media.de NEW Stylus applications need close function
135 nor P2 All mickey@vanille-media.de NEW Finger applications need close functionality
136 nor P2 Neo buglog@lists.openmoko.org ASSI application manager doesn't build
137 nor P2 All buglog@lists.openmoko.org NEW submit patch against ipkg upstream
138 nor P2 All sunzhiyong@fic-sh.com.cn REOP submit patch against matchbox-window-manager upstream
139 nor P2 PC mickey@vanille-media.de NEW GSM API
140 enh P2 Neo stefan@openmoko.org NEW add network-enabled fbgrab from openEZX to openmoko-devel...
141 nor P2 All buglog@lists.openmoko.org NEW Need support for device under WIndows and OS X
142 nor P2 PC werner@openmoko.org RESO FIXE sjf2410-linux cleanup / help message / NAND read
143 enh P2 PC buglog@lists.openmoko.org REOP Implement NAND write/read support in OpenOCD
144 maj P2 Neo mickey@vanille-media.de NEW when phone is hard-rebooted, Xfbdev complains about /tmp/...
145 blo P2 Neo laforge@openmoko.org RESO WONT battery is not automatically charging
146 nor P2 PC mickey@vanille-media.de RESO FIXE sjf2410-linux does not contain latest svn code
147 nor P2 PC mickey@vanille-media.de RESO WONT openmoko-panel-applet could not be resized
148 blo P1 Neo laforge@openmoko.org RESO FIXE gsmd not talking to TI modem on GTA01Bv2
149 maj P2 Neo laforge@openmoko.org ASSI lm4857 not i2c address compliant
150 nor P2 Neo graeme.gregory@wolfsonmicro... RESO INVA ASoC patch doesn't compile
151 nor P2 Neo cj_steven@fic-sh.com.cn NEW Does mainmenu need libmatchbox or not?
152 nor P2 PC cj_steven@fic-sh.com.cn NEW VFOLDERDIR is hardcoded
153 nor P2 PC sunzhiyong@fic-sh.com.cn ASSI Rationale for copying GtkIconView instead of deriving?
154 nor P2 PC sunzhiyong@fic-sh.com.cn RESO FIXE mainmenu crashes when clicking wheel the 2nd time
155 nor P2 PC sunzhiyong@fic-sh.com.cn RESO FIXE How to get back one level if you are in a subdirectory?
156 nor P2 PC sunzhiyong@fic-sh.com.cn ASSI Where is mainmenu going to look for applications?
157 nor P2 PC davewu01@seed.net.tw RESO DUPL The sizes of each keys are too small
158 nor P2 PC buglog@lists.openmoko.org RESO FIXE musicplayer crashes
159 nor P2 PC sunzhiyong@fic-sh.com.cn ASSI display thumbnails of actual applications
160 nor P2 PC sunzhiyong@fic-sh.com.cn ASSI display thumbnails in 3x3 grid
161 nor P2 PC davewu01@seed.net.tw RESO FIXE Docked Keypad is too small
162 maj P2 All mickey@vanille-media.de RESO REMI libmutil0_svn.bb setup misses libltdl creation
163 nor P2 PC mickey@vanille-media.de NEW Audio Profile Management
164 maj P1 Neo werner@openmoko.org ASSI improve non-SanDisk microSD support in u-boot
165 nor P2 PC buglog@lists.openmoko.org ASSI openmoko-simplemediaplayer doesn't build in OE
166 min P2 Neo laforge@openmoko.org NEW u-boot cdc_acm hot un-plug/replug hang
167 enh P2 Neo stefan@openmoko.org NEW add LCM QVGA switching support
168 min P2 Neo buglog@lists.openmoko.org RESO FIXE usb0 is not automatically configured
169 maj P2 Neo mickey@vanille-media.de RESO FIXE gdb currently broken (gdb-6.4-r0)
170 min P2 Neo laforge@openmoko.org NEW usbtty: sometimes bogus characters arrive
171 maj P2 All laforge@openmoko.org NEW agpsd source code and bitbake rules not in our svn
172 blo P1 Oth tonyguan@fic-sh.com.cn RESO FIXE missing openmoko-dialer-window-pin.o breaks build
173 maj P2 Oth laforge@openmoko.org RESO FIXE no NAND partitions due to ID mismatch if using defaults
174 nor P2 Oth laforge@openmoko.org RESO FIXE defconfig-om-gta01 could use updating
175 nor P2 PC mickey@vanille-media.de NEW MOKO_FINGER_WINDOW has to show_all and then hide to initi...
176 cri P2 PC laforge@openmoko.org NEW libgsmd need a mechanism to avoid dead waiting.
177 nor P2 PC mickey@vanille-media.de RESO FIXE libmokoui widget functions should return GtkWidget
178 maj P2 Neo werner@openmoko.org RESO FIXE u-boot 'factory reset' option
179 min P2 Neo werner@openmoko.org RESO FIXE Implement u-boot power-off timer
180 nor P2 Mac mickey@vanille-media.de NEW uboot build broken for EABI
181 wis P2 PC buglog@lists.openmoko.org NEW Password Storage/Retrieval Application
182 nor P2 Mac mickey@vanille-media.de RESO FIXE openmoko-panel-demo-simple hardcodes -Werror
183 nor P2 Mac mickey@vanille-media.de NEW openmoko-simple-mediaplayer missing mkinstalldirs and has...
184 nor P2 Mac cj_steven@fic-sh.com.cn NEW openmoko-mainmenu should link against libmb
185 nor P2 Mac thomas@openedhand.com RESO FIXE openmoko-dates lacks intltool-update.in
186 nor P2 Mac thomas@openedhand.com RESO FIXE Fingerbubbles take endless amount of ram and get OOMed
187 nor P2 Mac mickey@vanille-media.de RESO FIXE src/target/OM-2007/README doesn't mention ipkg patch
188 nor P2 Mac mickey@vanille-media.de RESO FIXE openmoko-panel-demo fails to build
189 nor P5 Mac thomas@openedhand.com RESO FIXE openmoko-dates tries to include non-existant header
190 nor P5 Mac thomas@openedhand.com RESO FIXE No rule to build dates.desktop
191 enh P2 Neo sean_chiang@fic.com.tw NEW investigate if we can set CPU voltage to 1.8V on 200MHz o...
192 enh P2 Mac buglog@lists.openmoko.org NEW Graphic bootsplash during userspace sysinit
193 enh P3 Neo sean_chiang@fic.com.tw NEW Information about current charging status when AC is online
194 min P2 Neo stefan@openmoko.org NEW s3c2410fb 8bit mode corrupt
195 nor P2 Neo stefan@openmoko.org NEW passthrough mode (Directly use GSM Modem from PC
196 enh P2 Mac mickey@vanille-media.de NEW Merge back fixes to openmoko recipes from OE
197 nor P2 PC mickey@vanille-media.de NEW Make theme suitable for qvga screens.
198 nor P2 Neo laforge@openmoko.org RESO FIXE Please enable CONFIG_TUN as a module in defconfig-om-gta01
199 maj P2 Neo sean_mosko@fic.com.tw NEW We need freely licensed ringtones
200 min P2 PC mickey@vanille-media.de NEW PARALLEL_MAKE seems to not work
ID Sev Pri Plt Owner State Result Summary
201 nor P2 Neo laforge@openmoko.org NEW Use TEXT_BASE 0x37f80000 in u-boot on GTA01Bv2 and higher
202 nor P2 Neo werner@openmoko.org RESO FIXE Start using NAND hardware ECC support
203 maj P2 All mickey@vanille-media.de RESO FIXE fix the web site: http://openmoko.com/
204 min P2 All buglog@lists.openmoko.org NEW Fatal error in Special:Newimages
205 min P2 Neo laforge@openmoko.org NEW add code to u-boot to query hardware revision and serial ...
206 maj P2 Neo laforge@openmoko.org NEW Disallow setting of overvoltage via pcf50606 kernel driver
207 maj P2 Neo laforge@openmoko.org NEW DFU mode should only be enabled when in "911 key" mode
208 min P2 PC laforge@openmoko.org NEW u-boot DFU upload broken
209 nor P2 Neo laforge@openmoko.org NEW u-boot DFU needs to block console access while in DFU mode
210 maj P2 Oth henryk@ploetzli.ch ASSI "now" causes frequent rebuilds and fills disks
211 nor P2 All buglog@lists.openmoko.org RESO FIXE sjf2410-linux-native.bb has do_deploy in the wrong location
212 nor P2 Oth werner@openmoko.org NEW Charging seems completely broken
213 nor P2 Oth mickey@vanille-media.de RESO FIXE openmoko-dates-0.1+svnnow fails certificate check
214 nor P2 PC mickey@vanille-media.de RESO FIXE Add CVS_TARBALL_STASH for missing upstream sources
215 blo P2 All mickey@vanille-media.de RESO FIXE fingerwheel crashes mainmenu when touching the black part
216 blo P3 Neo thomas@openedhand.com RESO DUPL contacts crashes when tying to enter import widget
217 nor P2 Neo werner@openmoko.org NEW Implement NAND OTP area read/write as u-boot commands
218 enh P2 Neo laforge@openmoko.org NEW Distinguish stylus from finger via tslib
219 blo P2 All tonyguan@fic-sh.com.cn RESO FIXE openmoko-dialer r1159 fails to compile
220 nor P2 PC laforge@openmoko.org RESO FIXE libgsmd_device.c is missing
221 blo P2 Mac thomas@openedhand.com RESO FIXE Can't add new contacts via the gui
222 nor P2 Mac thomas@openedhand.com RESO WORK Can't add new events
223 nor P2 Mac thomas@openedhand.com NEW weekview only displays half the week
224 nor P2 PC laforge@openmoko.org RESO FIXE call to uboot-mkimage requires ${STAGING_BINDIR} prefix
225 nor P2 PC mickey@vanille-media.de RESO FIXE Fix ordering of do_deploy in uboot to be compatible with ...
226 nor P2 PC buglog@lists.openmoko.org REOP dfu-util-native do_deploy tries to install from wrong sou...
227 nor P2 PC mickey@vanille-media.de NEW Add openmoko-mirrors.bbclass and enable use of it
228 blo P2 Neo mickey@vanille-media.de NEW openmoko applications(contacts, appmanager ...) easily c...
229 nor P2 PC davewu01@seed.net.tw RESO FIXE outgoing call/incoming call/talking status should be more...
230 tri P2 PC laforge@openmoko.org RESO FIXE Use the toolchain speified in $CROSS_COMPILE in u-boot.
231 min P2 Neo werner@openmoko.org NEW switch display backlight GPIO to "output, off" when suspe...
232 nor P2 Oth buglog@lists.openmoko.org NEW n-plicate buglog mails
233 cri P2 Neo werner@openmoko.org RESO FIXE power-off timer should be halted in DFU mode
234 maj P2 Neo werner@openmoko.org NEW check for bad blocks in first _and_ second page of each b...
235 nor P2 PC laforge@openmoko.org RESO FIXE Deploy openocd-native, not openocd, and make openocd-nati...
236 cri P2 PC mickey@vanille-media.de NEW Close moko_dialog_window several times, moko_stylus_demo ...
237 nor P2 PC mickey@vanille-media.de RESO FIXE Fix remaining https urls in bitbake recipes.
238 nor P2 Mac mickey@vanille-media.de RESO LATE manual test bug
239 nor P2 Neo mickey@vanille-media.de RESO LATE foo
240 nor P2 Neo mickey@vanille-media.de RESO INVA broken-1.0-r0-do_fetch
241 nor P2 Neo mickey@vanille-media.de CLOS LATE broken-1.0-r0-do_fetch
242 nor P2 Neo mickey@vanille-media.de RESO INVA broken-1.0-r0-do_compile
243 nor P2 Neo mickey@vanille-media.de RESO INVA broken-1.0-r0-do_configure
244 maj P2 PC mickey@vanille-media.de NEW I can't build Xorg7.1 from MokoMakefile
245 nor P2 Neo laforge@openmoko.org RESO FIXE Neo crashes when writing large amounts of data to SD
246 nor P2 PC sean_chiang@fic.com.tw NEW Debug board needs to be recognized by mainline linux kernel.
247 maj P2 Neo thomas@openedhand.com RESO FIXE openmoko-dates svn rev. 335 does no longer build
248 nor P2 PC buglog@lists.openmoko.org NEW Buttons disappear under zoom
249 enh P2 All laforge@openmoko.org NEW add command to print gsmd version number
250 nor P2 Neo mickey@vanille-media.de RESO INVA broken-1.0-r0-do_compile
251 nor P2 Neo mickey@vanille-media.de RESO INVA broken-1.0-r0-do_compile
252 nor P2 Neo mickey@vanille-media.de REOP openmoko-devel-image-1.0-r0-do_rootfs
253 nor P2 Neo mickey@vanille-media.de NEW Mount /tmp as tmpfs
254 nor P2 Oth mickey@vanille-media.de NEW bug with "patch" on arklinux 2006.1??
255 nor P2 Neo tony_tu@fiwin.com.tw NEW battery voltage scale is not correct
256 cri P2 PC sean_chiang@fic.com.tw NEW GSM Modem doesn't seem to work on some devices
257 nor P2 Oth sean_chiang@fic.com.tw NEW AUX button sticking
258 maj P2 All cj_steven@fic-sh.com.cn NEW Main Menu needs to have Single Instance functionality
259 nor P2 Neo stefan@openmoko.org NEW implement 500mA charging in u-boot
260 nor P2 Neo stefan@openmoko.org NEW implement 100mA charging in Linux
261 nor P2 Neo stefan@openmoko.org NEW Implement 500mA charging using wall-outlet charger
262 enh P2 Neo buglog@lists.openmoko.org NEW Indicate different charging mode in battery applet
263 blo P2 Neo laforge@openmoko.org RESO FIXE gsmd doesn't receive AT reply from the modem properly.
264 nor P2 PC mickey@vanille-media.de NEW package libelf-0.8.6-r0: task do_populate_sysroot: failed
265 nor P2 PC mickey@vanille-media.de NEW MokoMakefile: perl-native fix
266 nor P2 PC mickey@vanille-media.de RESO FIXE ftdi-eeprom-native missing confuse-native dependency
267 enh P4 PC buglog@lists.openmoko.org RESO FIXE internal function duplicates strstr(3)
268 nor P2 PC buglog@lists.openmoko.org NEW openmoko-today crashes when one of the buttons is pressed
269 nor P2 Neo mickey@vanille-media.de RESO FIXE openmoko-contacts-0.1+svnnow-r3_0_200703151745-do_unpack
270 nor P2 Neo mickey@vanille-media.de NEW does our xserver need security updates?
271 nor P2 Neo laforge@openmoko.org NEW It would be nice if ppp was supported by kernel
272 nor P2 Neo mickey@vanille-media.de RESO FIXE openmoko-contacts-0.1+svnnow-r3_0_200703152250-do_unpack
273 nor P2 Neo mickey@vanille-media.de RESO FIXE openmoko-contacts-0.1+svnnow-r3_0_200703160254-do_unpack
274 nor P2 Neo mickey@vanille-media.de RESO FIXE openmoko-contacts-0.1+svnnow-r3_0_200703160321-do_unpack
275 nor P2 Neo mickey@vanille-media.de RESO FIXE openmoko-contacts-0.1+svnnow-r3_0_200703160350-do_unpack
276 nor P3 Neo songcw@fic-sh.com.cn NEW The open file window is too ugly
277 nor P2 Neo mickey@vanille-media.de RESO FIXE openmoko-contacts-0.1+svnnow-r3_0_200703160712-do_unpack
278 nor P2 Neo mickey@vanille-media.de RESO FIXE openmoko-contacts-0.1+svnnow-r3_0_200703160805-do_unpack
279 nor P2 Neo buglog@lists.openmoko.org RESO FIXE Appmanager crush when install packages
280 nor P2 Neo songcw@fic-sh.com.cn NEW openmoko-appmanager not refresh the packages list after r...
281 nor P3 PC buglog@lists.openmoko.org NEW implicit declaration of function `strdup'
282 nor P2 Neo buglog@lists.openmoko.org NEW microSD Problem
282 bugs found.
Query Page    Enter New Bug    Change Columns    Edit this Query   
""" bugfinder =BugQueryExtractor() bugfinder.feed(bugs_openmoko) print bugfinder.result() print len(bugfinder.result()) seen_numbers = {} for (number,_) in bugfinder.result(): seen_numbers[number] = "Yes" for i in range(1,283): if not seen_numbers.has_key(str(i)): print "Not seen %d" % i