aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* This actually almost looks like working, so much I can file bugs.Matěj Cepl2011-02-014-65/+138
|
* Tons of fixes, we are almost in state that the primitive run is possible.Matěj Cepl2011-01-313-40/+38
| | | | | | TOOD: * The most important part is we have to run libbz.initialize() and wait until it is done.
* bzpage.js mostly doneMatěj Cepl2011-01-284-566/+291
| | | | | | | Also: * created libbugzilla.js for putting aside most RPCed functions * utils.js and color.js moved to data * tons and tons of restructing to make things work via RPC
* First rough removal of objects and transformation on plain functions.Matěj Cepl2011-01-201-3/+63
| | | | | | | | | TODO: * still this is all around the place * constructors has not been fixed * all require's were just yanked, but they are still used. * functions should be more self-contained ... tons of global variables everywhere.
* Just move key libraries to data/ to be made into content scripts.Matěj Cepl2011-01-203-2129/+0
|
* Remove unnecessary require.Matěj Cepl2011-01-191-1/+0
|
* Limit full-text queries of upstream bugzillas just to current component.Matěj Cepl2010-11-241-2/+7
| | | | | | | * changed queryUpstreamBug data to have additional fields for this. * changed queryUpstream method of RHBZPage to use them. Fixes #56
* Move choice of particular content script objects to initialize().Matěj Cepl2010-10-251-8/+9
|
* Echm, I should actually pass the argument where it is expected ;).Matěj Cepl2010-10-251-2/+2
|
* Jetpack-SDK currently provides clipboard and selection libraries.Matěj Cepl2010-10-232-128/+0
| | | | So there is no need to do our own.
* Update to the latest Request APIMatěj Cepl2010-10-103-27/+26
|
* Remove notification method in utils.js, provided by the Jetpack module.Matěj Cepl2010-10-082-36/+0
|
* A bit of cleanup ... removed one TODOMatěj Cepl2010-09-301-5/+9
|
* Use createDeadLink method, it's better for your soul.Matěj Cepl2010-09-301-12/+5
|
* All button-links in the top row is generated by createDeadLinkMatěj Cepl2010-09-272-38/+31
|
* Fix fixAllButton (missing that = this).Matěj Cepl2010-09-271-3/+4
| | | | Fixes #53.
* Remove unnecessary console.logMatěj Cepl2010-09-261-1/+0
|
* Massive reformatting to make Eclipse happyMatěj Cepl2010-09-255-8/+15
|
* Removing unused persistent-page-mod.jsMatěj Cepl2010-09-251-57/+0
|
* Make jslint more happy.Matěj Cepl2010-09-251-4/+8
|
* Search in our bugzilla could be done in multiple components at once.Matěj Cepl2010-09-251-2/+15
| | | | | | | * Equivalent components are defined by a regular expression in the array config.gJSONData.constantData.equivalentComponents Fixes #50
* Offline support attempts were moved to a separate branch.Matěj Cepl2010-09-241-149/+0
|
* Fix Logger object to be self contained and use storage properlyMatěj Cepl2010-09-243-60/+71
| | | | | | | * there is really no other way than using module.storage directly Sucks! * all logger-related logic should go to the module and not be flying around (import TS, clear, isEmpty)
* Fix arrays in xmlrpc module0.24Matěj Cepl2010-09-241-48/+66
|
* innerHTML is a good servant ... scrap it, it is bad servant even.Matěj Cepl2010-09-231-8/+4
|
* Adding parsed backtraces seems to be functional. Yuhooo! \o/Matěj Cepl2010-09-214-52/+60
| | | | | * rhbzpage.addNewAttachmentRow finally beaten into submission * util.parseXMLfromString ... it is better to hide this
* Make showing parsed backtrace at least workingMatěj Cepl2010-09-202-21/+45
| | | | | | | | * Fill always this.parsedAttachments parameter with attachments with parsed backtraces * Add a ton of Javadocs to rhbzpage methods * The window with parsed backtrace should be on the top * addNewAttachmentRow is called but made ineffective
* Add checking of HTTP status in rhbzpage.showAttachmentMatěj Cepl2010-09-191-7/+13
|
* Fix .split() methodMatěj Cepl2010-09-193-10/+7
|
* First working version.Matěj Cepl2010-09-182-53/+137
| | | | | | Missing AJAX-style adding an attachment row to the attachment table. Add createDeadLink function, we don't need to use href='#'
* Wrong id parameter of <a id='showBacktrace' elementMatěj Cepl2010-09-171-3/+6
|
* A lot of hacking, but still not working.Matěj Cepl2010-09-171-33/+38
|
* Some thoughts on the backtrace showingMatěj Cepl2010-09-172-49/+84
|
* First attempt to attach backtraces instead of pasting them into commentsMatěj Cepl2010-09-171-7/+44
|
* Add also chipset and driver information to the Xorg log analysisMatěj Cepl2010-09-152-2/+14
| | | | * also adding removeDuplicates to util.js
* Clarify the situation with getBugNo.Matěj Cepl2010-09-142-10/+6
| | | | | | | | | * get rid off getBugId ... it was never used and silly * improve javadoc of getBugNo and explain why it is in util.js, although it would more belong to bzpage.js (hint: there are no unit tests for bzpage.js) * add a test showing that aliases are not convereted to proper numerical bug numbers
* Fixed number of lines in the head of the Xorg.0.log analysisMatěj Cepl2010-09-141-2/+3
| | | | Fixes #48
* Make certain that this.bugNo is really numerical value of bug number.Matěj Cepl2010-09-102-36/+15
| | | | | | | | | Fixes #45 * move getLogin and getPassword to bzpage (upstream bugzilla actually has SOME XML-RPC) * don't test for correct bug number in logger, when we have the bug no. correct in the first place.
* Getting Bug.get via XML-RPCMatěj Cepl2010-09-104-24/+77
|
* Add console.log to show what's going on in getOptionTableCellMatěj Cepl2010-09-101-0/+1
|
* Impove Xorg analysis results0.23Matěj Cepl2010-09-061-0/+7
| | | | | * remove headers which are always the same * add summary with number of matching lines.
* We don't have getVersion method anymore0.21Matěj Cepl2010-08-202-5/+2
|
* Actually really fix #43 and simplification of collecting information.0.20Matěj Cepl2010-08-193-79/+51
| | | | Release 0.20
* Changed RH Bugzilla moved reporter's address to other column. Fixed.0.19Matěj Cepl2010-08-191-0/+5
| | | | Fixes #43
* Make skipping attachments workingMatěj Cepl2010-08-192-17/+14
| | | | | | | | - add attachment.cgi$ to skipMatches regexp - NotLoggedinException should be caught in main.js not in rhbzpage.js Fixes #41 New release 0.18
* Catch up with changes in new RH bugzillaMatěj Cepl2010-08-161-9/+13
| | | | - also add a diagnostics for future use.
* Make scripts compatible with bugzilla.gnome.orgMatěj Cepl2010-08-081-3/+4
| | | | | | | | | Fixes #38 - Eliminate automatic "all" packages for bugzillas undefined in enabledPackages object, - Config_data.json: do have enabledPackages with RH BZ "all" comments - Fix spread of buttons in Gnome BZ
* More compatibility with bugzilla.gnome.orgMatěj Cepl2010-08-081-2/+24
|
* Gnome makes emails much more complicated.Matěj Cepl2010-08-061-2/+8
| | | | | Also adding bugzilla.gnome.org to the default JSON so that it can be configured to some other JSON file.
* Remove elements based on the configuration JSON file (configData.killNodesMatěj Cepl2010-08-052-0/+30
| | | | object).