summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@finch.kitenet.net>2010-05-11 21:52:39 +0000
committerJoey Hess <joey@finch.kitenet.net>2010-05-11 21:52:39 +0000
commit688c58ac9080362e9f033bc6cc50d4b2d7d46d6f (patch)
treede6c9b384cf71599df3f35874aea6ec19188d377
parent4ceae1761b6f190a6115c106713d28f0a94e9191 (diff)
parent378cae14bbd540aa1cd6b165bee408c0add169c3 (diff)
Merge branch 'master' of file:///srv/git/ikiwiki.info
-rw-r--r--doc/bugs/gitremotes_script_picks_up_tags_from_anywhere.mdwn2
-rw-r--r--doc/style.css7
-rwxr-xr-xgitremotes3
-rw-r--r--underlays/openid-selector/ikiwiki/openid/openid-jquery.js3
4 files changed, 13 insertions, 2 deletions
diff --git a/doc/bugs/gitremotes_script_picks_up_tags_from_anywhere.mdwn b/doc/bugs/gitremotes_script_picks_up_tags_from_anywhere.mdwn
index f9f086793..9bd8938c5 100644
--- a/doc/bugs/gitremotes_script_picks_up_tags_from_anywhere.mdwn
+++ b/doc/bugs/gitremotes_script_picks_up_tags_from_anywhere.mdwn
@@ -18,3 +18,5 @@ see <http://git.pseudorandom.co.uk/smcv/ikiwiki.git?a=shortlog;h=refs/heads/read
> --[[Joey]]
>> Oh, I see why. Try the same branch again... --[[smcv]]
+
+>>> [[done]] --[[Joey]]
diff --git a/doc/style.css b/doc/style.css
index 6832194b2..4ea77573a 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -332,6 +332,13 @@ ol.form {
li.form {
padding-bottom: 1em;
}
+input#openid_identifier {
+ background: url(wikiicons/openidlogin-bg.gif) no-repeat;
+ background-color: #fff;
+ background-position: 0 50%;
+ color: #000;
+ padding-left: 18px;
+}
input#searchbox {
background: url(wikiicons/search-bg.gif) no-repeat;
background-color: #fff;
diff --git a/gitremotes b/gitremotes
index 6c03011a8..5cafad1b8 100755
--- a/gitremotes
+++ b/gitremotes
@@ -16,9 +16,10 @@ while (<IN>) {
my ($oldurl)=$info=~/URL: (.*)/m;
if ($oldurl ne $url) {
system("git remote rm $remote 2>/dev/null");
- system("git", "remote", "add", "-f", $remote, $url);
+ system("git", "remote", "add", $remote, $url);
system("git", "config", "remote.$remote.tagopt",
"--no-tags");
+ system("git", "fetch", $remote);
}
}
}
diff --git a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js
index 4eaa613d9..f22f5776a 100644
--- a/underlays/openid-selector/ikiwiki/openid/openid-jquery.js
+++ b/underlays/openid-selector/ikiwiki/openid/openid-jquery.js
@@ -116,6 +116,7 @@ var openid = {
' other' +
'</a>'
);
+ $('#'+this.localsignin_id).hide();
}
$('#openid_form').submit(this.submit);
@@ -123,7 +124,7 @@ var openid = {
var box_id = this.readCookie();
if (box_id) {
this.signin(box_id, true);
- }
+ }
},
getBoxHTML: function(provider, box_size) {
var label="";