-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (101 loc) · 3.94 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE HTML>
<html>
<head>
<title>mbtweet</title>
<meta http-equiv="content-type" content="text/html, text/javascript; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel="stylesheet" href="pbapp.css">
<script src="./scripts/localstorage.js" ></script>
<script src="./scripts/mbtweet.js" ></script>
<script src="./scripts/webdb.js" ></script>
<script src="./scripts/twitterapi_call.js" ></script>
<script src="./scripts/oauth.js" ></script>
<script src="./scripts/sha1.js" ></script>
<script src="./scripts/tweet.js" ></script>
<script src="./scripts/user.js" ></script>
<script src="./scripts/list.js" ></script>
<script src="./scripts/saved_search.js" ></script>
<script src="./scripts/util.js" ></script>
<script src="./scripts/timeline.js" ></script>
<script src="./scripts/language.js" ></script>
<script src="./scripts/ui.js" ></script>
<script src="./scripts/bitly.js" ></script>
<script src="./scripts/jsonp_extention.js" ></script>
<script src="./scripts/geolocation.js" ></script>
</head>
<body onload="init_mbtweet()">
<header>
<div class="api-rate">
<div class="hourly-rate">
<div class="rate">
</div>
</div>
<div class="reset-time">00:00</div>
<div class="hourly-rate no-auth">
<div class="rate no-auth">
</div>
</div>
<div class="reset-time no-auth">00:00</div>
</div>
<div id = "post">
<div id="counter">140</div>
<form onSubmit="post_tweet(this , event); return(false);">
<div id="post_editor" contenteditable="true" style="display:none;">
</div>
<textarea id="status" tabindex="0"></textarea>
<input name="post_status" id="post_status" type="submit" value="tweet!">
<input id="hashtag" name="hashtag" type="text" value="" onchange="status_counter()" placeholder="hashtag">
<div id="reply_link_object">
<input name="reply_link" id="reply_link" type="checkbox" value="false" onchange="remove_in_reply_to()"><label for="reply_link">conversation</label>
</div>
<input name="post_in_reply_to_status_id" id="post_in_reply_to_status_id" type="hidden" value="">
<input name="in_reply_to" id="in_reply_to" type="hidden" value="">
</form>
</div>
</header>
<div id="column_wrapper">
<div id="column">
</div>
</div>
<footer>
<div class="dock">
<section class="launcher">
<div class = "home" onclick = "var mention = new timeline('home');">
<img src="images/home_icn.png">
</div>
<div class = "mention" onclick = "var mention = new timeline('mention');">
<img src="images/mentions_icn.png">
</div>
<div class = "favorite" onclick = "var mention = new timeline('favorite');">
<img src="images/favorites_icn.png">
</div>
<div class = "message" onclick = "var mention = new timeline('message');">
<img src="images/messages_icn.png">
</div>
<div class = "your dock-icon">
<div class="dock-menu">
<div class="dock-menu-index" onclick = "var mention = new timeline('following');return false;">Your following</div>
<div class="dock-menu-index" onclick = "var mention = new timeline('followwers');">Your follower</div>
</div>
<img class = "user-icon" src="images/home_icn.png" onclick = "var mention = new timeline('mine');">
</div>
<div class = "lists dock-icon" id = "my_lists">
<img src="images/lists_icn.png">
</div>
<div class = "retweets dock-icon">
<div class="dock-menu">
<div class="dock-menu-index" onclick = "var mention = new timeline('rt_by_me');">ReTweets by You</div>
<div class="dock-menu-index" onclick = "var mention = new timeline('rt_to_me');">ReTweets by Others</div>
<div class="dock-menu-index" onclick = "var mention = new timeline('rt_of_me');">Your Tweet, ReTweeted</div>
</div>
<img src="images/rt_icn.png">
</div>
<div class = "search dock-icon" id = "my_saved_search" onclick = "var mention = new timeline('search');">
<img src="images/search_icn.png">
</div>
</section>
<section class="column">
</section>
</div>
</footer>
</html>