Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

Improve the package request page to support giving only a ticket id #236

Merged
merged 5 commits into from Oct 7, 2015

Conversation

pypingou
Copy link
Member

@pypingou pypingou commented Oct 7, 2015

Fixes #229

…fields

Once we successfully retrieved the info from the review server, we disable
the package name and package summary to be sure there is no discrepancy
between pkgdb and bugzilla.
The fields are enabled if we failed to retrieve information from the
review server.
var _bzurl = $('#review_url').val();
var _bzid = null;
if (_bzurl.indexOf("?id=") > -1) {
_bzid = _bzurl.split("?id=")[1];
var _bzidint = false;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like you set _bzidint here, but then never use it.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

true, I had an idea but turned out to be un-necessary, will drop it

_bzid = _bzurl.split("?id=")[1];
if ($.isNumeric(_bzurl)) {
_bzid = _bzurl;
_bzidint = true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still setting _bzidint here.

@ralphbean
Copy link
Contributor

OK, 👍

@pypingou
Copy link
Member Author

pypingou commented Oct 7, 2015

Thanks for the review!

pypingou added a commit that referenced this pull request Oct 7, 2015
Improve the package request page to support giving only a ticket id
@pypingou pypingou merged commit 18d97d9 into master Oct 7, 2015
@pypingou pypingou deleted the bug_id branch October 7, 2015 14:10
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants