forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Publication of Galaxy Release v 16.01 #39
Comments
jmchilton
pushed a commit
that referenced
this issue
Jul 27, 2016
working: - fetching valid tool list - identifying unique requirements not working: File '/Users/langhorst/src/galaxy_hackathon/lib/galaxy/webapps/galaxy/controllers/admin_toolshed.py', line 1138 in prepare_for_install [view.manager_dependency(req) for req in uniq_reqs.values()] TypeError: manager_dependency() takes exactly 1 argument (2 given)
jmchilton
pushed a commit
that referenced
this issue
Jan 22, 2018
Fix tests and revert additional sorting of converters
jmchilton
pushed a commit
that referenced
this issue
Apr 17, 2018
Fix dropdown operations buttons and pagination links in grids
jmchilton
pushed a commit
that referenced
this issue
Nov 17, 2021
The function body of escape is ``` def escape(s): """Replace the characters ``&``, ``<``, ``>``, ``'``, and ``"`` in the string with HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML. If the object has an ``__html__`` method, it is called and the return value is assumed to already be safe for HTML. :param s: An object to be converted to a string and escaped. :return: A :class:`Markup` string with the escaped text. """ if hasattr(s, "__html__"): return Markup(s.__html__()) return Markup( text_type(s) .replace("&", "&") .replace(">", ">") .replace("<", "<") .replace("'", "'") .replace('"', """) ) ``` It doesn't make sense to lookup the replaced values in the database, and it breaks single-quotes in the email username portion, which is valid https://en.wikipedia.org/wiki/Email_address#Syntax
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create this release issuemake release-issue RELEASE_CURR=16.01
.Set freeze date (2016-01-04).Review milestone PRs and delay or merge or close each. Link
Merge the latest release into dev.
Create and push release branch:
Ensure all blocking PRs have been merged or closed. Link
Checkout release branch
Check for obvious missing metadata in release PRs
Bootstrap the release notes
Open newly created files and manually curate major topics and release notes.
Commit release notes.
Open a pull request for new release note branch.
Merge release note pull request.
Ensure all blocking issues have been resolved. Link
Ensure all blocking PRs have been merged or closed. Link
Do release (TODO: create a check a list for this...)
16.04
exists.make release-issue RELEASE_CURR=16.04
.The text was updated successfully, but these errors were encountered: