-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugs: change bugzilla refs to github issues
- Loading branch information
1 parent
fc7981c
commit 29fdd17
Showing
7 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
extension=".rst" | ||
|
||
product=$1 | ||
shift 1 | ||
files=$* | ||
|
||
echo "# Automatically generated - please review each redirect" | ||
for file in $files | ||
do | ||
base_filename=$(basename $file $extension) | ||
wikifile=/wiki/$product/$base_filename | ||
rtdfile=http://docs.translatehouse.org/projects/$product/en/latest/${base_filename}.html | ||
printf "Redirect Permanent %-40s%s\n" ${wikifile} ${rtdfile} | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks for this, Dwayne.
Do you think we should encourage searching first? Pointing to /translate/virtaal/issues/ works for searching, but then a new issue is an extra click. On the other hand, the "new issue" URL only gives a login page for someone not logged in, which seems even less likely to result in a "conversion".
Another thing: we can prefill the form if we want, with something like
https://github.com/translate/virtaal/issues/new?title=foo&body=bar&labels[]=bug
I wouldn't want something in the title, but this way we can include
__version__.ver
as we did before, which is quite useful. I propose the label "inproduct" (which might help us see if this functionality is used much in the software). We might want to additionally include the OS, the language combination, UI language, and versions of important dependencies (python, toolkit, etc). Any others? We can rather put a few more, since it is easy for users to remove if they want. What do you think?