aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib
Commit message (Collapse)AuthorAgeFilesLines
* Get back Next shortcut (I have no idea where it got lost).Matěj Cepl2011-08-061-11/+15
| | | | Also made jslintable.
* Add some simple analysis of dmesg output.Matěj Cepl2011-08-062-34/+43
| | | | | | | Adds to dmesg attachments "check" link filtering on /[fF]ail|[eE]rror|drm/ Fix #111
* Merge branch 'bugzillatweaks' into next.Matěj Cepl2011-07-195-59/+285
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a horribly botched branch merged. Conflicts: chip-data/chipNames.json data/lib/bugzillaDOMFunctions.js data/lib/bzpage.js data/lib/jumpNextBug.js data/lib/otherButtons.js data/lib/queries.js data/lib/util.js data/rhlib/addAttachmentRow.js data/rhlib/fixingAttMIME.js data/rhlib/rhbzpage.js data/tweaks/bug-page-mod.js data/tweaks/viewSource.js lib/libbugzilla.js lib/main.js package.json
| * Adding external ticket reference.Matěj Cepl2011-06-111-0/+7
| | | | | | | | Fix #106
| * And even chip magic now works with new Attachment objects.Matěj Cepl2011-06-071-2/+4
| |
| * Make check link working again.Matěj Cepl2011-06-062-3/+4
| |
| * Make sending bugs upstream working (collecting comments was broken).Matěj Cepl2011-06-061-3/+8
| |
| * Make coloring reporter’s comments working again.Matěj Cepl2011-06-062-11/+10
| |
| * Make fixing MIME types of attachments working again.Matěj Cepl2011-06-061-1/+1
| | | | | | | | When the Attachment is suddenly object instead of an array.
| * Move attachments and comments functions into four separate objects.Matěj Cepl2011-06-055-1109/+220
| | | | | | | | | | Specifically there are objects AttachList, Attachment, Comment, and CommentList.
| * Moving ahead ... storing the progress for future.Matěj Cepl2011-06-053-1/+46
| |
| * Working on analysis of bug-page-mod module.Matěj Cepl2011-06-052-2/+992
| | | | | | | | | | * Add some notes * remove getBugNumber and replaced with my getBugNo.
| * Add a comment to follow key shortcut for Next bug.Matěj Cepl2011-06-051-50/+12
| |
| * First draft of the flags handling for Mozilla bugzilla.Matěj Cepl2011-06-051-1/+1
| | | | | | | | Will fix #103 (when reviewed)
| * Move RH BZ-related XMLRPC calls to data/rhlib/ directory.Matěj Cepl2011-06-052-229/+0
| | | | | | | | Fixes #79
| * Warn against multiple items in some {XML,JSON}RPC calls.Matěj Cepl2011-06-051-1/+1
| | | | | | | | Fix #84.
| * Forgot debugging printMatěj Cepl2011-06-051-1/+0
| |
| * Don't run chip magic on already triaged bugs.Matěj Cepl2011-06-051-3/+5
| | | | | | | | | | Fix #96 Signed-off-by: Matěj Cepl <mcepl@redhat.com>
| * Really Eclipseize formatting.Matěj Cepl2011-06-058-138/+139
| |
| * We don't suppport card_CODE in Whiteboard.Matěj Cepl2011-06-051-5/+1
| | | | | | | | Besides it broke the script when Whiteboard is no more.
| * Make inline history (if it worked, that is ;)) configurable.Matěj Cepl2011-06-052-1/+5
| | | | | | | | | | | | * JSON must contain configData.verboseInlineHistory * enable it for mozilla JSON per default * also move call of addNewLinks to bzpage.js
| * Another massive cleanup and simplification of tweak scripts.Matěj Cepl2011-06-053-41/+56
| | | | | | | | | | | | | | bugs on bugzilla.mozilla.org now work as well, although the history is still not shown inline, which remains for 1.1. Fixes #88
| * Make the script working with bugzilla.gnome.orgMatěj Cepl2011-06-052-15/+16
| | | | | | | | | | | | | | * Fix Config_gnome.json for new system of killNodes * Make the script more tolerable to non-RH configuration Fixes #75
| * Release 0.103Matěj Cepl2011-06-051-1/+0
| |
| * Removing unimportant parts of the page as a prevention against #65Matěj Cepl2011-06-052-33/+55
| | | | | | | | | | | | There is now complete analysis of the issue, but I don’t know how to fix it, because we just write into various input boxes and they got focus (and subsequently Firefox makes them visible).
| * Add makeJSONRPCCallWithLogin, and other small issues.Matěj Cepl2011-06-051-1/+1
| | | | | | | | | | | | * Release 0.102 * Don't react on bugzilla.gnome.org per default * Simplify handling of preferences and debugging output.
| * Make my console.myDebug configurable via about:config preference.Matěj Cepl2011-06-052-7/+6
| | | | | | | | That is the Boolean variable bugzilla-triage.setting.debug
| * Make the script more reliable against JSON-hosting sites being down.Matěj Cepl2011-06-051-4/+4
| | | | | | | | Fixes #92
| * Make filterByRegexp more tolerant to different configurations.Matěj Cepl2011-06-052-3/+3
| | | | | | | | | | | | | | * filterByRegexp shouldn’t crash when list is undefined * also be more tolerant for nonexistent some RH-specific functions Fixes #91.
| * Comment away activation of tweakBugzilla for 0.99 release.Matěj Cepl2011-06-051-3/+3
| |
| * There is no <a name="add_comment"> in 4.0 BZ and it is not necessary anyway.Matěj Cepl2011-06-051-1/+1
| |
| * Incompatibility bits.Matěj Cepl2011-06-052-3/+3
| | | | | | | | | | | | * global onMessage is not chic anymore, replacing with self.on handler. * filterByRegexp returns string and could return null. Make sure we can survive it.
| * All XML-RPC calls are rewritten as JSON-RPC ones.Matěj Cepl2011-06-053-21/+42
| | | | | | | | | | * also MakeJSONRPCall is a functional call now * reorganization for dealing with the history.
| * Reorganization.Matěj Cepl2011-06-0510-2028/+0
| | | | | | | | | | | | | | | | * fixingAttMIME, rhbzpage, xorgBugCategories moved to data/rhlib directory, * docs directory removed ... keep documentation in JSDocs; rewrite in MD is a waste of time. * move Ehsan’s scripts to separate data/tweaks directory.
| * Reformatting to MoFo coding styleMatěj Cepl2011-06-0520-595/+763
| |
| * A bit of analysis of bugzilla-tweak scriptMatěj Cepl2011-06-051-0/+12
| |
| * Two small typosMatěj Cepl2011-06-051-1/+1
| | | | | | | | | | | | * it is config.XorgLogAnalysis not lowercase one * timeSheetRecordsPrinter needs to be declared, otherwise it is not available inside of the logger.js module itself.
| * Use self.on and self.postMessage instead of global on and postMessage.Matěj Cepl2011-06-0510-24/+24
| | | | | | | | | | The reason is https://bugzilla.mozilla.org/show_bug.cgi?id=635748 and effort to save the world from global variables in content scripts.
| * We don't set severity for RHEL bugsMatěj Cepl2011-06-051-1/+1
| |
| * Setup logging of submits only when asked for.Matěj Cepl2011-06-052-4/+5
| | | | | | | | Fixes #86
| * Don't allow marking bug as triaged when it doesn't have severity set.Matěj Cepl2011-06-052-2/+16
| |
| * Fixed other functions brokenMatěj Cepl2011-06-055-9/+23
| | | | | | | | | | | | | | * not all functions are able to accept the null as return value (directly or indirectly) of filterByRegexp * finally make all logic not to affect components which shouldn't be bothered with the test.
| * Make the categories work only for Xorg bugs.Matěj Cepl2011-06-054-12/+26
| |
| * Add the roll-down list for selection of categories.Matěj Cepl2011-06-053-1/+60
| |
| * Fix nvidia.Matěj Cepl2011-06-052-44/+33
| | | | | | | | | | What to do when nvidia chipset is using VESA drivers or something similar. Driver names are not 100% proxy for the card type.
| * debugFlag must be in util.js as well.Matěj Cepl2011-06-052-3/+3
| |
| * Fixing "Fixing Magic" for nvidia.Matěj Cepl2011-06-051-3/+35
| |
| * Add better logging support.Matěj Cepl2011-06-052-2/+13
| | | | | | | | https://bugzilla.mozilla.org/show_bug.cgi?id=582760 is still unfixed.
| * Working on analysis of bug-page-mod module.Matěj Cepl2011-06-052-14/+13
| | | | | | | | | | * Add some notes * remove getBugNumber and replaced with my getBugNo.
| * Add a comment to follow key shortcut for Next bug.Matěj Cepl2011-06-051-42/+12
| |