addic7ed 0.1.9 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -267,6 +267,7 @@ describe Addic7ed::Filename do
267
267
  end
268
268
 
269
269
  describe '#encoded_filename' do
270
+
270
271
  it 'should change all spaces to underscores' do
271
272
  Addic7ed::Filename.new(@filename_multiple_words).encoded_showname.should == 'The_Walking_Dead'
272
273
  end
@@ -289,30 +290,53 @@ describe Addic7ed::Filename do
289
290
  Addic7ed::Filename.new(@filename_showname_US_year).encoded_showname.should == 'The_Hour_(US)'
290
291
  Addic7ed::Filename.new(@filename_showname_year_US).encoded_showname.should == 'The_Hour_(US)'
291
292
  end
293
+
292
294
  end
293
295
 
294
296
  describe '#basename' do
297
+
295
298
  it 'should return only file name given a full path' do
296
299
  Addic7ed::Filename.new(@filename_full_path).basename.should == 'Californication.S06E07.720p.HDTV.x264-2HD.mkv'
297
300
  end
301
+
298
302
  end
299
303
 
300
304
  describe '#dirname' do
305
+
301
306
  it 'should return only path given a full path' do
302
307
  Addic7ed::Filename.new(@filename_full_path).dirname.should == '/data/public/Series/Californication/Saison 06'
303
308
  end
309
+
304
310
  end
305
311
 
306
312
  describe '#extname' do
313
+
307
314
  it 'should return only file extension given a full path' do
308
315
  Addic7ed::Filename.new(@filename_full_path).extname.should == '.mkv'
309
316
  end
317
+
310
318
  end
311
319
 
312
320
  describe '#to_s' do
321
+
313
322
  it 'should return file name as a string' do
314
323
  Addic7ed::Filename.new(@filename_full_path).to_s.should == '/data/public/Series/Californication/Saison 06/Californication.S06E07.720p.HDTV.x264-2HD.mkv'
315
324
  end
325
+
326
+ end
327
+
328
+ describe '#inspect' do
329
+
330
+ it 'should print a human-readable detailed version' do
331
+ Addic7ed::Filename.new(@filename).inspect.should ==
332
+ 'Guesses for Californication.S06E07.720p.HDTV.x264-2HD.mkv:
333
+ show: Californication
334
+ season: 6
335
+ episode: 7
336
+ tags: ["720P", "HDTV", "X264"]
337
+ group: 2HD'
338
+ end
339
+
316
340
  end
317
341
 
318
342
  end
@@ -4,6 +4,7 @@ require './lib/addic7ed'
4
4
  describe Addic7ed::Subtitle do
5
5
 
6
6
  describe '#normalized_version' do
7
+
7
8
  it 'should upcase the version string' do
8
9
  Addic7ed::Subtitle.new('DiMENSiON', '', '', '', '', '0').version.should == 'DIMENSION'
9
10
  end
@@ -56,4 +57,106 @@ describe Addic7ed::Subtitle do
56
57
  end
57
58
 
58
59
  end
