Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 29fdd17

Browse files
committed
Bugs: change bugzilla refs to github issues
1 parent fc7981c commit 29fdd17

7 files changed

Lines changed: 24 additions & 9 deletions

File tree

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ several purposes.
88
References
99
----------
1010
* Website: <http://translate.sourceforge.net/wiki/virtaal/index>
11-
* Bug tracker: <http://bugs.locamotion.org/>
11+
* Bug tracker: <https://github.com/translate/virtaal/issues>
1212

1313
Installation
1414
------------
@@ -27,7 +27,7 @@ Reporting bugs
2727
--------------
2828
Please report bugs by clicking on '*Help->Report bug...*' from within Virtaal
2929
(this requires a Bugzilla account). Alternatively report directly using this
30-
URL: <http://bugs.locamotion.org/enter_bug.cgi?product=Virtaal>
30+
URL: <https://github.com/translate/virtaal/issues/new>
3131

3232
Taking the time to create a bugzilla account will help ensure that you can track
3333
progress, provide feedback and allows others to see your bug report.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@
279279

280280
extlinks = {
281281
# :role: (URL, prefix)
282-
'bug': ('http://bugs.locamotion.org/show_bug.cgi?id=%s',
283-
'bug '),
282+
'issue': ('https://github.com/translate/translate/issues/%s',
283+
'issue '),
284284
'man': ('http://linux.die.net/man/1/%s', ''),
285285
'wp': ('http://en.wikipedia.org/wiki/%s', ''),
286286
'wiki': ('http://translate.sourceforge.net/wiki/%s', ''),

docs/development_plans.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Changes to Virtaal will be guided by these guidelines:
1313
- Maximum functionality without setup and configuration
1414

1515
View a list of `open requests and bugs
16-
<http://bugs.locamotion.org/buglist.cgi?query_format=specific&order=relevance+desc&bug_status=__open__&product=Virtaal&content=>`_.
16+
<https://github.com/translate/virtaal/issues>`_.
1717

1818
Features that are likely to be developed in the foreseeable future:
1919

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Installation
7878
Contact
7979
=======
8080
- Chat in our IRC channel `#pootle <irc://freenode.net/#pootle>`_
81-
- `Report bugs <http://bugs.locamotion.org/enter_bug.cgi?product=Virtaal>`_
81+
- `Report bugs <https://github.com/translate/virtaal/issues/new>`_
8282
- Join the `Translate-devel mailing list
8383
<https://lists.sourceforge.net/lists/listinfo/translate-devel>`_
8484

docs/redirects.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
3+
extension=".rst"
4+
5+
product=$1
6+
shift 1
7+
files=$*
8+
9+
echo "# Automatically generated - please review each redirect"
10+
for file in $files
11+
do
12+
base_filename=$(basename $file $extension)
13+
wikifile=/wiki/$product/$base_filename
14+
rtdfile=http://docs.translatehouse.org/projects/$product/en/latest/${base_filename}.html
15+
printf "Redirect Permanent %-40s%s\n" ${wikifile} ${rtdfile}
16+
done

virtaal/views/mainview.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -828,8 +828,7 @@ def _on_recent_file_activated(self, chooser):
828828

829829
def _on_report_bug(self, _widget=None):
830830
from virtaal.support import openmailto
831-
from virtaal import __version__
832-
openmailto.open("http://bugs.locamotion.org/enter_bug.cgi?product=Virtaal&version=%s" % __version__.ver)
831+
openmailto.open("https://github.com/translate/virtaal/issues/new")
833832

834833
def _on_store_closed(self, store_controller):
835834
for widget_name in ('mnu_saveas', 'mnu_close', 'mnu_update', 'mnu_properties', 'mnu_binary_export'):

virtaal/views/storeview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,5 +159,5 @@ def _on_preview(self, menu_item):
159159
def _on_style_set(self, widget, prev_style):
160160
# The following color change is to reduce the flickering seen when
161161
# changing units. It's not the perfect cure, but helps a lot.
162-
# http://bugs.locamotion.org/show_bug.cgi?id=1412
162+
# https://github.com/translate/virtaal/issues/1412
163163
self._treeview.modify_base(gtk.STATE_ACTIVE, widget.style.bg[gtk.STATE_NORMAL])

0 commit comments

Comments
 (0)