diff --git a/create.cgi b/create.cgi index 9eed24b..5e60937 100755 --- a/create.cgi +++ b/create.cgi @@ -39,6 +39,7 @@ cat < Fetching tweets of $id + diff --git a/index.html b/index.html index 9262038..f9976f5 100644 --- a/index.html +++ b/index.html @@ -4,11 +4,19 @@ Grepping twitter backup + - +
+
+ + + +
@@ -19,5 +27,7 @@ +
+ diff --git a/index.shtml b/index.shtml index 972af7b..cf81636 100644 --- a/index.shtml +++ b/index.shtml @@ -3,6 +3,7 @@ GrepTweet + @@ -20,21 +21,59 @@ if (document.forms.f.checkValidity()) { -
-
-Create or update a backup of your tweets, so you can grep them -

-

Try get older tweets, instead of newer tweets when updating

- -
+
+ +
+ + +
+
+ + + + +
+ +
+ +
+
+ + +
    +
  • + +
  • +
+ +
+ +
+ - +
+
+

Greppable tweeters

+ +
+
+ + + +
+
diff --git a/main.js b/main.js index 20eafb7..8b00bac 100644 --- a/main.js +++ b/main.js @@ -1,7 +1,7 @@ function grep(query) { $.getJSON("/u/" + NAME + "/grep.php?q=" + query + "&jsoncallback=?", function(data) { - var results = "

Searched for: " + query + "

    "; + var results = "

    Searched for: " + query + "

      "; for (var i in data) { tweet = data[i].split('|'); if (tweet.length > 2) { @@ -34,6 +34,7 @@ $(document).ready(function() { $("input[type=text]").focus(); $("#source").html('' + NAME + ' simple text backup file'); + $("#name").html(NAME); }); diff --git a/style.css b/style.css index 08b8de4..8759a4a 100644 --- a/style.css +++ b/style.css @@ -1,18 +1,5 @@ -body { - font: 1.2em 'Lucida Grande',sans-serif; -} - -footer { - font-size: small; margin: 2em; -} - -input[type=text] { - font-size: 2em; - border:1px solid #A78B53; -} - -button { - font-size: 3em; -} - #users li { display: inline; } + +html, body { +background-color: #eee; +}