mirror of
https://github.com/thewesker/greptweet.git
synced 2025-12-22 04:51:05 -05:00
move to event source for showing feedback may be
This commit is contained in:
@@ -4,9 +4,6 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>Grepping twitter backup</title>
|
<title>Grepping twitter backup</title>
|
||||||
<link rel="stylesheet" type="text/css" href="/style.css">
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
||||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
|
|
||||||
<script src="/main.js"></script>
|
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@@ -17,7 +14,10 @@
|
|||||||
|
|
||||||
<p id="source"></p>
|
<p id="source"></p>
|
||||||
|
|
||||||
<p>It's upto to YOU to save your text file. User archives maybe deleted at any time.</p>
|
<p>Type a search query like <a href="?foo">foo</a></p>
|
||||||
|
|
||||||
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
|
||||||
|
<script async src="/main.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
48
index.shtml
48
index.shtml
@@ -4,64 +4,24 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<title>GrepTweet</title>
|
<title>GrepTweet</title>
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
<script src="http://platform.twitter.com/anywhere.js?id=nblhjVeENlDT7WP83VQEA&v=1"></script>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-via="greptweet" data-related="kaihendry:Author">Tweet</a><script type="text/javascript" src="//platform.twitter.com/widgets.js"></script>
|
|
||||||
|
|
||||||
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
|
|
||||||
<script>
|
|
||||||
new TWTR.Widget({
|
|
||||||
version: 2,
|
|
||||||
type: 'profile',
|
|
||||||
rpp: 4,
|
|
||||||
interval: 30000,
|
|
||||||
width: 250,
|
|
||||||
height: 300,
|
|
||||||
theme: {
|
|
||||||
shell: {
|
|
||||||
background: '#333333',
|
|
||||||
color: '#ffffff'
|
|
||||||
},
|
|
||||||
tweets: {
|
|
||||||
background: '#000000',
|
|
||||||
color: '#ffffff',
|
|
||||||
links: '#4aed05'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
features: {
|
|
||||||
scrollbar: false,
|
|
||||||
loop: false,
|
|
||||||
live: false,
|
|
||||||
behavior: 'all'
|
|
||||||
}
|
|
||||||
}).render().setUser('greptweet').start();
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<form action="create.cgi" method="get">
|
<form action="create.cgi" method="get">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Create or update a backup of your tweets, so you can grep them</legend>
|
<legend>Create or update a backup of your tweets, so you can grep them</legend>
|
||||||
<p><label>Twitter username: <input type="text" name="id" required placeholder="kaihendry"></label></p>
|
<p><label>Twitter username: <input type="text" name="id" required placeholder="kaihendry"></label></p>
|
||||||
<p><input type="checkbox" name="o" />Try get older tweets, instead of newer tweets when updating</p>
|
<p><input type="checkbox" name="o" />Try get older tweets, instead of newer tweets when updating</p>
|
||||||
<input type="submit" value="Create backup"/>
|
<input type="submit" value="Fetch tweets"/>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!--#include virtual="users.shtml" -->
|
<!--#include virtual="users.shtml" -->
|
||||||
|
|
||||||
<script>
|
<p>Please follow <a href="https://twitter.com/greptweet">@greptweet</a> for
|
||||||
twttr.anywhere(function (T) {
|
updates and <a href="https://github.com/kaihendry/Greptweet">contribute to the
|
||||||
T("#users").hovercards({ linkify: false });
|
source on Github!</a></p>
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<p><a href="https://github.com/kaihendry/Greptweet">Please contribute to the source on Github!</a></p>
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user