summaryrefslogtreecommitdiffabout
authorOndrej Jirman <ondrej.jirman@zonio.net>2007-05-25 23:15:10 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-05-31 08:18:38 (UTC)
commit1a63cfcc3d83919e790e7e279eb35fc75adb0e3c (patch) (side-by-side diff)
treea2c613c6ae642dd6a4015142ccf04ed7c5629b8f
parent0928d8827a714f3908efa7eb9eb4cde28761af26 (diff)
downloadcgit-1a63cfcc3d83919e790e7e279eb35fc75adb0e3c.zip
cgit-1a63cfcc3d83919e790e7e279eb35fc75adb0e3c.tar.gz
cgit-1a63cfcc3d83919e790e7e279eb35fc75adb0e3c.tar.bz2
Use &amp; instead of & in URLs.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--ui-commit.c8
-rw-r--r--ui-log.c4
-rw-r--r--ui-shared.c4
-rw-r--r--ui-summary.c2
-rw-r--r--ui-tree.c6
-rw-r--r--ui-view.c2
6 files changed, 13 insertions, 13 deletions
diff --git a/ui-commit.c b/ui-commit.c
index 6b135aa..1d12bbb 100644
--- a/ui-commit.c
+++ b/ui-commit.c
@@ -77,3 +77,3 @@ void print_fileinfo(struct fileinfo *info)
htmlf("</td><td class='%s'>", class);
- query = fmt("id=%s&id2=%s&path=%s", sha1_to_hex(info->old_sha1),
+ query = fmt("id=%s&amp;id2=%s&amp;path=%s", sha1_to_hex(info->old_sha1),
sha1_to_hex(info->new_sha1), info->new_path);
@@ -184,3 +184,3 @@ void cgit_print_commit(const char *hex)
html("<tr><th>tree</th><td colspan='2' class='sha1'><a href='");
- query = fmt("h=%s&id=%s", sha1_to_hex(commit->object.sha1),
+ query = fmt("h=%s&amp;id=%s", sha1_to_hex(commit->object.sha1),
sha1_to_hex(commit->tree->object.sha1));
@@ -203,3 +203,3 @@ void cgit_print_commit(const char *hex)
sha1_to_hex(p->item->object.sha1));
- query = fmt("id=%s&id2=%s", sha1_to_hex(parent->tree->object.sha1),
+ query = fmt("id=%s&amp;id2=%s", sha1_to_hex(parent->tree->object.sha1),
sha1_to_hex(commit->tree->object.sha1));
@@ -212,3 +212,3 @@ void cgit_print_commit(const char *hex)
html_attr(cgit_pageurl(cgit_query_repo, "snapshot",
- fmt("id=%s&name=%s", hex, filename)));
+ fmt("id=%s&amp;name=%s", hex, filename)));
htmlf("'>%s</a></td></tr>", filename);
diff --git a/ui-log.c b/ui-log.c
index c80fd73..75bbbe4 100644
--- a/ui-log.c
+++ b/ui-log.c
@@ -116,3 +116,3 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path)
html(cgit_pageurl(cgit_query_repo, cgit_query_page,
- fmt("h=%s&ofs=%d", tip, ofs-cnt)));
+ fmt("h=%s&amp;ofs=%d", tip, ofs-cnt)));
html("'>[prev]</a>&nbsp;");
@@ -123,3 +123,3 @@ void cgit_print_log(const char *tip, int ofs, int cnt, char *grep, char *path)
html(cgit_pageurl(cgit_query_repo, "log",
- fmt("h=%s&ofs=%d", tip, ofs+cnt)));
+ fmt("h=%s&amp;ofs=%d", tip, ofs+cnt)));
html("'>[next]</a>&nbsp;");
diff --git a/ui-shared.c b/ui-shared.c
index c8c1c21..aba93e8 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -71,5 +71,5 @@ char *cgit_pageurl(const char *reponame, const char *pagename,
if (query)
- return fmt("?r=%s&p=%s&%s", reponame, pagename, query);
+ return fmt("?r=%s&amp;p=%s&amp;%s", reponame, pagename, query);
else
- return fmt("?r=%s&p=%s", reponame, pagename);
+ return fmt("?r=%s&amp;p=%s", reponame, pagename);
}
diff --git a/ui-summary.c b/ui-summary.c
index 18608b8..15e8aec 100644
--- a/ui-summary.c
+++ b/ui-summary.c
@@ -161,3 +161,3 @@ static int cgit_print_archive_cb(const char *refname, const unsigned char *sha1,
url = cgit_pageurl(cgit_query_repo, "blob",
- fmt("id=%s&path=%s", sha1_to_hex(fileid),
+ fmt("id=%s&amp;path=%s", sha1_to_hex(fileid),
buf));
diff --git a/ui-tree.c b/ui-tree.c
index 006ca47..cb57d8d 100644
--- a/ui-tree.c
+++ b/ui-tree.c
@@ -39,3 +39,3 @@ static int print_entry(const unsigned char *sha1, const char *base,
html_attr(cgit_pageurl(cgit_query_repo, "tree",
- fmt("h=%s&id=%s&path=%s%s/",
+ fmt("h=%s&amp;id=%s&amp;path=%s%s/",
curr_rev,
@@ -47,3 +47,3 @@ static int print_entry(const unsigned char *sha1, const char *base,
html_attr(cgit_pageurl(cgit_query_repo, "view",
- fmt("h=%s&id=%s&path=%s%s", curr_rev,
+ fmt("h=%s&amp;id=%s&amp;path=%s%s", curr_rev,
sha1_to_hex(sha1),
@@ -57,3 +57,3 @@ static int print_entry(const unsigned char *sha1, const char *base,
html_attr(cgit_pageurl(cgit_query_repo, "log",
- fmt("h=%s&path=%s%s",
+ fmt("h=%s&amp;path=%s%s",
curr_rev,
diff --git a/ui-view.c b/ui-view.c
index dbe4b29..8873415 100644
--- a/ui-view.c
+++ b/ui-view.c
@@ -45,3 +45,3 @@ void cgit_print_view(const char *hex, char *path)
html_attr(cgit_pageurl(cgit_query_repo, "blob",
- fmt("id=%s&path=%s",
+ fmt("id=%s&amp;path=%s",
hex,