Merge branch 'master' of github.com:kaihendry/Greptweet

This commit is contained in:
Kai Hendry
2013-07-14 04:01:44 +00:00
7 changed files with 11 additions and 10 deletions

View File

@@ -2,4 +2,6 @@ DirectoryIndex index.shtml index.html
AddType text/cache-manifest .appcache
RewriteEngine on
RewriteRule ^f/(.*)$ /create.cgi?id=$1 [L,QSA]
CheckCaseOnly on
<IfModule mod_speling.c>
CheckCaseOnly On
</IfModule>

View File

@@ -41,7 +41,6 @@ cat <<END
<meta charset="utf-8" />
<title>Fetching tweets of $id</title>
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body>
<div class="container">

View File

@@ -4,8 +4,8 @@ CACHE:
tweets.txt
/main.js
/bootstrap/css/bootstrap.min.css
/bootstrap/css/bootstrap-responsive.min.css
/bootstrap/img/glyphicons-halflings.png
/style.css
/jquery.js
NETWORK:
*

View File

@@ -3,10 +3,10 @@
<head>
<meta charset="utf-8" />
<title>Grepping twitter backup</title>
<meta content="width=device-width, initial-scale=1,maximum-scale=1.0;" name=viewport>
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/style.css">
<link rel="stylesheet" href="/bootstrap/css/bootstrap-responsive.min.css">
<link rel="icon" href="/favicon.ico">
</head>
<body>

View File

@@ -3,11 +3,12 @@
<head>
<meta charset="utf-8" />
<title>GrepTweet</title>
<meta content="width=device-width, initial-scale=1,maximum-scale=1.0;" name=viewport>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Download and search your tweets - no password login required!" />
<link rel="apple-touch-icon-precomposed" href="http://a0.twimg.com/profile_images/1206037111/greptweet.png">
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="/bootstrap/css/bootstrap-responsive.min.css">
<script>
function getCookie( oName ) {
var splitcookie = document.cookie.split( "; " ), x, cookiepair;

View File

@@ -27,7 +27,7 @@ function buildAuthorizationHeader($oauth) {
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
// Get $oauth_access_token, $oauth_access_token_secret, $consumer_key, $consumer_secret
include("secret.php");
require("secret.php");
$oauth = array( 'oauth_consumer_key' => $consumer_key,
'oauth_nonce' => time(),

View File

@@ -1 +0,0 @@
#users li { display: inline; }