实例介绍
bugzilla 4.4.6 一款bug管理工具 免费开源软件
【实例截图】
【核心代码】
4744300845132617135.rar
└── bugzilla-4.4.6
└── bugzilla-4.4.6
├── admin.cgi
├── attachment.cgi
├── buglist.cgi
├── Bugzilla
│ ├── Attachment
│ │ └── PatchReader.pm
│ ├── Attachment.pm
│ ├── Auth
│ │ ├── Login
│ │ │ ├── CGI.pm
│ │ │ ├── Cookie.pm
│ │ │ ├── Env.pm
│ │ │ └── Stack.pm
│ │ ├── Login.pm
│ │ ├── Persist
│ │ │ └── Cookie.pm
│ │ ├── Verify
│ │ │ ├── DB.pm
│ │ │ ├── LDAP.pm
│ │ │ ├── RADIUS.pm
│ │ │ └── Stack.pm
│ │ └── Verify.pm
│ ├── Auth.pm
│ ├── BugMail.pm
│ ├── Bug.pm
│ ├── BugUrl
│ │ ├── Bugzilla
│ │ │ └── Local.pm
│ │ ├── Bugzilla.pm
│ │ ├── Debian.pm
│ │ ├── GitHub.pm
│ │ ├── Google.pm
│ │ ├── JIRA.pm
│ │ ├── Launchpad.pm
│ │ ├── MantisBT.pm
│ │ ├── SourceForge.pm
│ │ └── Trac.pm
│ ├── BugUrl.pm
│ ├── CGI.pm
│ ├── Chart.pm
│ ├── Classification.pm
│ ├── Comment.pm
│ ├── Component.pm
│ ├── Config
│ │ ├── Admin.pm
│ │ ├── Advanced.pm
│ │ ├── Attachment.pm
│ │ ├── Auth.pm
│ │ ├── BugChange.pm
│ │ ├── BugFields.pm
│ │ ├── Common.pm
│ │ ├── Core.pm
│ │ ├── DependencyGraph.pm
│ │ ├── General.pm
│ │ ├── GroupSecurity.pm
│ │ ├── LDAP.pm
│ │ ├── MTA.pm
│ │ ├── PatchViewer.pm
│ │ ├── Query.pm
│ │ ├── RADIUS.pm
│ │ ├── ShadowDB.pm
│ │ └── UserMatch.pm
│ ├── Config.pm
│ ├── Constants.pm
│ ├── DB
│ │ ├── Mysql.pm
│ │ ├── Oracle.pm
│ │ ├── Pg.pm
│ │ ├── Schema
│ │ │ ├── Mysql.pm
│ │ │ ├── Oracle.pm
│ │ │ ├── Pg.pm
│ │ │ └── Sqlite.pm
│ │ ├── Schema.pm
│ │ └── Sqlite.pm
│ ├── DB.pm
│ ├── Error.pm
│ ├── Extension.pm
│ ├── Field
│ │ ├── ChoiceInterface.pm
│ │ └── Choice.pm
│ ├── Field.pm
│ ├── Flag.pm
│ ├── FlagType.pm
│ ├── Group.pm
│ ├── Hook.pm
│ ├── Install
│ │ ├── CPAN.pm
│ │ ├── DB.pm
│ │ ├── Filesystem.pm
│ │ ├── Localconfig.pm
│ │ ├── Requirements.pm
│ │ └── Util.pm
│ ├── Install.pm
│ ├── Job
│ │ └── Mailer.pm
│ ├── JobQueue
│ │ └── Runner.pm
│ ├── JobQueue.pm
│ ├── Keyword.pm
│ ├── Mailer.pm
│ ├── Migrate
│ │ └── Gnats.pm
│ ├── Migrate.pm
│ ├── Milestone.pm
│ ├── Object.pm
│ ├── Product.pm
│ ├── Report.pm
│ ├── RNG.pm
│ ├── Search
│ │ ├── ClauseGroup.pm
│ │ ├── Clause.pm
│ │ ├── Condition.pm
│ │ ├── Quicksearch.pm
│ │ ├── Recent.pm
│ │ └── Saved.pm
│ ├── Search.pm
│ ├── Send
│ │ └── Sendmail.pm
│ ├── Series.pm
│ ├── Status.pm
│ ├── Template
│ │ ├── Context.pm
│ │ └── Plugin
│ │ ├── Bugzilla.pm
│ │ └── Hook.pm
│ ├── Template.pm
│ ├── Token.pm
│ ├── Update.pm
│ ├── User
│ │ ├── Setting
│ │ │ ├── Lang.pm
│ │ │ ├── Skin.pm
│ │ │ └── Timezone.pm
│ │ └── Setting.pm
│ ├── UserAgent.pm
│ ├── User.pm
│ ├── Util.pm
│ ├── Version.pm
│ ├── WebService
│ │ ├── Bug.pm
│ │ ├── Bugzilla.pm
│ │ ├── Classification.pm
│ │ ├── Constants.pm
│ │ ├── Group.pm
│ │ ├── Product.pm
│ │ ├── README
│ │ ├── Server
│ │ │ ├── JSONRPC.pm
│ │ │ └── XMLRPC.pm
│ │ ├── Server.pm
│ │ ├── User.pm
│ │ └── Util.pm
│ ├── WebService.pm
│ ├── Whine
│ │ ├── Query.pm
│ │ └── Schedule.pm
│ └── Whine.pm
├── Bugzilla.pm
├── Build.PL
├── chart.cgi
├── checksetup.pl
├── colchange.cgi
├── collectstats.pl
├── config.cgi
├── contrib
│ ├── Bugzilla.pm
│ ├── bugzilla-queue.rhel
│ ├── bugzilla-queue.suse
│ ├── bugzilla-submit
│ │ ├── bugdata.txt
│ │ ├── bugzilla-submit
│ │ ├── bugzilla-submit.xml
│ │ └── README
│ ├── bzdbcopy.pl
│ ├── bz_webservice_demo.pl
│ ├── cmdline
│ │ ├── bugcount
│ │ ├── bugids
│ │ ├── buglist
│ │ ├── bugs
│ │ ├── bugslink
│ │ ├── makequery
│ │ └── query.conf
│ ├── console.pl
│ ├── convert-workflow.pl
│ ├── cvs-update.pl
│ ├── extension-convert.pl
│ ├── fixperms.pl
│ ├── jb2bz.py
│ ├── merge-users.pl
│ ├── mysqld-watcher.pl
│ ├── new-yui.sh
│ ├── README
│ ├── recode.pl
│ ├── sendbugmail.pl
│ ├── sendunsentbugmail.pl
│ └── syncLDAP.pl
├── createaccount.cgi
├── describecomponents.cgi
├── describekeywords.cgi
├── docs
│ ├── bugzilla.ent
│ ├── bugzilla.ent.tmpl
│ ├── en
│ │ ├── html
│ │ │ ├── about.html
│ │ │ ├── administration.html
│ │ │ ├── api
│ │ │ │ ├── Bugzilla
│ │ │ │ │ ├── Attachment.html
│ │ │ │ │ ├── Auth
│ │ │ │ │ │ ├── Login.html
│ │ │ │ │ │ └── Verify.html
│ │ │ │ │ ├── Auth.html
│ │ │ │ │ ├── CGI.html
│ │ │ │ │ ├── Classification.html
│ │ │ │ │ ├── Comment.html
│ │ │ │ │ ├── Component.html
│ │ │ │ │ ├── Config
│ │ │ │ │ │ └── Common.html
│ │ │ │ │ ├── Config.html
│ │ │ │ │ ├── DB
│ │ │ │ │ │ ├── Mysql.html
│ │ │ │ │ │ ├── Oracle.html
│ │ │ │ │ │ ├── Pg.html
│ │ │ │ │ │ ├── Schema.html
│ │ │ │ │ │ └── Sqlite.html
│ │ │ │ │ ├── DB.html
│ │ │ │ │ ├── Error.html
│ │ │ │ │ ├── Extension.html
│ │ │ │ │ ├── Field
│ │ │ │ │ │ ├── Choice.html
│ │ │ │ │ │ └── ChoiceInterface.html
│ │ │ │ │ ├── Field.html
│ │ │ │ │ ├── Flag.html
│ │ │ │ │ ├── FlagType.html
│ │ │ │ │ ├── Group.html
│ │ │ │ │ ├── Hook.html
│ │ │ │ │ ├── Install
│ │ │ │ │ │ ├── CPAN.html
│ │ │ │ │ │ ├── DB.html
│ │ │ │ │ │ ├── Filesystem.html
│ │ │ │ │ │ ├── Localconfig.html
│ │ │ │ │ │ ├── Requirements.html
│ │ │ │ │ │ └── Util.html
│ │ │ │ │ ├── Install.html
│ │ │ │ │ ├── JobQueue
│ │ │ │ │ │ └── Runner.html
│ │ │ │ │ ├── JobQueue.html
│ │ │ │ │ ├── Keyword.html
│ │ │ │ │ ├── Migrate.html
│ │ │ │ │ ├── Milestone.html
│ │ │ │ │ ├── Object.html
│ │ │ │ │ ├── Product.html
│ │ │ │ │ ├── Report.html
│ │ │ │ │ ├── Search
│ │ │ │ │ │ ├── Recent.html
│ │ │ │ │ │ └── Saved.html
│ │ │ │ │ ├── Search.html
│ │ │ │ │ ├── Status.html
│ │ │ │ │ ├── Template
│ │ │ │ │ │ └── Plugin
│ │ │ │ │ │ ├── Bugzilla.html
│ │ │ │ │ │ └── Hook.html
│ │ │ │ │ ├── Template.html
│ │ │ │ │ ├── Token.html
│ │ │ │ │ ├── Update.html
│ │ │ │ │ ├── User
│ │ │ │ │ │ ├── Setting
│ │ │ │ │ │ │ ├── Lang.html
│ │ │ │ │ │ │ ├── Skin.html
│ │ │ │ │ │ │ └── Timezone.html
│ │ │ │ │ │ └── Setting.html
│ │ │ │ │ ├── UserAgent.html
│ │ │ │ │ ├── User.html
│ │ │ │ │ ├── Util.html
│ │ │ │ │ ├── Version.html
│ │ │ │ │ ├── WebService
│ │ │ │ │ │ ├── Bug.html
│ │ │ │ │ │ ├── Bugzilla.html
│ │ │ │ │ │ ├── Classification.html
│ │ │ │ │ │ ├── Group.html
│ │ │ │ │ │ ├── Product.html
│ │ │ │ │ │ ├── Server
│ │ │ │ │ │ │ ├── JSONRPC.html
│ │ │ │ │ │ │ └── XMLRPC.html
│ │ │ │ │ │ ├── User.html
│ │ │ │ │ │ └── Util.html
│ │ │ │ │ ├── WebService.html
│ │ │ │ │ ├── Whine
│ │ │ │ │ │ ├── Query.html
│ │ │ │ │ │ └── Schedule.html
│ │ │ │ │ └── Whine.html
│ │ │ │ ├── Bugzilla.html
│ │ │ │ ├── checksetup.html
│ │ │ │ ├── collectstats.html
│ │ │ │ ├── contrib
│ │ │ │ │ ├── bzdbcopy.html
│ │ │ │ │ ├── bz_webservice_demo.html
│ │ │ │ │ ├── console.html
│ │ │ │ │ ├── extension-convert.html
│ │ │ │ │ ├── merge-users.html
│ │ │ │ │ └── recode.html
│ │ │ │ ├── email_in.html
│ │ │ │ ├── extensions
│ │ │ │ │ └── create.html
│ │ │ │ ├── importxml.html
│ │ │ │ ├── index.html
│ │ │ │ ├── install-module.html
│ │ │ │ ├── jobqueue.html
│ │ │ │ ├── migrate.html
│ │ │ │ └── sanitycheck.html
│ │ │ ├── attachments.html
│ │ │ ├── bug_page.html
│ │ │ ├── bugreports.html
│ │ │ ├── bug_status_workflow.html
│ │ │ ├── Bugzilla-Guide.html
│ │ │ ├── Bugzilla-Guide.proc
│ │ │ ├── classifications.html
│ │ │ ├── cmdline-bugmail.html
│ │ │ ├── cmdline.html
│ │ │ ├── components.html
│ │ │ ├── configuration.html
│ │ │ ├── conventions.html
│ │ │ ├── copyright.html
│ │ │ ├── credits.html
│ │ │ ├── cust-change-permissions.html
│ │ │ ├── custom-fields.html
│ │ │ ├── customization.html
│ │ │ ├── cust-skins.html
│ │ │ ├── cust-templates.html
│ │ │ ├── disclaimer.html
│ │ │ ├── edit-values.html
│ │ │ ├── extensions.html
│ │ │ ├── extraconfig.html
│ │ │ ├── flags.html
│ │ │ ├── flags-overview.html
│ │ │ ├── general-advice.html
│ │ │ ├── gfdl-0.html
│ │ │ ├── gfdl-10.html
│ │ │ ├── gfdl-1.html
│ │ │ ├── gfdl-2.html
│ │ │ ├── gfdl-3.html
│ │ │ ├── gfdl-4.html
│ │ │ ├── gfdl-5.html
│ │ │ ├── gfdl-6.html
│ │ │ ├── gfdl-7.html
│ │ │ ├── gfdl-8.html
│ │ │ ├── gfdl-9.html
│ │ │ ├── gfdl-howto.html
│ │ │ ├── gfdl.html
│ │ │ ├── glossary.html
│ │ │ ├── groups.html
│ │ │ ├── hintsandtips.html
│ │ │ ├── index.html
│ │ │ ├── installation.html
│ │ │ ├── installing-bugzilla.html
│ │ │ ├── install-perlmodules-manual.html
│ │ │ ├── integration.html
│ │ │ ├── keywords.html
│ │ │ ├── lifecycle.html
│ │ │ ├── milestones.html
│ │ │ ├── modules-manual-download.html
│ │ │ ├── modules-manual-instructions.html
│ │ │ ├── modules-manual-optional.html
│ │ │ ├── multiple-bz-dbs.html
│ │ │ ├── myaccount.html
│ │ │ ├── newversions.html
│ │ │ ├── nonroot.html
│ │ │ ├── os-specific.html
│ │ │ ├── parameters.html
│ │ │ ├── paranoid-security.html
│ │ │ ├── patches.html
│ │ │ ├── products.html
│ │ │ ├── query.html
│ │ │ ├── quips.html
│ │ │ ├── reporting.html
│ │ │ ├── sanitycheck.html
│ │ │ ├── security-bugzilla.html
│ │ │ ├── security.html
│ │ │ ├── security-os.html
│ │ │ ├── security-webserver.html
│ │ │ ├── timetracking.html
│ │ │ ├── trbl-dbdSponge.html
│ │ │ ├── trbl-index.html
│ │ │ ├── trbl-passwd-encryption.html
│ │ │ ├── trbl-perlmodule.html
│ │ │ ├── trbl-relogin-everyone.html
│ │ │ ├── trbl-testserver.html
│ │ │ ├── troubleshooting.html
│ │ │ ├── upgrade.html
│ │ │ ├── useradmin.html
│ │ │ ├── userpreferences.html
│ │ │ ├── using.html
│ │ │ ├── using-intro.html
│ │ │ ├── versions.html
│ │ │ ├── voting.html
│ │ │ └── whining.html
│ │ ├── images
│ │ │ ├── bzLifecycle.png
│ │ │ ├── bzLifecycle.xml
│ │ │ ├── callouts
│ │ │ │ ├── 1.gif
│ │ │ │ ├── 2.gif
│ │ │ │ └── 3.gif
│ │ │ ├── caution.gif
│ │ │ ├── note.gif
│ │ │ ├── tip.gif
│ │ │ └── warning.gif
│ │ │ └── Bugzilla-Guide.pdf
│ │ ├── README.docs
│ │ ├── rel_notes.txt
│ │ ├── txt
│ │ │ └── Bugzilla-Guide.txt
│ │ └── xml
│ │ ├── about.xml
│ │ ├── administration.xml
│ │ ├── bugzilla.ent
│ │ ├── Bugzilla-Guide.xml
│ │ ├── conventions.xml
│ │ ├── customization.xml
│ │ ├── gfdl.xml
│ │ ├── glossary.xml
│ │ ├── index.xml
│ │ ├── installation.xml
│ │ ├── modules.xml
│ │ ├── patches.xml
│ │ ├── security.xml
│ │ ├── troubleshooting.xml
│ │ └── using.xml
│ ├── lib
│ │ └── Pod
│ │ └── Simple
│ │ ├── HTML
│ │ │ └── Bugzilla.pm
│ │ └── HTMLBatch
│ │ └── Bugzilla.pm
│ ├── makedocs.pl
│ ├── style.css
│ └── xsl
│ ├── bugzilla-docs.xsl
│ ├── chunks.xsl
│ ├── nochunks.xsl
│ └── pdf.xsl
├── duplicates.cgi
├── editclassifications.cgi
├── editcomponents.cgi
├── editfields.cgi
├── editflagtypes.cgi
├── editgroups.cgi
├── editkeywords.cgi
├── editmilestones.cgi
├── editparams.cgi
├── editproducts.cgi
├── editsettings.cgi
├── editusers.cgi
├── editvalues.cgi
├── editversions.cgi
├── editwhines.cgi
├── editworkflow.cgi
├── email_in.pl
├── enter_bug.cgi
├── extensions
│ ├── BmpConvert
│ │ ├── Config.pm
│ │ ├── disabled
│ │ └── Extension.pm
│ ├── create.pl
│ ├── Example
│ │ ├── Config.pm
│ │ ├── disabled
│ │ ├── Extension.pm
│ │ ├── lib
│ │ │ ├── Auth
│ │ │ │ ├── Login.pm
│ │ │ │ └── Verify.pm
│ │ │ ├── Config.pm
│ │ │ ├── Util.pm
│ │ │ └── WebService.pm
│ │ └── template
│ │ └── en
│ │ └── default
│ │ ├── account
│ │ │ └── prefs
│ │ │ └── my_tab.html.tmpl
│ │ ├── admin
│ │ │ └── params
│ │ │ └── example.html.tmpl
│ │ ├── hook
│ │ │ ├── account
│ │ │ │ └── prefs
│ │ │ │ └── prefs-tabs.html.tmpl
│ │ │ ├── admin
│ │ │ │ ├── params
│ │ │ │ │ └── editparams-current_panel.html.tmpl
│ │ │ │ └── sanitycheck
│ │ │ │ └── messages-statuses.html.tmpl
│ │ │ └── global
│ │ │ ├── footer-end.html.tmpl
│ │ │ ├── setting-descs-settings.none.tmpl
│ │ │ └── user-error-errors.html.tmpl
│ │ ├── pages
│ │ │ └── example.html.tmpl
│ │ └── setup
│ │ └── strings.txt.pl
│ ├── MoreBugUrl
│ │ ├── Config.pm
│ │ ├── disabled
│ │ ├── Extension.pm
│ │ ├── lib
│ │ │ ├── GetSatisfaction.pm
│ │ │ ├── PHP.pm
│ │ │ ├── ReviewBoard.pm
│ │ │ ├── Rietveld.pm
│ │ │ └── RT.pm
│ │ └── template
│ │ └── en
│ │ └── default
│ │ └── hook
│ │ └── global
│ │ └── user-error-bug_url_invalid_tracker.html.tmpl
│ ├── OldBugMove
│ │ ├── Config.pm
│ │ ├── disabled
│ │ ├── Extension.pm
│ │ ├── lib
│ │ │ └── Params.pm
│ │ └── template
│ │ └── en
│ │ └── default
│ │ ├── admin
│ │ │ └── params
│ │ │ └── oldbugmove.html.tmpl
│ │ └── hook
│ │ ├── bug
│ │ │ ├── edit-after_comment_textarea.html.tmpl
│ │ │ └── format_comment-type.txt.tmpl
│ │ ├── global
│ │ │ ├── user-error-auth_failure_action.html.tmpl
│ │ │ └── user-error-errors.html.tmpl
│ │ └── list
│ │ └── edit-multiple-after_groups.html.tmpl
│ └── Voting
│ ├── Config.pm
│ ├── disabled
│ ├── Extension.pm
│ ├── template
│ │ └── en
│ │ └── default
│ │ ├── hook
│ │ │ ├── account
│ │ │ │ └── prefs
│ │ │ │ └── email-relationships.html.tmpl
│ │ │ ├── admin
│ │ │ │ ├── products
│ │ │ │ │ ├── edit-common-rows.html.tmpl
│ │ │ │ │ └── updated-changes.html.tmpl
│ │ │ │ ├── sanitycheck
│ │ │ │ │ └── messages-statuses.html.tmpl
│ │ │ │ └── users
│ │ │ │ └── confirm-delete-warn_safe.html.tmpl
│ │ │ ├── bug
│ │ │ │ ├── edit-after_importance.html.tmpl
│ │ │ │ ├── format_comment-type.txt.tmpl
│ │ │ │ ├── process
│ │ │ │ │ ├── header-title.html.tmpl
│ │ │ │ │ └── results-title.html.tmpl
│ │ │ │ └── show-header-end.html.tmpl
│ │ │ ├── global
│ │ │ │ ├── code-error-errors.html.tmpl
│ │ │ │ ├── field-descs-end.none.tmpl
│ │ │ │ ├── reason-descs-end.none.tmpl
│ │ │ │ └── user-error-errors.html.tmpl
│ │ │ └── search
│ │ │ ├── form-after_freetext_fields.html.tmpl
│ │ │ └── search-report-select-rep_fields.html.tmpl
│ │ ├── pages
│ │ │ ├── voting
│ │ │ │ ├── bug.html.tmpl
│ │ │ │ └── user.html.tmpl
│ │ │ └── voting.html.tmpl
│ │ └── voting
│ │ ├── delete-all.html.tmpl
│ │ └── votes-removed.txt.tmpl
│ └── web
│ └── style.css
├── images
│ ├── favicon.ico
│ └── padlock.png
├── importxml.pl
├── index.cgi
├── install-module.pl
├── jobqueue.pl
├── js
│ ├── attachment.js
│ ├── bug.js
│ ├── change-columns.js
│ ├── comments.js
│ ├── custom-search.js
│ ├── expanding-tree.js
│ ├── field.js
│ ├── flag.js
│ ├── global.js
│ ├── history.js
│ │ ├── license.txt
│ │ ├── native.history.js
│ │ └── readme.txt
│ ├── params.js
│ ├── productform.js
│ ├── TUI.js
│ ├── util.js
│ └── yui
│ ├── animation
│ │ └── animation-min.js
│ ├── assets
│ │ └── skins
│ │ └── sam
│ │ ├── ajax-loader.gif
│ │ ├── asc.gif
│ │ ├── autocomplete.css
│ │ ├── back-h.png
│ │ ├── back-v.png
│ │ ├── bar-h.png
│ │ ├── bar-v.png
│ │ ├── bg-h.gif
│ │ ├── bg-v.gif
│ │ ├── blankimage.png
│ │ ├── button.css
│ │ ├── calendar.css
│ │ ├── carousel.css
│ │ ├── check0.gif
│ │ ├── check1.gif
│ │ ├── check2.gif
│ │ ├── colorpicker.css
│ │ ├── container.css
│ │ ├── datatable.css
│ │ ├── desc.gif
│ │ ├── dt-arrow-dn.png
│ │ ├── dt-arrow-up.png
│ │ ├── editor.css
│ │ ├── editor-knob.gif
│ │ ├── editor-sprite-active.gif
│ │ ├── editor-sprite.gif
│ │ ├── header_background.png
│ │ ├── hue_bg.png
│ │ ├── imagecropper.css
│ │ ├── layout.css
│ │ ├── layout_sprite.png
│ │ ├── loading.gif
│ │ ├── logger.css
│ │ ├── menubaritem_submenuindicator_disabled.png
│ │ ├── menubaritem_submenuindicator.png
│ │ ├── menu-button-arrow-disabled.png
│ │ ├── menu-button-arrow.png
│ │ ├── menu.css
│ │ ├── menuitem_checkbox_disabled.png
│ │ ├── menuitem_checkbox.png
│ │ ├── menuitem_submenuindicator_disabled.png
│ │ ├── menuitem_submenuindicator.png
│ │ ├── paginator.css
│ │ ├── picker_mask.png
│ │ ├── profilerviewer.css
│ │ ├── progressbar.css
│ │ ├── resize.css
│ │ ├── simpleeditor.css
│ │ ├── slider.css
│ │ ├── split-button-arrow-active.png
│ │ ├── split-button-arrow-disabled.png
│ │ ├── split-button-arrow-focus.png
│ │ ├── split-button-arrow-hover.png
│ │ ├── split-button-arrow.png
│ │ ├── sprite.png
│ │ ├── tabview.css
│ │ ├── treeview.css
│ │ ├── treeview-loading.gif
│ │ ├── treeview-sprite.gif
│ │ ├── wait.gif
│ │ └── yuitest.css
│ ├── autocomplete
│ │ └── autocomplete-min.js
│ ├── base
│ │ ├── base.css
│ │ └── base-min.css
│ ├── button
│ │ └── button-min.js
│ ├── calendar
│ │ └── calendar-min.js
│ ├── carousel
│ │ └── carousel-min.js
│ ├── charts
│ │ └── charts-min.js
│ ├── colorpicker
│ │ └── colorpicker-min.js
│ ├── connection
│ │ ├── connection_core-min.js
│ │ ├── connection-min.js
│ │ └── connection.swf
│ ├── container
│ │ ├── container_core-min.js
│ │ └── container-min.js
│ ├── cookie
│ │ └── cookie-min.js
│ ├── datasource
│ │ └── datasource-min.js
│ ├── datatable
│ │ └── datatable-min.js
│ ├── datemath
│ │ └── datemath-min.js
│ ├── dom
│ │ └── dom-min.js
│ ├── dragdrop
│ │ └── dragdrop-min.js
│ ├── element
│ │ └── element-min.js
│ ├── element-delegate
│ │ └── element-delegate-min.js
│ ├── event
│ │ └── event-min.js
│ ├── event-delegate
│ │ └── event-delegate-min.js
│ ├── event-mouseenter
│ │ └── event-mouseenter-min.js
│ ├── event-simulate
│ │ └── event-simulate-min.js
│ ├── fonts
│ │ ├── fonts.css
│ │ └── fonts-min.css
│ ├── get
│ │ └── get-min.js
│ ├── grids
│ │ ├── grids.css
│ │ └── grids-min.css
│ ├── history
│ │ └── history-min.js
│ ├── imagecropper
│ │ └── imagecropper-min.js
│ ├── imageloader
│ │ └── imageloader-min.js
│ ├── json
│ │ └── json-min.js
│ ├── layout
│ │ └── layout-min.js
│ ├── logger
│ │ └── logger-min.js
│ ├── menu
│ │ └── menu-min.js
│ ├── paginator
│ │ └── paginator-min.js
│ ├── profiler
│ │ └── profiler-min.js
│ ├── profilerviewer
│ │ └── profilerviewer-min.js
│ ├── progressbar
│ │ └── progressbar-min.js
│ ├── reset
│ │ ├── reset.css
│ │ └── reset-min.css
│ ├── reset-fonts
│ │ └── reset-fonts.css
│ ├── reset-fonts-grids
│ │ └── reset-fonts-grids.css
│ ├── resize
│ │ └── resize-min.js
│ ├── selector
│ │ └── selector-min.js
│ ├── slider
│ │ └── slider-min.js
│ ├── storage
│ │ └── storage-min.js
│ ├── stylesheet
│ │ └── stylesheet-min.js
│ ├── swf
│ │ └── swf-min.js
│ ├── swfdetect
│ │ └── swfdetect-min.js
│ ├── swfstore
│ │ ├── swfstore-min.js
│ │ └── swfstore.swf
│ ├── tabview
│ │ └── tabview-min.js
│ ├── treeview
│ │ └── treeview-min.js
│ ├── uploader
│ │ └── uploader-min.js
│ ├── yahoo
│ │ └── yahoo-min.js
│ ├── yahoo-dom-event
│ │ └── yahoo-dom-event.js
│ ├── yuiloader
│ │ └── yuiloader-min.js
│ └── yuitest
│ ├── yuitest_core-min.js
│ └── yuitest-min.js
├── jsonrpc.cgi
├── lib
│ ├── CGI
│ │ ├── Carp.pm
│ │ ├── Cookie.pm
│ │ ├── Pretty.pm
│ │ ├── Push.pm
│ │ └── Util.pm
│ ├── CGI.pm
│ └── README
├── MANIFEST.SKIP
├── migrate.pl
├── mod_perl.pl
├── page.cgi
├── post_bug.cgi
├── process_bug.cgi
├── query.cgi
├── quips.cgi
├── README
├── relogin.cgi
├── report.cgi
├── reports.cgi
├── request.cgi
├── robots.txt
├── runtests.pl
├── sanitycheck.cgi
├── sanitycheck.pl
├── search_plugin.cgi
├── show_activity.cgi
├── show_bug.cgi
├── showdependencygraph.cgi
├── showdependencytree.cgi
├── skins
│ ├── contrib
│ │ └── Dusk
│ │ ├── buglist.css
│ │ ├── global.css
│ │ └── index.css
│ ├── README
│ └── standard
│ ├── admin.css
│ ├── attachment.css
│ ├── buglist.css
│ ├── dependency-tree
│ │ ├── bug-item.png
│ │ ├── tree-closed.png
│ │ ├── tree-open.png
│ │ └── tree.png
│ ├── dependency-tree.css
│ ├── duplicates.css
│ ├── editusers.css
│ ├── enter_bug.css
│ ├── global
│ │ ├── body-back.gif
│ │ ├── calendar.png
│ │ └── header.png
│ ├── global.css
│ ├── IE-fixes.css
│ ├── index
│ │ ├── file-a-bug.png
│ │ ├── help.png
│ │ ├── new-account.png
│ │ └── search.png
│ ├── index.css
│ ├── page.css
│ ├── params.css
│ ├── reports.css
│ ├── search_form.css
│ ├── show_bug.css
│ ├── show_multiple.css
│ └── summarize-time.css
├── summarize_time.cgi
├── t
│ ├── 001compile.t
│ ├── 002goodperl.t
│ ├── 003safesys.t
│ ├── 004template.t
│ ├── 005whitespace.t
│ ├── 006spellcheck.t
│ ├── 007util.t
│ ├── 008filter.t
│ ├── 009bugwords.t
│ ├── 010dependencies.t
│ ├── 011pod.t
│ ├── 012throwables.t
│ └── Support
│ ├── Files.pm
│ ├── Systemexec.pm
│ └── Templates.pm
├── template
│ └── en
│ └── default
│ ├── account
│ │ ├── auth
│ │ │ ├── login.html.tmpl
│ │ │ └── login-small.html.tmpl
│ │ ├── cancel-token.txt.tmpl
│ │ ├── created.html.tmpl
│ │ ├── create.html.tmpl
│ │ │ ├── change-new.txt.tmpl
│ │ │ ├── change-old.txt.tmpl
│ │ │ ├── confirm.html.tmpl
│ │ │ ├── confirm-new.html.tmpl
│ │ │ └── request-new.txt.tmpl
│ │ ├── password
│ │ │ ├── forgotten-password.txt.tmpl
│ │ │ └── set-forgotten-password.html.tmpl
│ │ ├── prefs
│ │ │ ├── account.html.tmpl
│ │ │ ├── email.html.tmpl
│ │ │ ├── permissions.html.tmpl
│ │ │ ├── prefs.html.tmpl
│ │ │ ├── saved-searches.html.tmpl
│ │ │ └── settings.html.tmpl
│ │ └── profile-activity.html.tmpl
│ ├── admin
│ │ ├── admin.html.tmpl
│ │ ├── classifications
│ │ │ ├── add.html.tmpl
│ │ │ ├── del.html.tmpl
│ │ │ ├── edit-common.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ ├── footer.html.tmpl
│ │ │ ├── reclassify.html.tmpl
│ │ │ └── select.html.tmpl
│ │ ├── components
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit-common.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ ├── footer.html.tmpl
│ │ │ ├── list.html.tmpl
│ │ │ └── select-product.html.tmpl
│ │ ├── confirm-action.html.tmpl
│ │ ├── custom_fields
│ │ │ ├── cf-js.js.tmpl
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ └── list.html.tmpl
│ │ ├── fieldvalues
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ ├── footer.html.tmpl
│ │ │ ├── list.html.tmpl
│ │ │ └── select-field.html.tmpl
│ │ ├── flag-type
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ └── list.html.tmpl
│ │ ├── groups
│ │ │ ├── confirm-remove.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── delete.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ └── list.html.tmpl
│ │ ├── keywords
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ └── list.html.tmpl
│ │ ├── milestones
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ ├── footer.html.tmpl
│ │ │ ├── list.html.tmpl
│ │ │ └── select-product.html.tmpl
│ │ ├── params
│ │ │ ├── admin.html.tmpl
│ │ │ ├── advanced.html.tmpl
│ │ │ ├── attachment.html.tmpl
│ │ │ ├── auth.html.tmpl
│ │ │ ├── bugchange.html.tmpl
│ │ │ ├── bugfields.html.tmpl
│ │ │ ├── common.html.tmpl
│ │ │ ├── core.html.tmpl
│ │ │ ├── dependencygraph.html.tmpl
│ │ │ ├── editparams.html.tmpl
│ │ │ ├── general.html.tmpl
│ │ │ ├── groupsecurity.html.tmpl
│ │ │ ├── index.html.tmpl
│ │ │ ├── ldap.html.tmpl
│ │ │ ├── mta.html.tmpl
│ │ │ ├── patchviewer.html.tmpl
│ │ │ ├── query.html.tmpl
│ │ │ ├── radius.html.tmpl
│ │ │ ├── shadowdb.html.tmpl
│ │ │ └── usermatch.html.tmpl
│ │ ├── products
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit-common.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ ├── footer.html.tmpl
│ │ │ ├── groupcontrol
│ │ │ │ ├── confirm-edit.html.tmpl
│ │ │ │ ├── edit.html.tmpl
│ │ │ │ └── updated.html.tmpl
│ │ │ ├── list-classifications.html.tmpl
│ │ │ ├── list.html.tmpl
│ │ │ └── updated.html.tmpl
│ │ ├── sanitycheck
│ │ │ ├── list.html.tmpl
│ │ │ └── messages.html.tmpl
│ │ ├── settings
│ │ │ └── edit.html.tmpl
│ │ ├── sudo.html.tmpl
│ │ ├── table.html.tmpl
│ │ ├── users
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ ├── list.html.tmpl
│ │ │ ├── listselectvars.html.tmpl
│ │ │ ├── responsibilities.html.tmpl
│ │ │ ├── search.html.tmpl
│ │ │ └── userdata.html.tmpl
│ │ ├── versions
│ │ │ ├── confirm-delete.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── edit.html.tmpl
│ │ │ ├── footer.html.tmpl
│ │ │ ├── list.html.tmpl
│ │ │ └── select-product.html.tmpl
│ │ └── workflow
│ │ ├── comment.html.tmpl
│ │ └── edit.html.tmpl
│ ├── attachment
│ │ ├── choose.html.tmpl
│ │ ├── confirm-delete.html.tmpl
│ │ ├── created.html.tmpl
│ │ ├── createformcontents.html.tmpl
│ │ ├── create.html.tmpl
│ │ ├── delete_reason.txt.tmpl
│ │ ├── diff-file.html.tmpl
│ │ ├── diff-footer.html.tmpl
│ │ ├── diff-header.html.tmpl
│ │ ├── edit.html.tmpl
│ │ ├── list.html.tmpl
│ │ ├── midair.html.tmpl
│ │ ├── show-multiple.html.tmpl
│ │ └── updated.html.tmpl
│ ├── bug
│ │ ├── activity
│ │ │ ├── show.html.tmpl
│ │ │ └── table.html.tmpl
│ │ ├── choose.html.tmpl
│ │ ├── comments.html.tmpl
│ │ ├── create
│ │ │ ├── comment-guided.txt.tmpl
│ │ │ ├── comment.txt.tmpl
│ │ │ ├── created.html.tmpl
│ │ │ ├── create-guided.html.tmpl
│ │ │ ├── create.html.tmpl
│ │ │ ├── make-template.html.tmpl
│ │ │ └── user-message.html.tmpl
│ │ ├── dependency-graph.html.tmpl
│ │ ├── dependency-tree.html.tmpl
│ │ ├── edit.html.tmpl
│ │ ├── field-events.js.tmpl
│ │ ├── field-help.none.tmpl
│ │ ├── field.html.tmpl
│ │ ├── field-label.html.tmpl
│ │ ├── format_comment.txt.tmpl
│ │ ├── knob.html.tmpl
│ │ ├── link.html.tmpl
│ │ ├── navigate.html.tmpl
│ │ ├── process
│ │ │ ├── bugmail.html.tmpl
│ │ │ ├── confirm-duplicate.html.tmpl
│ │ │ ├── header.html.tmpl
│ │ │ ├── midair.html.tmpl
│ │ │ ├── results.html.tmpl
│ │ │ └── verify-new-product.html.tmpl
│ │ ├── show-header.html.tmpl
│ │ ├── show.html.tmpl
│ │ ├── show-multiple.html.tmpl
│ │ ├── show.xml.tmpl
│ │ ├── summarize-time.html.tmpl
│ │ └── time.html.tmpl
│ ├── config.js.tmpl
│ ├── config.rdf.tmpl
│ │ ├── bugmail-common.txt.tmpl
│ │ ├── bugmail-header.txt.tmpl
│ │ ├── bugmail.html.tmpl
│ │ ├── bugmail.txt.tmpl
│ │ ├── flagmail.txt.tmpl
│ │ ├── lockout.txt.tmpl
│ │ ├── sanitycheck.txt.tmpl
│ │ ├── sudo.txt.tmpl
│ │ └── whine.txt.tmpl
│ ├── extensions
│ │ ├── config.pm.tmpl
│ │ ├── extension.pm.tmpl
│ │ ├── hook-readme.txt.tmpl
│ │ ├── license.txt.tmpl
│ │ ├── name-readme.txt.tmpl
│ │ ├── util.pm.tmpl
│ │ └── web-readme.txt.tmpl
│ ├── filterexceptions.pl
│ ├── flag
│ │ └── list.html.tmpl
│ ├── global
│ │ ├── banner.html.tmpl
│ │ ├── calendar.js.tmpl
│ │ ├── choose-classification.html.tmpl
│ │ ├── choose-product.html.tmpl
│ │ ├── code-error.html.tmpl
│ │ ├── common-links.html.tmpl
│ │ ├── confirm-action.html.tmpl
│ │ ├── confirm-user-match.html.tmpl
│ │ ├── docslinks.html.tmpl
│ │ ├── field-descs.none.tmpl
│ │ ├── footer.html.tmpl
│ │ ├── header.html.tmpl
│ │ ├── hidden-fields.html.tmpl
│ │ ├── js-products.html.tmpl
│ │ ├── message.html.tmpl
│ │ ├── messages.html.tmpl
│ │ ├── message.txt.tmpl
│ │ ├── reason-descs.none.tmpl
│ │ ├── select-menu.html.tmpl
│ │ ├── setting-descs.none.tmpl
│ │ ├── site-navigation.html.tmpl
│ │ ├── tabs.html.tmpl
│ │ ├── textarea.html.tmpl
│ │ ├── useful-links.html.tmpl
│ │ ├── user-error.html.tmpl
│ │ ├── user.html.tmpl
│ │ ├── userselect.html.tmpl
│ │ ├── value-descs.js.tmpl
│ │ ├── value-descs.none.tmpl
│ │ └── variables.none.tmpl
│ ├── index.html.tmpl
│ ├── list
│ │ ├── change-columns.html.tmpl
│ │ ├── edit-multiple.html.tmpl
│ │ ├── list.atom.tmpl
│ │ ├── list.csv.tmpl
│ │ ├── list.html.tmpl
│ │ ├── list.ics.tmpl
│ │ ├── list.rdf.tmpl
│ │ ├── list-simple.html.tmpl
│ │ ├── quips.html.tmpl
│ │ ├── server-push.html.tmpl
│ │ └── table.html.tmpl
│ ├── pages
│ │ ├── bug-writing.html.tmpl
│ │ ├── bugzilla.dtd.tmpl
│ │ ├── fields.html.tmpl
│ │ ├── linked.html.tmpl
│ │ ├── linkify.html.tmpl
│ │ ├── quicksearch.html.tmpl
│ │ ├── release-notes3.html.tmpl
│ │ ├── release-notes.html.tmpl
│ │ └── sudo.html.tmpl
│ ├── reports
│ │ ├── chart.csv.tmpl
│ │ ├── chart.html.tmpl
│ │ ├── chart.png.tmpl
│ │ ├── components.html.tmpl
│ │ ├── create-chart.html.tmpl
│ │ ├── delete-series.html.tmpl
│ │ ├── duplicates.html.tmpl
│ │ ├── duplicates-simple.html.tmpl
│ │ ├── duplicates-table.html.tmpl
│ │ ├── edit-series.html.tmpl
│ │ ├── keywords.html.tmpl
│ │ ├── menu.html.tmpl
│ │ ├── old-charts.html.tmpl
│ │ ├── report-bar.png.tmpl
│ │ ├── report.csv.tmpl
│ │ ├── report.html.tmpl
│ │ ├── report-line.png.tmpl
│ │ ├── report-pie.png.tmpl
│ │ ├── report-simple.html.tmpl
│ │ ├── report-table.csv.tmpl
│ │ ├── report-table.html.tmpl
│ │ ├── series-common.html.tmpl
│ │ └── series.html.tmpl
│ ├── request
│ │ └── queue.html.tmpl
│ ├── search
│ │ ├── boolean-charts.html.tmpl
│ │ ├── field.html.tmpl
│ │ ├── form.html.tmpl
│ │ ├── knob.html.tmpl
│ │ ├── search-advanced.html.tmpl
│ │ ├── search-create-series.html.tmpl
│ │ ├── search-plugin.xml.tmpl
│ │ ├── search-report-graph.html.tmpl
│ │ ├── search-report-select.html.tmpl
│ │ ├── search-report-table.html.tmpl
│ │ ├── search-specific.html.tmpl
│ │ ├── tabs.html.tmpl
│ │ └── type-select.html.tmpl
│ ├── setup
│ │ └── strings.txt.pl
│ ├── welcome-admin.html.tmpl
│ └── whine
│ ├── mail.html.tmpl
│ ├── mail.txt.tmpl
│ ├── multipart-mime.txt.tmpl
│ └── schedule.html.tmpl
├── testagent.cgi
├── testserver.pl
├── token.cgi
├── userprefs.cgi
├── votes.cgi
├── whineatnews.pl
├── whine.pl
├── xmlrpc.cgi
└── xt
├── lib
│ └── Bugzilla
│ └── Test
│ ├── Search
│ │ ├── AndTest.pm
│ │ ├── Constants.pm
│ │ ├── CustomTest.pm
│ │ ├── FieldTestNormal.pm
│ │ ├── FieldTest.pm
│ │ ├── InjectionTest.pm
│ │ ├── NotTest.pm
│ │ ├── OperatorTest.pm
│ │ └── OrTest.pm
│ └── Search.pm
├── README
└── search.t
238 directories, 992 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论