/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
__init__.py | 5 from .bugzilla import Bugzilla, parse_bug_id, parse_bug_id_from_changelog
|
bug_unittest.py | 37 bug = Bug({"assigned_to_email": email}, bugzilla=None) 39 bug = Bug({"assigned_to_email": "test@test.com"}, bugzilla=None)
|
bugzilla_unittest.py | 33 from .bugzilla import Bugzilla, BugzillaQueries, parse_bug_id, parse_bug_id_from_changelog 85 bugs = Bugzilla() 92 bugs = Bugzilla() 164 <!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/bugzilla.dtd"> 165 <bugzilla version="3.2.3" 171 </bugzilla> 250 bug = Bugzilla()._parse_bug_dictionary_from_xml(self._single_bug_xml) 254 <bugzilla version="3.2.3" urlbase="https://bugs.webkit.org/" maintainer="admin@webkit.org" exporter="eric@we (…) [all...] |
bug.py | 39 def __init__(self, bug_dictionary, bugzilla): 41 self._bugzilla = bugzilla 68 # Bugzilla has many status states we don't really use in WebKit:
|
bugzilla.py | 31 # WebKit's Python module for interacting with Bugzilla 56 match = re.search(Bugzilla.bug_url_short, message) 59 match = re.search(Bugzilla.bug_url_long, message) 71 match = re.search("^\s*" + Bugzilla.bug_url_short + "$", message, re.MULTILINE) 74 match = re.search("^\s*" + Bugzilla.bug_url_long + "$", message, re.MULTILINE) 85 # A container for all of the logic for making and parsing bugzilla queries. 88 def __init__(self, bugzilla): 89 self._bugzilla = bugzilla 96 # This is kinda a hack. There is probably a better way to get this information from bugzilla. 118 # Bugzilla results pages have an "XML" submit button at the botto [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/util/bugzilla/ |
Messages.java | 8 package org.eclipse.releng.util.bugzilla; 17 private static final String BUNDLE_NAME = "org.eclipse.releng.util.bugzilla.messages"; //$NON-NLS-1$
|
/external/webkit/Tools/Scripts/webkitpy/common/config/ |
committervalidator_unittest.py | 36 validator = CommitterValidator(bugzilla=None) 40 - If you do not have review rights please read http://webkit.org/coding/contributing.html for instructions on how to use bugzilla flags.
|
committervalidator.py | 39 def __init__(self, bugzilla): 40 self._bugzilla = bugzilla 67 message += "\n\n- If you do not have %s rights please read %s for instructions on how to use bugzilla flags." % (
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/ |
bugTools.jar | |
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
postdiffforrevert.py | 29 from webkitpy.common.net.bugzilla import Attachment
|
/external/webkit/Tools/Scripts/webkitpy/common/ |
host.py | 34 from webkitpy.common.net import bugzilla, buildbot, irc, statusserver namespace 41 self.bugs = bugzilla.Bugzilla()
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
changelog_unittest.py | 79 * Scripts/bugzilla-tool: 130 * Scripts/bugzilla-tool:
|
changelog.py | 39 from webkitpy.common.net.bugzilla import parse_bug_id_from_changelog
|
api.py | 38 from webkitpy.common.net.bugzilla import parse_bug_id_from_changelog
|
/external/webkit/Tools/Scripts/webkitpy/style/checkers/ |
changelog.py | 30 from webkitpy.common.net.bugzilla import parse_bug_id_from_changelog
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
sheriff.py | 30 from webkitpy.common.net.bugzilla import parse_bug_id
|
commitqueuetask_unittest.py | 32 from webkitpy.common.net import bugzilla namespace 382 bug = bugzilla.Bug(bug_dict, None) 383 patch = bugzilla.Attachment(attachment_dict, bug)
|
irc_command.py | 34 from webkitpy.common.net.bugzilla import parse_bug_id
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
queries_unittest.py | 31 from webkitpy.common.net.bugzilla import Bugzilla
|
queuestest.py | 31 from webkitpy.common.net.bugzilla import Attachment
|
queues_unittest.py | 33 from webkitpy.common.net.bugzilla import Attachment 132 - If you do not have committer rights please read http://webkit.org/coding/contributing.html for instructions on how to use bugzilla flags.
|
queues.py | 42 from webkitpy.common.net.bugzilla import Attachment 216 # If for some reason bugzilla is just down, then it will be re-fed later.
|
/external/webkit/Tools/Scripts/webkitpy/tool/ |
main.py | 30 # A tool for automating dealing with bugzilla, posting patches, committing patches, etc. 40 from webkitpy.common.net.bugzilla import Bugzilla
|
mocktool.py | 35 from webkitpy.common.net.bugzilla import Bug, Attachment 212 def __init__(self, bugzilla): 214 self._bugzilla = bugzilla 240 # test_assign_to_committer the real pending-commit query on bugzilla 253 # FIXME: Bugzilla is the wrong Mock-point. Once we have a BugzillaNetwork 255 # Most of this class is just copy/paste from Bugzilla.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/ |
UpdateBugStateTask.java | 9 package org.eclipse.releng.services.bugzilla; 30 import org.eclipse.releng.util.bugzilla.Messages; 364 /* the Bugzilla search form generates a massive URL, but thankfully doesn't 440 args.put(LONGDESCLENGTH, new Integer(1)); //Bugzilla doesn't seem to use this, but demands it anyways 472 /* sometimes Bugzilla omits bug_file_loc if it's blank... */
|