-
Notifications
You must be signed in to change notification settings - Fork 106
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
Fix multiple small (but sometimes serious) issues #1144
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,8 +207,8 @@ The backends available are: | |
You need to provide **Sourceforge name** if the name on RSS feed is different then the | ||
project name on Sourceforge. | ||
|
||
* **Sourceforge (git) for projects hosted on | ||
`sourceforge.net <https://sourceforge.net>`_ | ||
* **Sourceforge (git)** for projects hosted on | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm surprised this wasn't caught by the tests. It was recently added in #1134. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was too. I looked at it again, Zuul configuration is wrong, Otherwise, Vagrant uses the Makefile in the
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This really looks like a copy paste error on my side. I will fix it. I will also unify how the docs are built in vagrant and in tox. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I looked at the makefile and the docs tox target and they are almost identical, the tox one is even running |
||
`sourceforge.net <https://sourceforge.net>`__ | ||
|
||
Sourceforge (git) retrieves the git tags in case a project hosted on sourceforge has them. | ||
When a url to get the tags from is not provided, the sourceforge homepage of a project | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix documentation and javascript issues |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not that familiar with javascript, so this will be probably my error. Thanks for fixing this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are not the only one 😆
This is a very common mistake in error handlers.
The default string resulting from adding an object to string is the useless
[Object object]
and it is even easier to accidentally write that kind of code
because e.g.
console.log(object)
actually prints something useful.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's why people are using some JavaScript replacements on serious projects?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice to get rid of Javascript entirely, but I'm not frontend developer, so this is not my cup of tea.