summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/fixtures/arches.json16
-rw-r--r--main/fixtures/groups.json2
-rw-r--r--main/fixtures/repos.json20
-rw-r--r--main/templatetags/wiki.py4
4 files changed, 39 insertions, 3 deletions
diff --git a/main/fixtures/arches.json b/main/fixtures/arches.json
index 1ece16c9..6ebd0c15 100644
--- a/main/fixtures/arches.json
+++ b/main/fixtures/arches.json
@@ -25,5 +25,21 @@
"name": "x86_64",
"required_signoffs": 2
}
+},
+{
+ "pk": 4,
+ "model": "main.arch",
+ "fields": {
+ "agnostic": false,
+ "name": "mips64el"
+ }
+},
+{
+ "pk": 5,
+ "model": "main.arch",
+ "fields": {
+ "agnostic": false,
+ "name": "i586"
+ }
}
]
diff --git a/main/fixtures/groups.json b/main/fixtures/groups.json
index 134b98b3..c309095e 100644
--- a/main/fixtures/groups.json
+++ b/main/fixtures/groups.json
@@ -3,7 +3,7 @@
"pk": 1,
"model": "auth.group",
"fields": {
- "name": "Developers",
+ "name": "Hackers",
"permissions": [
[
"change_package",
diff --git a/main/fixtures/repos.json b/main/fixtures/repos.json
index a6f564b7..655be64a 100644
--- a/main/fixtures/repos.json
+++ b/main/fixtures/repos.json
@@ -142,5 +142,25 @@
"svn_root": "packages",
"testing": true
}
+ },
+ {
+ "pk": 10,
+ "model": "main.repo",
+ "fields": {
+ "svn_root": "",
+ "testing": true,
+ "name": "Libre-Testing",
+ "bugs_project": 0
+ }
+ },
+ {
+ "pk": 11,
+ "model": "main.repo",
+ "fields": {
+ "svn_root": "",
+ "testing": false,
+ "name": "Libre",
+ "bugs_project": 0
+ }
}
]
diff --git a/main/templatetags/wiki.py b/main/templatetags/wiki.py
index b1b8dd55..4a3b2f83 100644
--- a/main/templatetags/wiki.py
+++ b/main/templatetags/wiki.py
@@ -4,6 +4,6 @@ register = template.Library()
@register.simple_tag
def wiki_url(article=""):
if article == "":
- return "https://wiki.archlinux.org/"
+ return "https://wiki.parabolagnulinux.org/"
else:
- return "https://wiki.archlinux.org/index.php/"+article.replace(' ', '_')
+ return "https://wiki.parabolagnulinux.org/"+article.replace(' ', '_')