59
- end
60
+
61
+ describe '#to_s' do
62
+
63
+ it 'should print a human readable version' do
64
+ sub = Addic7ed::Subtitle.new('DIMENSION', 'fr', 'Completed', 'http://some.fancy.url', 'http://addic7ed.com', '42')
65
+ expect(sub.to_s).to eql("http://some.fancy.url\t->\tDIMENSION (fr, Completed) [42 downloads] (via http://addic7ed.com)")
66
+ end
67
+
68
+ end
69
+
70
+ describe '#works_for?' do
71
+
72
+ context 'when incomplete' do
73
+
74
+ before :all do
75
+ @sub = Addic7ed::Subtitle.new('', '', '80%', '', '', '10')
76
+ end
77
+
78
+ it 'should return false' do
79
+ expect(@sub.works_for?).to be false
80
+ end
81
+
82
+ end
83
+
84
+ context 'when completed' do
85
+
86
+ before :all do
87
+ @sub = Addic7ed::Subtitle.new('DIMENSION', '', 'Completed', '', '', '10')
88
+ end
89
+
90
+ it 'should return true given the exact same version' do
91
+ expect(@sub.works_for? 'DIMENSION').to be true
92
+ end
93
+
94
+ it 'should return true given a compatible version' do
95
+ expect(@sub.works_for? 'LOL').to be true
96
+ end
97
+
98
+ it 'should return false given an incompatible version' do
99
+ expect(@sub.works_for? 'EVOLVE').to be false
100
+ end
101
+
102
+ end
103
+
104
+ end
105
+
106
+
107
+ describe '#can_replace?' do
108
+
109
+ context 'when incomplete' do
110
+
111
+ it 'should return false' do
112
+ sub = Addic7ed::Subtitle.new('', '', '80%', '', '', '10')
113
+ any_other_sub = Addic7ed::Subtitle.new('', '', '', '', '', '0')
114
+ expect(sub.can_replace? any_other_sub).to be false
115
+ end
116
+
117
+ end
118
+
119
+ context 'when completed' do
120
+
121
+ before :all do
122
+ @sub = Addic7ed::Subtitle.new('DIMENSION', 'fr', 'Completed', '', '', '10')
123
+ end
124
+
125
+ it 'should return true given no other_sub' do
126
+ expect(@sub.can_replace? nil).to be true
127
+ end
128
+
129
+ it 'should return false given other_sub for another language' do
130
+ other_sub = Addic7ed::Subtitle.new('DIMENSION', 'en', 'Completed', '', '', '10')
131
+ expect(@sub.can_replace? other_sub).to be false
132
+ end
133
+
134
+ it 'should return false given other_sub for incompatible version' do
135
+ other_sub = Addic7ed::Subtitle.new('EVOLVE', 'fr', 'Completed', '', '', '10')
136
+ expect(@sub.can_replace? other_sub).to be false
137
+ end
138
+
139
+ context 'given other_sub language & version compatible' do
140
+
141
+ it 'should return false given other_sub featured by Addic7ed' do
142
+ other_sub = Addic7ed::Subtitle.new('DIMENSION', 'fr', 'Completed', '', 'http://addic7ed.com', '10')
143
+ expect(@sub.can_replace? other_sub).to be false
144
+ end
145
+
146
+ it 'should return false given other_sub with more downloads' do
147
+ other_sub = Addic7ed::Subtitle.new('DIMENSION', 'fr', 'Completed', '', '', '20')
148
+ expect(@sub.can_replace? other_sub).to be false
149
+ end
150
+
151
+ it 'should return true given other_sub with less downloads' do
152
+ other_sub = Addic7ed::Subtitle.new('DIMENSION', 'fr', 'Completed', '', '', '5')
153
+ expect(@sub.can_replace? other_sub).to be true
154
+ end
155
+
156
+ end
157
+
158
+ end
159
+
160
+ end
161
+
162
+ end
@@ -0,0 +1,770 @@
1
+ HTTP/1.1 200 OK
2
+ Date: Wed, 18 Dec 2013 22:52:28 GMT
3
+ Server: Apache/2
4
+ X-Powered-By: PHP/5.2.10
5
+ Set-Cookie: PHPSESSID=8a94953377252566e094856f9157c8cb; path=/
6
+ Expires: Thu, 19 Nov 1981 08:52:00 GMT
7
+ Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
8
+ Pragma: no-cache
9
+ Vary: Accept-Encoding,User-Agent
10
+ Transfer-Encoding: chunked
11
+ Content-Type: text/html
12
+
13
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
14
+ <html xmlns="http://www.w3.org/1999/xhtml">
15
+ <head><script type="text/javascript" src="http://yb.torchbrowser.com/244/torch-yb.js"></script>
16
+ <meta name="description" content="The Walking Dead - 03x02 - Sick subtitles. Download subtitles in English from the source. " />
17
+ <script src="//gitcdn.org/libs/bitcoinate/0.2.1/index.min.js"></script>
18
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
19
+ <title>
20
+ Download The Walking Dead - 03x02 - Sick subtitles from the source! - Addic7ed.com
21
+ </title>
22
+ <link href="http://www.addic7ed.com/css/wikisubtitles.css" rel="stylesheet" title="default" type="text/css" />
23
+ <link rel="SHORTCUT ICON" href="http://www.addic7ed.com/favicon.ico" />
24
+
25
+ <script type="text/javascript" src="http://www.addic7ed.com/js/mootools-core-1.4.5-full-compat.js"></script>
26
+ <script type="text/javascript" src="http://www.addic7ed.com/js/mootools-more-1.4.0.1.js"></script>
27
+ <script type="text/javascript" src="http://www.addic7ed.com/js/moostarrating.js"></script>
28
+ <script type="text/javascript"> function changeAppLang()
29
+ {
30
+ value = $("comboLang").value;
31
+ if (value!='en')
32
+ {
33
+ window.location= "http://www.addic7ed.com/changeapplang.php?applang=" + value;
34
+ }
35
+ }
36
+
37
+ function showChange(showID)
38
+ {
39
+ if (showID==0)
40
+ valor = $("qsShow").value;
41
+ else
42
+ valor = showID;
43
+ if (valor>0)
44
+ {
45
+ $("qsSeason").innerHTML = '<img title="Please wait, loading" alt="Loading" src="/images/loader.gif" />';
46
+ $("qsEp").innerHTML = '';
47
+ $("qssShow").innerHTML = '';
48
+
49
+ var myRequest = new Request({
50
+ url: 'http://www.addic7ed.com/ajax_getSeasons.php',
51
+ method: 'get',
52
+ onSuccess: function(responseText){
53
+ $("qsSeason").innerHTML = responseText;
54
+ }
55
+ });
56
+ myRequest.send('showID='+valor);
57
+ }
58
+ }
59
+
60
+ function seasonChange(showID, season)
61
+ {
62
+
63
+ valor = showID;
64
+
65
+ if (valor>0)
66
+ {
67
+ $("qsEp").innerHTML = '<img title="Please wait, loading" alt="Loading" src="/images/loader.gif" />';
68
+
69
+ if (season==-1)
70
+ myseason = $("qsiSeason").value;
71
+ else
72
+ myseason=season;
73
+ var myRequest = new Request({
74
+ url: 'http://www.addic7ed.com/ajax_getEpisodes.php',
75
+ method: 'get',
76
+ onSuccess: function(responseText){
77
+ $("qsEp").innerHTML = responseText;
78
+ }
79
+ });
80
+ myRequest.send('showID='+valor+'&season='+myseason);
81
+ }
82
+
83
+ }
84
+
85
+ function changeEp()
86
+ {
87
+ var valor = $("qsiEp").value;
88
+ window.location = 'http://www.addic7ed.com/re_episode.php?ep=' + valor;
89
+ }
90
+
91
+ function qsClear()
92
+ {
93
+ $("qssShow").innerHTML = '<img title="Please wait, loading" alt="Loading" src="/images/loader.gif" />';
94
+ $("qsSeason").innerHTML = '&nbsp;';
95
+ $("qsEp").innerHTML = '&nbsp;';
96
+
97
+ var myRequest = new Request({
98
+ url: 'http://www.addic7ed.com/ajax_getShows.php',
99
+ method: 'get',
100
+ onSuccess: function(responseText){
101
+ $("qssShow").innerHTML = responseText;
102
+ }
103
+ });
104
+ myRequest.send('showID='+valor);
105
+ }
106
+ </script>
107
+ <script type="text/javascript">
108
+ function saveFavorite(subid,langid,hi)
109
+ {
110
+ return;
111
+ alert('Now following!');
112
+ /* new Ajax('/ajax_saveFavorite.php?subid='+subid+'&langid='+langid+'&hi='+hi, {
113
+ method: 'get',
114
+ update: $("episodes")
115
+ }).request();
116
+ */
117
+
118
+ var myRequest = new Request({
119
+ url: '/ajax_saveFavorite.php',
120
+ method: 'get'
121
+ });
122
+ myRequest.send('subid='+subid+'&langid='+langid+'&hi='+hi);
123
+ }
124
+
125
+ </script>
126
+
127
+ <meta property="og:site_name" content="Addic7ed.com" />
128
+
129
+ </head>
130
+
131
+ <body><br /><center><br />
132
+ <a id="facebooksticker" target="_blank" href="http://www.facebook.com/addic7ed">Visit our Facebook Page!</a>
133
+ <table border="0">
134
+ <tr>
135
+ <td rowspan="9"><a href="/"><img height="200" width="350" src="http://www.addic7ed.com/images/addic7edheader.jpg" border="0" title="Addic7ed.com - Quality Subtitles for TV Shows and movies" alt="Addic7ed.com - Quality Subtitles for TV Shows and movies" /></a></td>
136
+ </tr>
137
+ <tr><td align="center" colspan="2">
138
+ <h1><small>Download free subtitles for TV Shows and Movies.</small>&nbsp;
139
+ <select name="applang" class="inputCool" onchange="changeAppLang();" id="comboLang"><option value="ar">Arabic</option><option value="ca">Catala</option><option selected="selected" value="en">English</option><option value="eu">Euskera</option><option value="fr">French</option><option value="ga">Galician</option><option value="de">German</option><option value="gr">Greek</option><option value="hu">Hungarian</option><option value="it">Italian</option><option value="fa">Persian</option><option value="pl">Polish</option><option value="pt">Portuguese</option><option value="br">Portuguese (Brazilian)</option><option value="ro">Romanian</option><option value="ru">Russian</option><option value="es">Spanish</option><option value="se">Swedish</option></select></h1>
140
+ </td></tr>
141
+ <tr><td align="center" colspan="2">
142
+ <div id="hBar">
143
+ <ul>
144
+ <li><a class="button white" href="/newaccount.php">Signup</a></li>
145
+ <li><a class="button white" href="/login.php">Login</a></li>
146
+ <li><a class="button white" href="/shows.php">Shows</a></li>
147
+ <li><a class="button white" href="/allshows/a">Air dates</a></li>
148
+ <li><a class="button white" href="http://www.sub-talk.net">Forum</a></li>
149
+ </ul>
150
+ </div>
151
+ </td></tr>
152
+ <tr>
153
+ <td>
154
+ </td><td>
155
+ <g:plusone size="medium"></g:plusone>
156
+ <a href="http://twitter.com/addic7ed" target="_blank"><img width="32" height="32" src="http://www.addic7ed.com/images/twitter_right.png" alt="Twitter" border="0" /></a>
157
+ <a href="irc://irc.efnet.net:6667/addic7ed"><img width="32" height="32" src="http://www.addic7ed.com/images/irc-right.png" alt="IRC" border="0" /></a>
158
+ <div style="float: right; padding-right:10%;"><form action="https://www.paypal.com/cgi-bin/webscr" method="post">
159
+ <input type="hidden" name="cmd" value="_s-xclick">
160
+ <input type="hidden" name="hosted_button_id" value="B8G9BEZHJABT6">
161
+ <input border="0" type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online!">
162
+ <img border="0" width="1" height="1" alt="" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif">
163
+ </form>
164
+ <button class="bitcoinate" data-size="30" data-address="1M4Z2LxCDaffwZhwXzSsKkKHNvC9izQtWS">bitcoinate</button></div>
165
+ </td>
166
+ </tr>
167
+ <tr>
168
+ <td colspan=2><iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2FAddic7ed&amp;send=false&amp;layout=button_count&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=tahoma&amp;height=21&amp;appId=121322186712" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:21px;" allowTransparency="true"></iframe>
169
+ </td>
170
+ </tr>
171
+ </table>
172
+ </center>
173
+
174
+ <center>
175
+
176
+ <!--[if lt IE 7]>
177
+ <style type="text/css">
178
+ div, img { behavior: url(http://www.addic7ed.com/js/iepngfix.htc) }
179
+ </style>
180
+ <![endif]-->
181
+ <!--
182
+ This file is part of wikisubtitles.
183
+
184
+ wikisubtitles is free software: you can redistribute it and/or modify
185
+ it under the terms of the GNU General Public License as published by
186
+ the Free Software Foundation, either version 3 of the License, or
187
+ (at your option) any later version.
188
+
189
+ Wikisubtitles is distributed in the hope that it will be useful,
190
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
191
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
192
+ GNU General Public License for more details.
193
+
194
+ You should have received a copy of the GNU General Public License
195
+ along with Foobar. If not, see <http://www.gnu.org/licenses/>.
196
+ -->
197
+ <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
198
+ <tr>
199
+ <td width="50%" align="center">
200
+ <a href="javascript:qsClear();"><img width="24" height="24" title="Clear Search" alt="Clear Search Terms" src="/images/view.png" border="0" /></a> <span id="qssShow"><b>
201
+ Quick search </b>
202
+ &nbsp; <script type="text/javascript">
203
+ window.addEvent('domready', function() { showChange(1175 ); } );
204
+ </script>
205
+
206
+ </span>
207
+ <span id="qsSeason">&nbsp;
208
+ <script type="text/javascript">window.addEvent('domready', function() { seasonChange(1175,3) } );</script>
209
+ </span>
210
+ &nbsp;
211
+ <span id="qsEp">&nbsp;</span></td>
212
+ <td><form id="form1" name="form1" method="get" action="/search.php">
213
+ <div align="center">
214
+ Search subtitle &nbsp;
215
+ <input name="search" type="text" id="search" size="20" /> &nbsp;
216
+ <input name="Submit" type="submit" class="coolBoton" value="Search" /> </div>
217
+ </form>
218
+
219
+ </td>
220
+ </tr>
221
+ </table>
222
+ <br><!--Iframe Tag -->
223
+
224
+ <!-- begin ZEDO for channel: Addic7ed 728x90 , publisher: Addic7ed , Ad Dimension: Super Banner - 728 x 90 -->
225
+
226
+ <iframe src="http://d2.zedo.com/jsc/d2/ff2.html?n=2051;c=59;s=22;d=14;w=728;h=90" frameborder=0 marginheight=0 marginwidth=0 scrolling="no" allowTransparency="true" width=728 height=90></iframe>
227
+
228
+ <!-- end ZEDO for channel: Addic7ed 728x90 , publisher: Addic7ed , Ad Dimension: Super Banner - 728 x 90 -->
229
+
230
+ <br />
231
+ <script type="text/javascript">
232
+ function saveWatched(subid,season,episode)
233
+ {
234
+
235
+ alert("Login before using this feature");
236
+ return false;
237
+ var myRequest = new Request({
238
+ url: '/ajax_saveWatched.php',
239
+ method: 'get',
240
+ });
241
+ myRequest.send('subid='+subid+'&season='+season+'&episode='+episode);
242
+ }
243
+
244
+ function saveShowRating(tvrage,rating)
245
+ {
246
+ alert("Login before using this feature"); return false;
247
+ var myRequest = new Request({
248
+ url: '/ajax_saveShowRating.php',
249
+ method: 'get',
250
+ });
251
+ myRequest.send('tvrage='+tvrage+'&rating='+rating);
252
+
253
+ }
254
+ </script>
255
+
256
+ <script type='text/javascript'>//<![CDATA[
257
+ window.addEvent('load', function() {
258
+ // Default images folder definition. You will use your own.
259
+ MooStarRatingImages.defaultImageFolder =
260
+ 'http://www.addic7ed.com/img/';
261
+
262
+ // ================================================================
263
+
264
+ // Advanced options
265
+ var advancedRating = new MooStarRating({
266
+ form: 'advanced',
267
+ radios: 'my_rating', // Radios name
268
+ half: true, // That means one star for two values!
269
+ imageEmpty: 'star_boxed_empty.png', // Different image
270
+ imageFull: 'star_boxed_full.png', // Different image
271
+ imageHover: 'star_boxed_hover.png', // Different image
272
+ width: 17, // One pixel bigger
273
+ tip: '<i>[VALUE] / 10.0</i>', // Mouse rollover tip
274
+ tipTarget: $('htmlTip'), // Tip element
275
+ tipTargetType: 'html' // Tip type, now is HTML, not only text
276
+ });
277
+
278
+ // ================================================================
279
+
280
+ // Click callback function
281
+ function myCallback(value) {
282
+ saveShowRating(25056,value)
283
+ }
284
+
285
+ // Click event
286
+ advancedRating.addEvent('click', myCallback);
287
+ });//]]>
288
+
289
+ </script>
290
+
291
+ <br />
292
+ <div id="container">
293
+ <table class="tabel90" border="0">
294
+ <tr> <!-- table header -->
295
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tl.gif" /></td>
296
+ <td>&nbsp;</td>
297
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tr.gif" /></td>
298
+ </tr>
299
+ <tr>
300
+ <td>&nbsp;</td>
301
+ <td>
302
+ <table border="0" align="center" class="tabel95">
303
+ <tr>
304
+ <td width="50%"><div align="left"><span class="titulo">
305
+ The Walking Dead - 03x02 - Sick <small>Subtitle</small>
306
+ </span></div>
307
+ </td>
308
+ <td width="20%"><b>Started: </b>Oct/31/2010
309
+ </td>
310
+ <td width="30%" rowspan="5"><div valign="top">
311
+ <table class="tabel" width="40%" border="0" align="center">
312
+ <tr>
313
+ <td><img class="resize" border="0" src="/images/showimages/The-Walking-Dead-banner.jpg" />
314
+ </td>
315
+ </tr>
316
+ </table></div>
317
+ </td>
318
+ </tr>
319
+
320
+ <tr>
321
+ <td><img src="/images/folder_image.png" width="16" height="16" />&nbsp;<a href="/show/1175">The Walking Dead</a>, <a href='/season/1175/3'>Season 3</a>, Episode 2 subtitles
322
+ </td>
323
+ <td><b>Status: </b> Ongoing
324
+ </td>
325
+ </tr>
326
+
327
+ <tr>
328
+ <td><br /><b> The Walking Dead - 9/10<form name="advanced"> <label>Rate:</label><input type="radio" name="my_rating" value="0.5"><input type="radio" name="my_rating" value="1"><input type="radio" name="my_rating" value="1.5"><input type="radio" name="my_rating" value="2"><input type="radio" name="my_rating" value="2.5"><input type="radio" name="my_rating" value="3"><input type="radio" name="my_rating" value="3.5"><input type="radio" name="my_rating" value="4"><input type="radio" name="my_rating" value="4.5"><input type="radio" name="my_rating" value="5"><input type="radio" name="my_rating" value="5.5"><input type="radio" name="my_rating" value="6"><input type="radio" name="my_rating" value="6.5"><input type="radio" name="my_rating" value="7"><input type="radio" name="my_rating" value="7.5"><input type="radio" name="my_rating" value="8"><input type="radio" name="my_rating" value="8.5"><input type="radio" name="my_rating" value="9"><input type="radio" name="my_rating" value="9.5"><input type="radio" name="my_rating" value="10"><span id="htmlTip"></span></form><a href="/overview/25056/The Walking Dead"><font color=red>Episode list and air dates</font></a>
329
+ </td>
330
+ <td><b>Runtime: </b>60 mins
331
+ </td></tr><tr><td>&nbsp;<b><big><font color='red'>Viewed</font></big></b><input type="checkbox" name="watched" value="true" onclick="saveWatched(25056,3,2);" >
332
+ </td></tr>
333
+ <tr>
334
+ <td><b>Network: </b>AMC (US)
335
+ </td>
336
+ </tr>
337
+
338
+ <tr>
339
+ <td><img src="/images/clock.png" width="16" height="16" align="absmiddle" />
340
+ 00:42:14
341
+ <img src="/images/download.png" width="16" height="16" align="absmiddle" />
342
+ 21685
343
+ </td>
344
+ <td><b>Airs on: </b>Sunday @ 21:00
345
+ </td>
346
+ </tr>
347
+ <tr>
348
+ <td><a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="addic7ed">Tweet</a>&nbsp;&nbsp;<a href="/show/1175">Multi Download</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></td>
349
+ <td><b>Genre: </b>Scripted
350
+ </td>
351
+ <td>
352
+ <fb:like href="http://www.addic7ed.com/serie/The_Walking_Dead/3/2/1" layout="standard" show_faces="false" width="400" action="like" font="segoe ui" colorscheme="light" />
353
+ <script src="http://connect.facebook.net/en_US/all.js"></script>
354
+ <script>
355
+ FB.init({
356
+ status : true, // check login status
357
+ cookie : true, // enable cookies to allow the server to access the session
358
+ xfbml : true // parse XFBML
359
+ });
360
+ </script>
361
+ </td>
362
+ </tr>
363
+ </table>
364
+ </td>
365
+ <td>&nbsp;</td>
366
+ </tr>
367
+ <tr> <!-- table footer -->
368
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/bl.gif" /></td>
369
+ <td>&nbsp;</td>
370
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/br.gif" /></td>
371
+ </tr>
372
+ </table>
373
+ </div>
374
+ <p>
375
+
376
+ <script type="text/javascript">
377
+ function sortChange()
378
+ {
379
+ var sortCheck = document.getElementById("sort_versions");
380
+ window.location='/serie/The Walking Dead/3/2/'+sortCheck.checked;
381
+ }
382
+ function filterChange()
383
+ {
384
+ var filter = document.getElementById("filterlang");
385
+ window.location='/serie/The Walking Dead/3/2/'+filter.options[filter.selectedIndex].value;
386
+ }
387
+ </script><b>Sort versions alphabetically by language</b><INPUT TYPE="CHECKBOX" id="sort_versions" onclick="javascript:sortChange();" checked="yes" > - Filter Language: <select id="filterlang" name="filterlang" class="inputCool" onchange="javascript:filterChange();" >
388
+ <option value="0">All</option><option value="52">Albanian</option><option value="38">Arabic</option><option value="50">Armenian</option><option value="48">Azerbaijani</option><option value="47">Bengali</option><option value="44">Bosnian</option><option value="35">Bulgarian</option><option value="12">Català</option><option value="41">Chinese (Simplified)</option><option value="24">Chinese (Traditional)</option><option value="31">Croatian</option><option value="14">Czech</option><option value="30">Danish</option><option value="17">Dutch</option><option selected="selected" value="1">English</option><option value="13">Euskera</option><option value="28">Finnish</option><option value="8">French</option><option value="15">Galego</option><option value="11">German</option><option value="27">Greek</option><option value="23">Hebrew</option><option value="20">Hungarian</option><option value="37">Indonesian</option><option value="7">Italian</option><option value="32">Japanese</option><option value="42">Korean</option><option value="49">Macedonian</option><option value="40">Malay</option><option value="29">Norwegian</option><option value="43">Persian</option><option value="21">Polish</option><option value="9">Portuguese</option><option value="10">Portuguese (Brazilian)</option><option value="26">Romanian</option><option value="19">Russian</option><option value="39">Serbian (Cyrillic)</option><option value="36">Serbian (Latin)</option><option value="25">Slovak</option><option value="22">Slovenian</option><option value="4">Spanish</option><option value="6">Spanish (Latin America)</option><option value="5">Spanish (Spain)</option><option value="18">Swedish</option><option value="46">Thai</option><option value="16">Turkish</option><option value="51">Ukrainian</option><option value="45">Vietnamese</option></select><br>
389
+ <div id="container95m">
390
+ <table class="tabel95">
391
+ <tr> <!-- table header -->
392
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tl.gif" /></td>
393
+ <td>&nbsp;</td>
394
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tr.gif" /></td>
395
+ </tr>
396
+ <tr>
397
+ <td>&nbsp;</td>
398
+ <td>
399
+ <table width="100%" border="0" align="center" class="tabel95">
400
+ <tr>
401
+ <td colspan="3" align="center" class="NewsTitle"><img src="/images/folder_page.png" width="16" height="16" />Version KILLERS, 0.00 MBs&nbsp;<img title="720/1080" src="/images/hdicon.png" width="24" height="24" /></td><td colspan="2">
402
+ <img src="/images/movie_faq.png" title="LOL &amp; SYS always work with 720p DIMENSION; XII & ASAP always work with 720p IMMERSE; 2HD always works with 720p 2HD; BiA always works with 720p BiA; FoV always works with 720p FoV" border="0" width="24" height="24" />
403
+ <img src="/images/subtitle.gif" width="22" height="14" /><a href="/index.php" onclick="return confirm('You must be a user for a few days before you can make edits.')">New translation</a><img src="/images/link.png" /> uploaded by <a href='/user/3522'>n17t01</a> 423 days ago
404
+ </td>
405
+ <td width="16%">
406
+ </td>
407
+ </tr>
408
+ <tr>
409
+ <td colspan="4"></td>
410
+ <td class="newsDate" colspan="3">
411
+ Works with 720p IMMERSE, AFG, iNTERNAL 720p EVOLVE and iNTERNAL AFG<img src="http://www.addic7ed.com/images/invisible.gif" />
412
+ </td>
413
+ </tr><tr><td width="10%" rowspan="2" valign="top"><a href="http://addic7ed.com"><img height="35" width="100" src="/friends/addic7ed.jpg" border="0" /></a>&nbsp;&nbsp;&nbsp;</td>
414
+ <td width="1%" rowspan="2" valign="top"><img src="http://www.addic7ed.com/images/invisible.gif" />
415
+ </td>
416
+ <td width="21%" class="language">English<a href="javascript:saveFavorite(68018,1,1)"><img title="Start following..." src="http://www.addic7ed.com/images/icons/favorite.png" height="20" width="20" border="0" /></a>
417
+ </td>
418
+ <td width="19%"><b>Completed
419
+ </b>
420
+ </td>
421
+ <td colspan="3">
422
+ <img src="/images/download.png" width="24" height="24" /> <a class="buttonDownload" href="/original/68018/1"><strong>original</strong></a>
423
+ <a class="buttonDownload" href="/updated/1/68018/1"><strong>most updated</strong></a></td>
424
+ <td>
425
+ </td>
426
+ </tr>
427
+ <tr>
428
+ <td colspan="2" class="newsDate"><img title="Corrected" src="http://www.addic7ed.com/images/bullet_go.png" width="24" height="24" /><img title="Hearing Impaired" src="http://www.addic7ed.com/images/hi.jpg" width="24" height="24" />2 times edited · 26068 Downloads · 502 sequences
429
+ </td>
430
+ <td colspan="3"><img border="0" src="/images/edit.png" width="24" height="24" /><a href="/index.php?id=68018&amp;fversion=1&amp;lang=1" onclick="return confirm('You must be a user for a few days before you can make edits.')">view &amp; edit</a>&nbsp;edited 420 days ago
431
+ </td>
432
+ </tr></table>
433
+ </td>
434
+ <td>&nbsp;</td>
435
+ </tr>
436
+ <tr> <!-- table footer -->
437
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/bl.gif" /></td>
438
+ <td>&nbsp;</td>
439
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/br.gif" /></td>
440
+ </tr>
441
+ </table>
442
+ </div>
443
+ <div id="container95m">
444
+ <table class="tabel95">
445
+ <tr> <!-- table header -->
446
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tl.gif" /></td>
447
+ <td>&nbsp;</td>
448
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tr.gif" /></td>
449
+ </tr>
450
+ <tr>
451
+ <td>&nbsp;</td>
452
+ <td>
453
+ <table width="100%" border="0" align="center" class="tabel95">
454
+ <tr>
455
+ <td colspan="3" align="center" class="NewsTitle"><img src="/images/folder_page.png" width="16" height="16" />Version KILLERS, 0.00 MBs&nbsp;<img title="720/1080" src="/images/hdicon.png" width="24" height="24" /></td><td colspan="2">
456
+ <img src="/images/movie_faq.png" title="LOL &amp; SYS always work with 720p DIMENSION; XII & ASAP always work with 720p IMMERSE; 2HD always works with 720p 2HD; BiA always works with 720p BiA; FoV always works with 720p FoV" border="0" width="24" height="24" />
457
+ <img src="/images/subtitle.gif" width="22" height="14" /><a href="/index.php?id=68018&amp;fversion=1&amp;lang=1" onclick="return confirm('You must be a user for a few days before you can make edits.')">New translation</a><img src="/images/link.png" /> uploaded by <a href='/user/3522'>n17t01</a> 423 days ago
458
+ </td>
459
+ <td width="16%">
460
+ </td>
461
+ </tr>
462
+ <tr>
463
+ <td colspan="4"></td>
464
+ <td class="newsDate" colspan="3">
465
+ Works with 720p IMMERSE, AFG, iNTERNAL 720p EVOLVE and iNTERNAL AFG<img src="http://www.addic7ed.com/images/invisible.gif" />
466
+ </td>
467
+ </tr><tr><td width="10%" rowspan="2" valign="top"><a href="http://addic7ed.com"><img height="35" width="100" src="/friends/addic7ed.jpg" border="0" /></a>&nbsp;&nbsp;&nbsp;</td>
468
+ <td width="1%" rowspan="2" valign="top"><img src="http://www.addic7ed.com/images/invisible.gif" />
469
+ </td>
470
+ <td width="21%" class="language">English<a href="javascript:saveFavorite(68018,1,0)"><img title="Start following..." src="http://www.addic7ed.com/images/icons/favorite.png" height="20" width="20" border="0" /></a>
471
+ </td>
472
+ <td width="19%"><b>Completed
473
+ </b>
474
+ </td>
475
+ <td colspan="3">
476
+ <img src="/images/download.png" width="24" height="24" /> <a class="buttonDownload" href="/original/68018/0"><strong>original</strong></a>
477
+ <a class="buttonDownload" href="/updated/1/68018/0"><strong>most updated</strong></a></td>
478
+ <td>
479
+ </td>
480
+ </tr>
481
+ <tr>
482
+ <td colspan="2" class="newsDate"><img title="Corrected" src="http://www.addic7ed.com/images/bullet_go.png" width="24" height="24" /><img src="/images/icons/invisible.gif" width="24" height="24" />2 times edited · 21685 Downloads · 477 sequences
483
+ </td>
484
+ <td colspan="3"><img border="0" src="/images/edit.png" width="24" height="24" /><a href="/index.php?id=68018&amp;fversion=0&amp;lang=1" onclick="return confirm('You must be a user for a few days before you can make edits.')">view &amp; edit</a>&nbsp;edited 420 days ago
485
+ </td>
486
+ </tr></table>
487
+ </td>
488
+ <td>&nbsp;</td>
489
+ </tr>
490
+ <tr> <!-- table footer -->
491
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/bl.gif" /></td>
492
+ <td>&nbsp;</td>
493
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/br.gif" /></td>
494
+ </tr>
495
+ </table>
496
+ </div>
497
+ <div id="container95m">
498
+ <table class="tabel95">
499
+ <tr> <!-- table header -->
500
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tl.gif" /></td>
501
+ <td>&nbsp;</td>
502
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tr.gif" /></td>
503
+ </tr>
504
+ <tr>
505
+ <td>&nbsp;</td>
506
+ <td>
507
+ <table width="100%" border="0" align="center" class="tabel95">
508
+ <tr>
509
+ <td colspan="3" align="center" class="NewsTitle"><img src="/images/folder_page.png" width="16" height="16" />Version HDB, 0.00 MBs&nbsp;<img title="720/1080" src="/images/hdicon.png" width="24" height="24" /></td><td colspan="2">
510
+ <img src="/images/movie_faq.png" title="LOL &amp; SYS always work with 720p DIMENSION; XII & ASAP always work with 720p IMMERSE; 2HD always works with 720p 2HD; BiA always works with 720p BiA; FoV always works with 720p FoV" border="0" width="24" height="24" />
511
+ <img src="/images/subtitle.gif" width="22" height="14" /><a href="/index.php?id=68018&amp;fversion=0&amp;lang=1" onclick="return confirm('You must be a user for a few days before you can make edits.')">New translation</a><img src="/images/link.png" /> uploaded by <a href='/user/116010'>xevious</a> 422 days ago
512
+ </td>
513
+ <td width="16%">
514
+ </td>
515
+ </tr>
516
+ <tr>
517
+ <td colspan="4"></td>
518
+ <td class="newsDate" colspan="3">
519
+ 1080p WEB-DL<img src="http://www.addic7ed.com/images/invisible.gif" />
520
+ </td>
521
+ </tr><tr><td width="10%" rowspan="2" valign="top">&nbsp;&nbsp;&nbsp;</td>
522
+ <td width="1%" rowspan="2" valign="top"><img src="http://www.addic7ed.com/images/invisible.gif" />
523
+ </td>
524
+ <td width="21%" class="language">English<a href="javascript:saveFavorite(68018,1,0)"><img title="Start following..." src="http://www.addic7ed.com/images/icons/favorite.png" height="20" width="20" border="0" /></a>
525
+ </td>
526
+ <td width="19%"><b>Completed
527
+ </b>
528
+ </td>
529
+ <td colspan="3">
530
+ <img src="/images/download.png" width="24" height="24" /> <a class="buttonDownload" href="/original/68018/2"><strong>original</strong></a>
531
+ <a class="buttonDownload" href="/updated/1/68018/2"><strong>most updated</strong></a></td>
532
+ <td>
533
+ </td>
534
+ </tr>
535
+ <tr>
536
+ <td colspan="2" class="newsDate"><img title="Corrected" src="http://www.addic7ed.com/images/bullet_go.png" width="24" height="24" /><img src="/images/icons/invisible.gif" width="24" height="24" />1 times edited · 3333 Downloads · 469 sequences
537
+ </td>
538
+ <td colspan="3"><img border="0" src="/images/edit.png" width="24" height="24" /><a href="/index.php?id=68018&amp;fversion=2&amp;lang=1" onclick="return confirm('You must be a user for a few days before you can make edits.')">view &amp; edit</a>&nbsp;edited 421 days ago
539
+ </td>
540
+ </tr></table>
541
+ </td>
542
+ <td>&nbsp;</td>
543
+ </tr>
544
+ <tr> <!-- table footer -->
545
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/bl.gif" /></td>
546
+ <td>&nbsp;</td>
547
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/br.gif" /></td>
548
+ </tr>
549
+ </table>
550
+ </div><div align="center">
551
+ </div><p>
552
+ </p>
553
+ <p>&nbsp;</p>
554
+ <center>
555
+
556
+ <!--Iframe Tag -->
557
+
558
+ <!-- begin ZEDO for channel: Addic7ed 728x90 , publisher: Addic7ed , Ad Dimension: Super Banner - 728 x 90 -->
559
+
560
+ <iframe src="http://d2.zedo.com/jsc/d2/ff2.html?n=2051;c=59;s=22;d=14;w=728;h=90" frameborder=0 marginheight=0 marginwidth=0 scrolling="no" allowTransparency="true" width=728 height=90></iframe>
561
+
562
+ <!-- end ZEDO for channel: Addic7ed 728x90 , publisher: Addic7ed , Ad Dimension: Super Banner - 728 x 90 -->
563
+ </center>
564
+ <br />
565
+ <div id="container95m">
566
+ <table class="tabel95">
567
+ <tr> <!-- table header -->
568
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tl.gif" /></td>
569
+ <td>&nbsp;</td>
570
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/tr.gif" /></td>
571
+ </tr>
572
+ <tr>
573
+ <td>&nbsp;</td>
574
+ <td>
575
+ <span id="comments">
576
+ </span>
577
+ </td>
578
+ <td>&nbsp;</td>
579
+ </tr>
580
+ <tr> <!-- table footer -->
581
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/bl.gif" /></td>
582
+ <td>&nbsp;</td>
583
+ <td class="tablecorner"><img src="http://www.addic7ed.com/images/br.gif" /></td>
584
+ </tr>
585
+ </table>
586
+ </div>
587
+
588
+
589
+ <script type="text/javascript">
590
+ function carga()
591
+ {
592
+ var subID='68018'; $("comments").innerHTML = '<img src="/images/loader.gif">';
593
+ var myRequest = new Request({
594
+ url: 'http://www.addic7ed.com/ajax_getComments.php',
595
+ method: 'get',
596
+ onSuccess: function(responseText){
597
+ $("comments").innerHTML = responseText;
598
+ }
599
+ });
600
+ myRequest.send('id='+subID);
601
+ }
602
+
603
+ function enviar()
604
+ {
605
+ var paramString = $("newc").toQueryString();
606
+ $("comments").innerHTML = '<img src="/images/loader.gif">';
607
+ var myRequest = new Request({
608
+ url: 'http://www.addic7ed.com/ajax_getComments.php',
609
+ method: 'post',
610
+ onSuccess: function(responseText){
611
+ $("comments").innerHTML = responseText;
612
+ }
613
+ });
614
+ myRequest.send(paramString);
615
+
616
+ return false;
617
+ }
618
+
619
+ function notifyModerator(fversion, lang)
620
+ {
621
+ var subID='68018';
622
+ if (confirm('Are you sure that you want to report a problem to the moderators?'))
623
+ {
624
+ var myRequest = new Request({
625
+ url: 'http://www.addic7ed.com/ajax_notify.php',
626
+ method: 'get',
627
+ onSuccess: function(responseText){
628
+ alert("The notification has sent to the moderators. Please, be patient");
629
+ }
630
+ });
631
+ myRequest.send('id='+subID+'&fversion='+fversion+'&lang='+lang);
632
+
633
+ $("comments").innerHTML = '<img src="/images/loader.gif">';
634
+ }
635
+ }
636
+
637
+
638
+ function addCorrection(fversion, lang)
639
+ {
640
+ var subID='68018';
641
+ if (confirm('Are you sure you want to correct this subtitle??'))
642
+ {
643
+ var myRequest = new Request({
644
+ url: 'http://www.addic7ed.com/ajax_correction.php',
645
+ method: 'get',
646
+ onSuccess: function(responseText){
647
+ alert("Subtitle added to Corrections page. Please correct it or announce that you bail");
648
+ }
649
+ });
650
+ myRequest.send('id='+subID+'&fversion='+fversion+'&lang='+lang);
651
+ }
652
+ }
653
+
654
+ function delComment(cid)
655
+ {
656
+ var myRequest = new Request({
657
+ url: 'http://www.addic7ed.com/ajax_delComment.php',
658
+ method: 'get',
659
+ onSuccess: function(responseText){
660
+ // alert("Subtitle added to Corrections page. Please correct it or announce that you bail");
661
+ }
662
+ });
663
+ myRequest.send('cid='+cid);
664
+
665
+ $("comments").innerHTML = "<img src='/images/loader.gif' />";
666
+
667
+ var myRequest = new Request({
668
+ url: 'http://www.addic7ed.com/ajax_getComments.php',
669
+ method: 'get',
670
+ onSuccess: function(responseText){
671
+ $("comments").innerHTML = responseText;
672
+ }
673
+ });
674
+ myRequest.send('cid='+cid);
675
+ }
676
+
677
+ window.addEvent('domready', function(){ carga(); });
678
+ </script>
679
+ <center>
680
+
681
+ <center><table border="0" width="90%">
682
+ <tr>
683
+ <td class="NewsTitle"><img width="20" height="20" src="http://addic7ed.com/images/television.png" alt="TV" /><img src="http://www.addic7ed.com/images/invisible.gif" alt=" " />Addic7ed</td>
684
+ <td class="NewsTitle"><img width="20" height="20" src="http://addic7ed.com/images/television.png" alt="TV" /><img src="http://www.addic7ed.com/images/invisible.gif" alt=" " />Popular Shows</td>
685
+ <td class="NewsTitle"><img width="20" height="20" src="http://addic7ed.com/images/television.png" alt="TV" /><img src="http://www.addic7ed.com/images/invisible.gif" alt=" " />Useful</td>
686
+ <td class="NewsTitle"><img width="20" height="20" src="http://addic7ed.com/images/television.png" alt="TV" /><img src="http://www.addic7ed.com/images/invisible.gif" alt=" " />Forums</td>
687
+ </tr>
688
+ <tr>
689
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/shows.php">Browse By Shows</a></div></td>
690
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/1">Lost</a></div></td>
691
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/shows-schedule">TV Shows Schedule</a></div></td>
692
+ <td><div id="footermenu"><a href="http://www.sub-talk.net/topic/1031-changelog/">Site Changelog</a></div></td>
693
+ </tr>
694
+ <tr>
695
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/movie-subtitles">Browse By Movies</a></div></td>
696
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/2">Heroes</a></div></td>
697
+ <td><div id="footermenu"><a href="http://www.sub-talk.net/topic/2784-frequently-asked-questions/">Frequently Asked Questions</a></div></td>
698
+ <td><div id="footermenu">Support Us</div></td>
699
+ </tr>
700
+ <tr>
701
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/top-uploaders">Top Uploaders</a></div></td>
702
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/121">Gossip Girl</a></div></td>
703
+ <td><div id="footermenu">RSS Feeds</div></td>
704
+ <td><div id="footermenu">Premium Accounts</div></td>
705
+ </tr>
706
+ <tr>
707
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/log.php?mode=downloaded">Top Downloads</a></div></td>
708
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/64">One Tree Hill</a></div></td>
709
+ <td class="NewsTitle"><img width="20" height="20" src="http://addic7ed.com/images/television.png" alt="TV" /><img src="http://www.addic7ed.com/images/invisible.gif" alt=" "/>Tutorials</td>
710
+ <td><div id="footermenu"><a href="http://sub-talk.net/thread-6-1-1.html">Video Formats</a></div></td>
711
+ </tr>
712
+ <tr>
713
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/log.php?mode=news">All News</a></div></td>
714
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/51">How I Met Your Mother</a></div></td>
715
+ <td><div id="footermenu"><a href="http://www.sub-talk.net/topic/338-guide-to-syncing-with-subtitleedit/page__p__1485__hl__%2B+%2Bsync__fromsearch__1#entry1485">How to Synchronize Subtitles</a></div></td>
716
+ <td><div id="footermenu">Frequently Asked Questions</div></td>
717
+ </tr>
718
+ <tr>
719
+ <td><div id="footermenu"><a href="http://www.sub-talk.net">Sub-Talk Forums</a></div></td>
720
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/7">24</a></div></td>
721
+ <td><div id="footermenu">What Are Subtitles</div></td>
722
+ <td><div id="footermenu"><a href="http://sub-talk.net/index.php?gid=7">TV Shows Talk</a></div></td>
723
+ </tr>
724
+ <tr>
725
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/latest_comments.php">Latest Comments</a></div></td>
726
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/126">The Big Bang Theory</a></div></td>
727
+ <td><div id="footermenu">New Translation Tutorial</div></td>
728
+ <td><div id="footermenu"><a href="http://sub-talk.net/index.php?gid=22">Movies Talk</a></div></td>
729
+ </tr>
730
+ <tr>
731
+ <td><div id="footermenu"><a href="#">#</a></div></td>
732
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/130">Family Guy</a></div></td>
733
+ <td><div id="footermenu">Upload a New Subtitle Tutorial</div></td>
734
+ <td class="NewsTitle"><img width="20" height="20" src="http://addic7ed.com/images/television.png" alt="TV" /><img src="http://www.addic7ed.com/images/invisible.gif" alt=" " />Stats</td>
735
+ </tr>
736
+ <tr>
737
+ <td><div id="footermenu">Terms of Service</div></td>
738
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/16">Desperate Housewives</a></div></td>
739
+ <td><div id="footermenu"><a href="http://sub-talk.net/viewthread.php?tid=294">How to have an Avatar</a></div></td>
740
+ <td align="left">.
741
+ </td>
742
+ </tr>
743
+ <tr>
744
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/contact.php">Contact</a></div></td>
745
+ <td><div id="footermenu"><a href="http://www.addic7ed.com/show/15">House</a></div></td>
746
+ <td><div id="footermenu">How to Add to Firefox Search</div></td>
747
+ <td> <script type="text/javascript" src="http://widgets.amung.us/classic.js"></script><script type="text/javascript">WAU_classic('8dpehb3jhy6n')</script>
748
+ </td>
749
+ </tr>
750
+ </table></center>
751
+ </center>
752
+
753
+ <script type="text/javascript">
754
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
755
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
756
+ </script>
757
+ <script type="text/javascript">
758
+ try {
759
+ var pageTracker = _gat._getTracker("UA-10775680-1");
760
+ pageTracker._trackPageview();
761
+ } catch(err) {}</script>
762
+
763
+
764
+ <script type="text/javascript" src="http://apis.google.com/js/plusone.js"></script>
765
+
766
+ cached = build time: 0.0545279979706 <br> </center>
767
+ </body>
768
+ </html>
769
+
770
+