FCleaner 0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/Gemfile +4 -0
- data/Guardfile +11 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +8 -0
- data/bin/fcleaner.rb +16 -0
- data/fcleaner.gemspec +26 -0
- data/lib/fcleaner.rb +119 -0
- data/lib/fcleaner/version.rb +3 -0
- data/spec/fcleaner_spec.rb +146 -0
- data/spec/mock_html/activity_log.html +687 -0
- data/spec/mock_html/activity_log_options.html +292 -0
- data/spec/mock_html/allactivity_reg_date.html +337 -0
- data/spec/mock_html/homepage_email_incorrect.html +4 -0
- data/spec/mock_html/homepage_login.html +4 -0
- data/spec/mock_html/homepage_password_incorrect.html +4 -0
- data/spec/mock_html/profile.html +4 -0
- data/spec/spec_helper.rb +13 -0
- metadata +143 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d3d90a57ab5415201acbdc380a30fe26f49291b3
|
4
|
+
data.tar.gz: 109f479ec8368233ace9a20342ec5dc675474050
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fc54f616b25810a90164a43a596840d6403f4abcf11542ebb041030129782a99f6d345fc55b90e906972f374c10892f4118a0a491276fd7f9b21794d3dda2afc
|
7
|
+
data.tar.gz: 5ac27ed2dbecbeb52fe8074c5d641d07685f7a7b338083a1eb5ed76ae2ba4192be05b720ffc6602bab51df64ba9108c108dea6b46023a0b1c9a17b8162b7745e
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Guardfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Davs
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# FCleaner
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'FCleaner'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install FCleaner
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
24
|
+
|
25
|
+
## Contributing
|
26
|
+
|
27
|
+
1. Fork it ( https://github.com/[my-github-username]/FCleaner/fork )
|
28
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
29
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
30
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
31
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
data/bin/fcleaner.rb
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'io/console'
|
4
|
+
require_relative '../lib/fcleaner'
|
5
|
+
|
6
|
+
print "Enter email: "
|
7
|
+
email = gets.chomp
|
8
|
+
|
9
|
+
print "Enter password: "
|
10
|
+
pass = STDIN.noecho(&:gets).chomp
|
11
|
+
|
12
|
+
puts ''
|
13
|
+
|
14
|
+
alog = FCleaner::ActivityLog.new email, pass
|
15
|
+
alog.login
|
16
|
+
alog.clean
|
data/fcleaner.gemspec
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fcleaner/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "FCleaner"
|
8
|
+
spec.version = FCleaner::VERSION
|
9
|
+
spec.authors = ["Davs"]
|
10
|
+
spec.email = ["kovdavid@gmail.com"]
|
11
|
+
spec.summary = %q{Cleanes one's Facebook Activity Log}
|
12
|
+
spec.homepage = "https://github.com/DavsX/FCleaner"
|
13
|
+
spec.license = "MIT"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_runtime_dependency "mechanize"
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler"
|
23
|
+
spec.add_development_dependency "rake"
|
24
|
+
spec.add_development_dependency "rspec"
|
25
|
+
spec.add_development_dependency "webmock"
|
26
|
+
end
|
data/lib/fcleaner.rb
ADDED
@@ -0,0 +1,119 @@
|
|
1
|
+
require 'mechanize'
|
2
|
+
require 'date'
|
3
|
+
|
4
|
+
module FCleaner
|
5
|
+
HOMEPAGE_URL = "https://m.facebook.com".freeze
|
6
|
+
LOGIN_URL = "#{HOMEPAGE_URL}/login.php".freeze
|
7
|
+
PROFILE_URL = "#{HOMEPAGE_URL}/profile.php".freeze
|
8
|
+
|
9
|
+
class ActivityLog
|
10
|
+
attr_reader :email, :pass
|
11
|
+
|
12
|
+
def initialize(email, pass)
|
13
|
+
@email = email.chomp
|
14
|
+
@pass = pass.chomp
|
15
|
+
@agent = Mechanize.new { |agent| agent.user_agent_alias = 'iPhone' }
|
16
|
+
end
|
17
|
+
|
18
|
+
def login
|
19
|
+
home_page = @agent.get(HOMEPAGE_URL)
|
20
|
+
|
21
|
+
login_form = home_page.form
|
22
|
+
login_form.field_with(:name => 'email').value = @email
|
23
|
+
login_form.field_with(:name => 'pass').value = @pass
|
24
|
+
|
25
|
+
login_page = @agent.submit login_form
|
26
|
+
if login_page.body.match('Your password was incorrect.')
|
27
|
+
raise InvalidLoginCredentials, "Your password was incorrect."
|
28
|
+
end
|
29
|
+
|
30
|
+
puts 'Successfully logged in!'
|
31
|
+
end
|
32
|
+
|
33
|
+
def activity_page_url(timestamp)
|
34
|
+
"#{HOMEPAGE_URL}/#{user_id}/allactivity?timeend=#{timestamp}"
|
35
|
+
end
|
36
|
+
|
37
|
+
def clean
|
38
|
+
start_date = Date.new(reg_year, 1, 1)
|
39
|
+
today = Date.today
|
40
|
+
end_date = Date.new(today.year, today.month, 1)
|
41
|
+
|
42
|
+
(start_date..end_date).select {|d| d.day == 1}.each do |date|
|
43
|
+
puts "Cleaning #{date}"
|
44
|
+
clean_month(date.year, date.month)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def clean_month(year, month)
|
49
|
+
timestamp = DateTime.new(year, month, -1, 23, 59, 59).to_time.to_i
|
50
|
+
activity_url = activity_page_url(timestamp)
|
51
|
+
|
52
|
+
activity_page = @agent.get(activity_url)
|
53
|
+
|
54
|
+
activities = activity_page
|
55
|
+
.parser
|
56
|
+
.xpath("//div[@id[starts-with(.,'u_0_')]]")
|
57
|
+
|
58
|
+
activities.each do |activity|
|
59
|
+
action = ['Delete','Delete Photo','Unlike','Hide from Timeline'].detect do
|
60
|
+
|text| !activity.xpath(".//a[text()='#{text}']").empty?
|
61
|
+
end
|
62
|
+
|
63
|
+
if action
|
64
|
+
url = activity
|
65
|
+
.xpath(".//a[text()='#{action}']")
|
66
|
+
.first
|
67
|
+
.attribute('href')
|
68
|
+
.value
|
69
|
+
|
70
|
+
act_text = activity.xpath(".//a[@class='ce']").text.strip
|
71
|
+
|
72
|
+
puts "#{action} => #{act_text}"
|
73
|
+
|
74
|
+
@agent.get(url)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def user_id
|
80
|
+
@user_id ||= build_user_id
|
81
|
+
end
|
82
|
+
|
83
|
+
def reg_year
|
84
|
+
@reg_year ||= build_reg_year
|
85
|
+
end
|
86
|
+
|
87
|
+
def build_user_id
|
88
|
+
@agent.get(PROFILE_URL)
|
89
|
+
.links_with(:text => 'Activity Log')
|
90
|
+
.first
|
91
|
+
.href
|
92
|
+
.match(%r{/(\d+)/})
|
93
|
+
.captures
|
94
|
+
.first
|
95
|
+
end
|
96
|
+
|
97
|
+
def build_reg_year
|
98
|
+
year_divs = @agent.get("#{HOMEPAGE_URL}/#{self.user_id}/allactivity")
|
99
|
+
.parser
|
100
|
+
.xpath("//div[@id[starts-with(.,'year_')]]")
|
101
|
+
|
102
|
+
years = year_divs.collect do |div|
|
103
|
+
div.attribute('id').to_s.gsub(/^year_/, '')
|
104
|
+
end
|
105
|
+
|
106
|
+
reg_year = if years.empty?
|
107
|
+
Date.today.year
|
108
|
+
else
|
109
|
+
years.min
|
110
|
+
end
|
111
|
+
|
112
|
+
puts "Reg year: #{reg_year}"
|
113
|
+
|
114
|
+
reg_year
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
class InvalidLoginCredentials < Exception; end;
|
119
|
+
end
|
@@ -0,0 +1,146 @@
|
|
1
|
+
require_relative 'spec_helper'
|
2
|
+
|
3
|
+
describe "FCleaner/ActivityLog" do
|
4
|
+
before :each do
|
5
|
+
@alog = FCleaner::ActivityLog.new 'myemail', 'mypass'
|
6
|
+
end
|
7
|
+
|
8
|
+
describe "VERSION" do
|
9
|
+
it 'should not be nil' do
|
10
|
+
expect(FCleaner::VERSION).not_to be_nil
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe "#initialize" do
|
15
|
+
it "stores email and password" do
|
16
|
+
expect(@alog.email).to eq('myemail')
|
17
|
+
expect(@alog.pass).to eq('mypass')
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "#login" do
|
22
|
+
before :each do
|
23
|
+
@homepage_html ||= File.read('spec/mock_html/homepage_login.html')
|
24
|
+
|
25
|
+
stub_request(:get, FCleaner::HOMEPAGE_URL).to_return(
|
26
|
+
:body => @homepage_html, :headers => { "Content-Type" => 'text/html' }
|
27
|
+
)
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should log in successfully when credentials are good" do
|
31
|
+
post_stub = stub_request(:post, %r/#{FCleaner::LOGIN_URL}/).to_return(
|
32
|
+
:body => 'test', :headers => { "Content-Type" => 'text/html' }
|
33
|
+
)
|
34
|
+
|
35
|
+
expect { @alog.login }.not_to raise_error
|
36
|
+
|
37
|
+
expect(post_stub.with(
|
38
|
+
:body => hash_including({ :email => 'myemail', :pass => 'mypass' })
|
39
|
+
)).to have_been_requested.once
|
40
|
+
end
|
41
|
+
|
42
|
+
it "should die when given wrong credentials" do
|
43
|
+
post_stub = stub_request(:post, %r/#{FCleaner::LOGIN_URL}/).to_return(
|
44
|
+
:body => 'Your password was incorrect.',
|
45
|
+
:headers => { "Content-Type" => 'text/html' }
|
46
|
+
)
|
47
|
+
|
48
|
+
expect { @alog.login }.to raise_error(FCleaner::InvalidLoginCredentials)
|
49
|
+
|
50
|
+
expect(post_stub.with(
|
51
|
+
:body => hash_including({ :email => 'myemail', :pass => 'mypass' })
|
52
|
+
)).to have_been_requested.once
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
describe "#user_id" do
|
57
|
+
it 'should get the user id' do
|
58
|
+
html = File.read('spec/mock_html/profile.html')
|
59
|
+
stub_request(:get, FCleaner::PROFILE_URL).to_return(
|
60
|
+
:body => html, :headers => { 'Content-Type' => 'text/html' }
|
61
|
+
)
|
62
|
+
|
63
|
+
expect(@alog.user_id).to eq("100008460938593")
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
describe "#reg_year" do
|
68
|
+
before :each do
|
69
|
+
@alog.instance_variable_set(:@user_id, 123456)
|
70
|
+
@url = "https://m.facebook.com/123456/allactivity".freeze
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'succeeds when the user is registered for more than a year' do
|
74
|
+
html = File.read('spec/mock_html/allactivity_reg_date.html')
|
75
|
+
stub_request(:get, @url).to_return(
|
76
|
+
:body => html, :headers => { 'Content-Type' => 'text/html' }
|
77
|
+
)
|
78
|
+
|
79
|
+
expect(@alog.reg_year).to eq("2008")
|
80
|
+
end
|
81
|
+
|
82
|
+
it 'succeeds when the user is registered for less than a year' do
|
83
|
+
html = File.read('spec/mock_html/activity_log.html')
|
84
|
+
stub_request(:get, @url).to_return(
|
85
|
+
:body => html, :headers => { 'Content-Type' => 'text/html' }
|
86
|
+
)
|
87
|
+
|
88
|
+
expect(@alog.reg_year).to eq(Date.today.year)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
describe "#clean" do
|
93
|
+
it 'should call #clean_month' do
|
94
|
+
@alog.instance_variable_set(:@reg_year, 2013)
|
95
|
+
|
96
|
+
allow(Date).to receive(:today).and_return(Date.parse("2014-03-31"))
|
97
|
+
|
98
|
+
1.upto(12).each do |month|
|
99
|
+
expect(@alog).to receive(:clean_month).with(2013, month).once
|
100
|
+
end
|
101
|
+
1.upto(3).each do |month|
|
102
|
+
expect(@alog).to receive(:clean_month).with(2014, month).once
|
103
|
+
end
|
104
|
+
|
105
|
+
@alog.clean
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
describe "#clean_month" do
|
110
|
+
it 'opens all the appropriate links' do
|
111
|
+
@alog.instance_variable_set(:@user_id, 123456)
|
112
|
+
|
113
|
+
activity_url = 'https://m.facebook.com/123456/allactivity'
|
114
|
+
cleanup_url = 'https://m.facebook.com/allactivity/edit'
|
115
|
+
|
116
|
+
stub_request(:get, %r/#{activity_url}/).to_return(
|
117
|
+
:body => File.read('spec/mock_html/activity_log.html'),
|
118
|
+
:headers => { 'Content-Type' => 'text/html' }
|
119
|
+
)
|
120
|
+
cleanup_stub = stub_request(:get, %r/#{cleanup_url}/)
|
121
|
+
.to_return(:body => 'Success')
|
122
|
+
|
123
|
+
@alog.clean_month(2014, 10)
|
124
|
+
|
125
|
+
expectations = [
|
126
|
+
{ 'id' => '1', 'action' => 'hide' },
|
127
|
+
{ 'id' => '2', 'action' => 'hide' },
|
128
|
+
{ 'id' => '3', 'action' => 'unlike' },
|
129
|
+
{ 'id' => '4', 'action' => 'hide' },
|
130
|
+
{ 'id' => '5', 'action' => 'remove_content' },
|
131
|
+
{ 'id' => '6', 'action' => 'remove_content' },
|
132
|
+
{ 'id' => '7', 'action' => 'unlike' },
|
133
|
+
{ 'id' => '8', 'action' => 'remove_comment' },
|
134
|
+
{ 'id' => '9', 'action' => 'unlike' },
|
135
|
+
{ 'id' => '10', 'action' => 'remove_content' },
|
136
|
+
]
|
137
|
+
|
138
|
+
expectations.each do |data|
|
139
|
+
expect(cleanup_stub.with( :query => hash_including({
|
140
|
+
:id => data['id'],
|
141
|
+
:action => data['action'],
|
142
|
+
}))).to have_been_requested.once
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
@@ -0,0 +1,687 @@
|
|
1
|
+
<!--?xml version="1.0" encoding="utf-8"?-->
|
2
|
+
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
6
|
+
<title>
|
7
|
+
Activity Log
|
8
|
+
</title>
|
9
|
+
<meta name="referrer" content="default" id="meta_referrer">
|
10
|
+
<noscript>
|
11
|
+
<meta http-equiv="X-Frame-Options" content="DENY">
|
12
|
+
</noscript>
|
13
|
+
<style type="text/css">
|
14
|
+
/*<![CDATA[*/.b .bq{ margin-top:0; padding-top:0; }.b .bq .bu{ background:none; border:none; }.b .bq .br .bt{ border-bottom:none; border-top-width:0; }.b .bx{ margin:0 2px 4px; }.b .bx{ margin:0 2px 4px; }.b .by.bz{ font-size:12px; font-weight:bold; padding:8px; text-transform:uppercase; }.b .cd .ce{ color:#000; padding:0; }.b .cd .ce:hover{ color:#fff; }.b .by .cd{ font-size:14px; padding-bottom:4px; }.b .by .cn{ color:gray; font-size:13px; line-height:16px; padding-bottom:4px; }.b .by .cg{ color:#a9a9a9; font-size:12px; margin-right:4px; padding-bottom:4px; }.b .by .cg .cj{ margin-right:4px; }.b .co div a h3{ font-size:16px; line-height:1em; padding:10px; }.b .co div{ margin:0; padding:0; }.b .cv div a{ color:gray; }.b .cv div a:hover{ color:#fff; }.b .cv div{ font-size:16px; font-weight:bold; line-height:1.3em; padding:10px 0; text-align:center; }.b .cl{ font-size:12px; }.b .bd{ margin:11px 6px 11px; }.b .bf{ font-size:large; text-align:center; }.b .bq .bx .cp{ border-top:1px solid #e5e5e5; }.b .bj{ padding:5px 5px; }#timelineBody,.ba .bp{ background-color:#dcdee3; }.ba .bp{ position:relative; z-index:0; }.ba.b .bp{ margin-top:0; padding-bottom:2px; padding-top:2px; }.ba .bt{ word-break:break-word; }.z>*,.z.z>*{ border-bottom:1px solid #e5e5e5; }.z>:last-child{ border-bottom:none; }.f{ background:#dcdee3; }.bb{ background:#fff; }.bc{ border-color:#ccced3 #c4c6ca #b4b6ba; border-style:solid; border-width:1px; }.b .cw{ padding:4px; }.b .be{ padding:6px; }.bo{ color:#9197a3; }.bg{ color:#4e5665; }.cf{ font-size:12px; line-height:16px; }.bi{ font-weight:normal; }.bh{ font-weight:bold; }.dd{ color:#000; }.ch{ color:gray; }.w{ font-size:small; }body,tr,input,textarea,.g{ font-size:medium; }.b .bk{ border-collapse:collapse; margin:0; width:100%; }.b td.bm{ border:0; padding:6px 0 6px 6px; vertical-align:middle; }.b .bk .ca{ vertical-align:top; }.b .bk .bn{ padding:6px 6px 6px 0; text-align:right; white-space:nowrap; }.b .bl{ padding:6px; }.b .k{ border:0; border-collapse:collapse; margin:0; padding:0; width:100%; }.b .k tbody,.b .cb>tr>td,.b .cb>tbody>tr>td,.b .k td.cb{ vertical-align:top; }.b .k td{ padding:0; }.b .k td.cw{ padding:4px; }.b .k td.be{ padding:6px; }.b .o{ width:100%; }.b a,.b a:visited{ color:#3b5998; text-decoration:none; }.b .cm,.b .cm:visited{ color:#6d84b4; }.b .x,.b .x:visited{ color:#fff; }.b a:focus,.b a:hover,.b .cm:focus,.b .cm:hover{ background-color:#3b5998; color:#fff; }.b .x:focus,.b .x:hover{ background-color:#fff; color:#3b5998; }.bv{ background-color:#fff; }.i{ background-color:#3b5998; }.j{ padding:2px 3px; }.bw{ padding:4px 3px; }.cc{ background:#eceff5; }.n{ border:0; display:inline-block; vertical-align:top; }i.n u{ position:absolute; width:0; height:0; overflow:hidden; }.n.ci,.ci{ left:1px; position:relative; top:1px; vertical-align:baseline; }.ci{ position:relative; top:.4px; vertical-align:baseline; }.ba .bt{ border-color:#b1b4bd; border-style:solid; border-width:1px 0 1px; display:block; position:relative; }.cq.cr{ margin:10px 0 15px 0; padding-bottom:0; padding-left:0; text-align:center; }.cq{ background:none; text-align:center; }.cq>.cu{ background:none; border:none; color:#848ba0; font-size:28px; font-weight:bold; line-height:36px; }.ct{ background-color:#d8dfea; border-top:solid 1px #3b5998; }.word_break{ display:inline-block; }body{ text-align:left; direction:ltr; }body,tr,input,textarea,button{ font-family:sans-serif; }body,p,figure,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dd,dt{ margin:0; padding:0; }h1,h2,h3,h4,h5,h6{ font-size:1em; font-weight:bold; }ul,ol{ list-style:none; }article,aside,figcaption,figure,footer,header,nav,section{ display:block; }.e #viewport{ margin:0 auto; max-width:600px; }#page{ position:relative; }.b .r{ background-color:#f5f7fa; border:solid 1px #253a70; height:18px; margin:2px 0; width:100%; }.b .t{ background-color:#5873b4; border:1px solid #2e458a; border-bottom-color:#263a76; color:#fff; height:27px; margin:2px 0 2px 2px; }.b .m{ margin:2px 4px 2px 0; }form{ margin:0; border:0; }.p{ border:solid 1px #999; border-top-color:#888; margin:0; }.b .p{ padding:3px 3px 4px 0; }.s{ -moz-appearance:none; background:none; display:inline-block; font-size:12px; font-weight:bold; height:28px; line-height:28px; margin:0; overflow:visible; padding:0 9px; text-align:center; vertical-align:top; white-space:nowrap; }.u,a.u,html .b a.u{ color:#fff; }.b .u{ background-color:#627aad; border:1px solid #4a5f90; }.b a.u:hover,.b .u:hover{ background-color:#465e91; }.u[disabled]{ color:#899bc1; }.b .u[disabled]:hover{ background-color:#627aad; }.b .s{ padding:0 8px; }.b a.s{ height:26px; line-height:26px; }.b .cx{ background:#eceff5; padding:0 0 12px; }.b .cx a,.b .cx a:visited{ color:#2b55ad; }.b .cx a:hover,.b .cx a:focus{ background:#2b55ad; color:#fff; }.b .dc{ padding:0 6px 6px; }.b .cy{ border-top:1px solid #dfe2e8; padding:3px; }.cz{ width:100%; }.cz td{ vertical-align:top; padding:0; }.cz .da{ width:100%; }.cz .db{ padding-left:5px; }.cz .q{ display:block; width:100%; }.v{ padding-bottom:1px; }.v a{ padding:2px 4px 2px; }.y{ color:#fff; background-color:#6d84b4; }/*]]>*/
|
15
|
+
</style>
|
16
|
+
</head>
|
17
|
+
<body tabindex="0" class="b c d e f">
|
18
|
+
<div class="g">
|
19
|
+
<div id="viewport">
|
20
|
+
<div class="h">
|
21
|
+
<div class="i j" id="header">
|
22
|
+
<form method="get" action="/search/">
|
23
|
+
<input name="search" value="Search" type="hidden">
|
24
|
+
<input name="search_source" value="top_nav" type="hidden">
|
25
|
+
<table class="k">
|
26
|
+
<tbody>
|
27
|
+
<tr>
|
28
|
+
<td class="l">
|
29
|
+
<a href="https://m.facebook.com/home.php?ref_component=mbasic_home_logo&ref_page=MTimelineAllActivityController">
|
30
|
+
<img src="img.png" class="m n" alt="Facebook logo" height="27" width="27">
|
31
|
+
</a>
|
32
|
+
</td>
|
33
|
+
<td class="o">
|
34
|
+
<input class="p q r" name="query" type="text">
|
35
|
+
</td>
|
36
|
+
<td class="l">
|
37
|
+
<input value="Search" class="s t u" type="submit">
|
38
|
+
</td>
|
39
|
+
</tr>
|
40
|
+
</tbody>
|
41
|
+
</table>
|
42
|
+
</form>
|
43
|
+
<span>
|
44
|
+
<div class="v i">
|
45
|
+
<span class="w">
|
46
|
+
<a class="x y" aria-label="Home" href="https://m.facebook.com/home.php?a_type=sr&ref_component=mbasic_home_header&ref_page=MTimelineAllActivityController" style="display:block;height:0;overflow:hidden;position:absolute;width:0;padding:0">
|
47
|
+
|
48
|
+
</a>
|
49
|
+
</span>
|
50
|
+
<span class="w">
|
51
|
+
<a class="x" href="https://m.facebook.com/home.php?ref_component=mbasic_home_header&ref_page=MTimelineAllActivityController" tabindex="-1" aria-hidden="1">
|
52
|
+
Home
|
53
|
+
</a>
|
54
|
+
</span>
|
55
|
+
<span class="w">
|
56
|
+
<a class="x" href="https://m.facebook.com/profile.php?v=info&ref_component=mbasic_home_header&ref_page=MTimelineAllActivityController">
|
57
|
+
Edit Profile
|
58
|
+
</a>
|
59
|
+
</span>
|
60
|
+
<span class="w">
|
61
|
+
<a class="x" href="https://m.facebook.com/findfriends/browser/?fb_ref=tn&ref_component=mbasic_home_header&ref_page=MTimelineAllActivityController">
|
62
|
+
Find Friends
|
63
|
+
</a>
|
64
|
+
</span>
|
65
|
+
</div>
|
66
|
+
<div class="v i">
|
67
|
+
<span class="w">
|
68
|
+
<a class="x" href="https://m.facebook.com/messages/?ref_component=mbasic_home_header&ref_page=MTimelineAllActivityController">
|
69
|
+
Messages
|
70
|
+
</a>
|
71
|
+
</span>
|
72
|
+
<span class="w">
|
73
|
+
<a class="x" href="https://m.facebook.com/notifications.php?ref_component=mbasic_home_header&ref_page=MTimelineAllActivityController">
|
74
|
+
Notifications
|
75
|
+
</a>
|
76
|
+
</span>
|
77
|
+
<span class="w">
|
78
|
+
<a class="x" href="https://m.facebook.com/buddylist.php?ref_component=mbasic_home_header&ref_page=MTimelineAllActivityController">
|
79
|
+
Chat
|
80
|
+
</a>
|
81
|
+
</span>
|
82
|
+
</div>
|
83
|
+
</span>
|
84
|
+
</div>
|
85
|
+
</div>
|
86
|
+
<div id="objects_container">
|
87
|
+
<div id="root" role="main" class="f">
|
88
|
+
<div>
|
89
|
+
<div class="f z">
|
90
|
+
<div class="ba">
|
91
|
+
<div class="bb z bc bd">
|
92
|
+
<div class="be bf">
|
93
|
+
<h3 class="bg bh">
|
94
|
+
Activity Log
|
95
|
+
</h3>
|
96
|
+
<span class="bg bi w">
|
97
|
+
<strong>
|
98
|
+
Only you
|
99
|
+
</strong>
|
100
|
+
can see your activity log
|
101
|
+
</span>
|
102
|
+
</div>
|
103
|
+
<div class="bj">
|
104
|
+
<table class="bk be">
|
105
|
+
<tbody>
|
106
|
+
<tr>
|
107
|
+
<td class="o bl bm">
|
108
|
+
<h3 class="bg">
|
109
|
+
<a href="https://m.facebook.com/allactivity/options?id=100008460938593">
|
110
|
+
Filter
|
111
|
+
</a>
|
112
|
+
</h3>
|
113
|
+
</td>
|
114
|
+
<td class="o bn bm">
|
115
|
+
<div class="bo">
|
116
|
+
</div>
|
117
|
+
</td>
|
118
|
+
</tr>
|
119
|
+
</tbody>
|
120
|
+
</table>
|
121
|
+
</div>
|
122
|
+
<div class="bj">
|
123
|
+
</div>
|
124
|
+
</div>
|
125
|
+
</div>
|
126
|
+
</div>
|
127
|
+
<div class="ba">
|
128
|
+
<div class="bp bq">
|
129
|
+
<div class="br">
|
130
|
+
<div class="bs bt">
|
131
|
+
<div class="bu bv bw" id="tlUnit_11_8_14">
|
132
|
+
<div class="bb bc bx">
|
133
|
+
<div class="z" id="tlRecentStories_11_8_14">
|
134
|
+
<div class="by bz">
|
135
|
+
Today
|
136
|
+
</div>
|
137
|
+
<div class="by" id="u_0_0">
|
138
|
+
<table class="bk be">
|
139
|
+
<tbody>
|
140
|
+
<tr>
|
141
|
+
<td class="l ca bm cb">
|
142
|
+
<img src="img.png" class="cc n" alt="Fcleaner Fcleaner" width="32">
|
143
|
+
</td>
|
144
|
+
<td class="o bl bm">
|
145
|
+
<div>
|
146
|
+
<h3 class="cd">
|
147
|
+
<a class="ce" href="https://m.facebook.com/events/11111111?view=permalink&id=22222222">
|
148
|
+
Fcleaner is going to TEST EVENT
|
149
|
+
</a>
|
150
|
+
</h3>
|
151
|
+
<h4 class="cf bg bi">
|
152
|
+
<span class="cg w ch">
|
153
|
+
<span id="u_0_1">
|
154
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
155
|
+
Public
|
156
|
+
</span>
|
157
|
+
</span>
|
158
|
+
</h4>
|
159
|
+
<div class="ck">
|
160
|
+
<span class="cl w ch">
|
161
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?action=hide&id=1">Hide from Timeline</a>
|
162
|
+
<span aria-hidden="true">
|
163
|
+
·
|
164
|
+
</span>
|
165
|
+
<a class="cm" href="https://m.facebook.com/report/id/?id=1483336358586880&redir=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17&next=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17">
|
166
|
+
Report/Mark as Spam
|
167
|
+
</a>
|
168
|
+
</span>
|
169
|
+
</div>
|
170
|
+
</div>
|
171
|
+
</td>
|
172
|
+
</tr>
|
173
|
+
</tbody>
|
174
|
+
</table>
|
175
|
+
</div>
|
176
|
+
<div class="by" id="u_0_3">
|
177
|
+
<table class="bk be">
|
178
|
+
<tbody>
|
179
|
+
<tr>
|
180
|
+
<td class="l ca bm cb">
|
181
|
+
<img src="img.png" class="cc n" alt="Fcleaner Fcleaner" width="32">
|
182
|
+
</td>
|
183
|
+
<td class="o bl bm">
|
184
|
+
<div>
|
185
|
+
<h3 class="cd">
|
186
|
+
<a class="ce" href="https://m.facebook.com/events/574725965989354?view=permalink&id=574726005989350">
|
187
|
+
Fcleaner created Test Event.
|
188
|
+
</a>
|
189
|
+
</h3>
|
190
|
+
<h4 class="cf bg bi">
|
191
|
+
<span class="cg w ch">
|
192
|
+
<span id="u_0_4">
|
193
|
+
<img src="img.png" class="ci cj n" height="11" width="11">
|
194
|
+
Guests and Friends
|
195
|
+
</span>
|
196
|
+
</span>
|
197
|
+
</h4>
|
198
|
+
<div class="ck">
|
199
|
+
<span class="cl w ch">
|
200
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=2&action=hide">Hide from Timeline</a>
|
201
|
+
</span>
|
202
|
+
</div>
|
203
|
+
</div>
|
204
|
+
</td>
|
205
|
+
</tr>
|
206
|
+
</tbody>
|
207
|
+
</table>
|
208
|
+
</div>
|
209
|
+
<div class="by" id="u_0_6">
|
210
|
+
<table class="bk be">
|
211
|
+
<tbody>
|
212
|
+
<tr>
|
213
|
+
<td class="l ca bm cb">
|
214
|
+
<img src="img.png" class="n" width="32">
|
215
|
+
</td>
|
216
|
+
<td class="o bl bm">
|
217
|
+
<div>
|
218
|
+
<h3 class="cd">
|
219
|
+
<a class="ce" href="https://m.facebook.com/photo.php?fbid=1383880681903950&id=100008460938593&set=a.1383880775237274.1073741826.100008460938593">
|
220
|
+
Fcleaner likes your photo.
|
221
|
+
</a>
|
222
|
+
</h3>
|
223
|
+
<h4 class="cf bg bi cn">
|
224
|
+
<span>
|
225
|
+
check this puppy
|
226
|
+
</span>
|
227
|
+
</h4>
|
228
|
+
<h4 class="cf bg bi">
|
229
|
+
<span class="cg w ch">
|
230
|
+
<span id="u_0_7">
|
231
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
232
|
+
Public
|
233
|
+
</span>
|
234
|
+
</span>
|
235
|
+
</h4>
|
236
|
+
<div class="ck">
|
237
|
+
<span class="cl w ch">
|
238
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=3&action=unlike">Unlike</a>
|
239
|
+
</span>
|
240
|
+
</div>
|
241
|
+
</div>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
</tbody>
|
245
|
+
</table>
|
246
|
+
</div>
|
247
|
+
<div class="by" id="u_0_9">
|
248
|
+
<table class="bk be">
|
249
|
+
<tbody>
|
250
|
+
<tr>
|
251
|
+
<td class="l ca bm cb">
|
252
|
+
<img src="img.png" class="n" width="32">
|
253
|
+
</td>
|
254
|
+
<td class="o bl bm">
|
255
|
+
<div>
|
256
|
+
<h3 class="cd">
|
257
|
+
<a class="ce" href="https://m.facebook.com/photo.php?fbid=1383880681903950&id=100008460938593&set=a.1383880775237274.1073741826.100008460938593">
|
258
|
+
Fcleaner tagged himself in a photo.
|
259
|
+
</a>
|
260
|
+
</h3>
|
261
|
+
<h4 class="cf bg bi">
|
262
|
+
<span class="cg w ch">
|
263
|
+
<span id="u_0_1y">
|
264
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
265
|
+
Public
|
266
|
+
</span>
|
267
|
+
</span>
|
268
|
+
</h4>
|
269
|
+
<div class="ck">
|
270
|
+
<span class="cl w ch">
|
271
|
+
<a class="cm" href="https://m.facebook.com/privacyx/selector/?redir=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17&ci=1383880681903950&ct=4&as=1&gfid=AQDcG_L9krLTOrjs">
|
272
|
+
Edit Privacy
|
273
|
+
</a>
|
274
|
+
<span aria-hidden="true">
|
275
|
+
·
|
276
|
+
</span>
|
277
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=4&action=hide">Hide from Timeline</a>
|
278
|
+
</span>
|
279
|
+
</div>
|
280
|
+
</div>
|
281
|
+
</td>
|
282
|
+
</tr>
|
283
|
+
</tbody>
|
284
|
+
</table>
|
285
|
+
</div>
|
286
|
+
<div class="by" id="u_0_a">
|
287
|
+
<table class="bk be">
|
288
|
+
<tbody>
|
289
|
+
<tr>
|
290
|
+
<td class="l ca bm cb">
|
291
|
+
<img src="img.png" class="n" width="32">
|
292
|
+
</td>
|
293
|
+
<td class="o bl bm">
|
294
|
+
<div>
|
295
|
+
<h3 class="cd">
|
296
|
+
<a class="ce" href="https://m.facebook.com/photo.php?fbid=1383880681903950&id=100008460938593&set=a.1383880775237274.1073741826.100008460938593">
|
297
|
+
Fcleaner added a new photo to the album Timeline Photos.
|
298
|
+
</a>
|
299
|
+
</h3>
|
300
|
+
<h4 class="cf bg bi cn">
|
301
|
+
<span>
|
302
|
+
check this puppy
|
303
|
+
</span>
|
304
|
+
</h4>
|
305
|
+
<h4 class="cf bg bi">
|
306
|
+
<span class="cg w ch">
|
307
|
+
<span id="u_0_b">
|
308
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
309
|
+
Public
|
310
|
+
</span>
|
311
|
+
</span>
|
312
|
+
</h4>
|
313
|
+
<div class="ck">
|
314
|
+
<span class="cl w ch">
|
315
|
+
<a class="cm" href="https://m.facebook.com/privacyx/selector/?redir=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17&ci=1383880681903950&ct=4&as=1&gfid=AQDcG_L9krLTOrjs">
|
316
|
+
Edit Privacy
|
317
|
+
</a>
|
318
|
+
<span aria-hidden="true">
|
319
|
+
·
|
320
|
+
</span>
|
321
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?profileID=100008460938593&storyFBID=1383880805237271&storyRowTime=1415443272&aggreSubstoryIndex=0&action=hide&visibilityChange=1&gfid=AQANmJqDV4sFXQFy">
|
322
|
+
Hide from Timeline
|
323
|
+
</a>
|
324
|
+
<span aria-hidden="true">
|
325
|
+
·
|
326
|
+
</span>
|
327
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=5&action=remove_content">Delete Photo</a>
|
328
|
+
</span>
|
329
|
+
</div>
|
330
|
+
</div>
|
331
|
+
</td>
|
332
|
+
</tr>
|
333
|
+
</tbody>
|
334
|
+
</table>
|
335
|
+
</div>
|
336
|
+
<div class="by" id="u_0_d">
|
337
|
+
<table class="bk be">
|
338
|
+
<tbody>
|
339
|
+
<tr>
|
340
|
+
<td class="l ca bm cb">
|
341
|
+
<img src="img.png" class="cc n" alt="Fcleaner Fcleaner" width="32">
|
342
|
+
</td>
|
343
|
+
<td class="o bl bm">
|
344
|
+
<div>
|
345
|
+
<h3 class="cd">
|
346
|
+
<a class="ce" href="https://m.facebook.com/story.php?story_fbid=1383880095237342&id=100008460938593">
|
347
|
+
Fcleaner shared a status update.
|
348
|
+
</a>
|
349
|
+
</h3>
|
350
|
+
<h4 class="cf bg bi cn">
|
351
|
+
<span>
|
352
|
+
test share
|
353
|
+
</span>
|
354
|
+
</h4>
|
355
|
+
<h4 class="cf bg bi">
|
356
|
+
<span class="cg w ch">
|
357
|
+
<span id="u_0_e">
|
358
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
359
|
+
Public
|
360
|
+
</span>
|
361
|
+
</span>
|
362
|
+
</h4>
|
363
|
+
<div class="ck">
|
364
|
+
<span class="cl w ch">
|
365
|
+
<a class="cm" href="https://m.facebook.com/privacyx/selector/?redir=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17&ci=1383880095237342&ct=4&as=1&gfid=AQBc9Ag1_aTJydwX">
|
366
|
+
Edit Privacy
|
367
|
+
</a>
|
368
|
+
<span aria-hidden="true">
|
369
|
+
·
|
370
|
+
</span>
|
371
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?profileID=100008460938593&storyFBID=1383880095237342&storyRowTime=1415443181&action=hide&visibilityChange=1&gfid=AQBTfP_mIoXS3gNt">
|
372
|
+
Hide from Timeline
|
373
|
+
</a>
|
374
|
+
<span aria-hidden="true">
|
375
|
+
·
|
376
|
+
</span>
|
377
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=6&action=remove_content">Delete</a>
|
378
|
+
</span>
|
379
|
+
</div>
|
380
|
+
</div>
|
381
|
+
</td>
|
382
|
+
</tr>
|
383
|
+
</tbody>
|
384
|
+
</table>
|
385
|
+
</div>
|
386
|
+
<div class="by" id="u_0_g">
|
387
|
+
<table class="bk be">
|
388
|
+
<tbody>
|
389
|
+
<tr>
|
390
|
+
<td class="l ca bm cb">
|
391
|
+
<img src="img.png" class="cc n" alt="Fcleaner Fcleaner" width="32">
|
392
|
+
</td>
|
393
|
+
<td class="o bl bm">
|
394
|
+
<div>
|
395
|
+
<h3 class="cd">
|
396
|
+
<a class="ce" href="https://m.facebook.com/story.php?story_fbid=1383879838570701&id=100008460938593">
|
397
|
+
Fcleaner likes your status.
|
398
|
+
</a>
|
399
|
+
</h3>
|
400
|
+
<h4 class="cf bg bi cn">
|
401
|
+
<span>
|
402
|
+
Test post
|
403
|
+
</span>
|
404
|
+
</h4>
|
405
|
+
<h4 class="cf bg bi">
|
406
|
+
<span class="cg w ch">
|
407
|
+
<span id="u_0_h">
|
408
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
409
|
+
Public
|
410
|
+
</span>
|
411
|
+
</span>
|
412
|
+
</h4>
|
413
|
+
<div class="ck">
|
414
|
+
<span class="cl w ch">
|
415
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=7&action=unlike">Unlike</a>
|
416
|
+
</span>
|
417
|
+
</div>
|
418
|
+
</div>
|
419
|
+
</td>
|
420
|
+
</tr>
|
421
|
+
</tbody>
|
422
|
+
</table>
|
423
|
+
</div>
|
424
|
+
<div class="by" id="u_0_j">
|
425
|
+
<table class="bk be">
|
426
|
+
<tbody>
|
427
|
+
<tr>
|
428
|
+
<td class="l ca bm cb">
|
429
|
+
<img src="img.png" class="cc n" alt="Fcleaner Fcleaner" width="32">
|
430
|
+
</td>
|
431
|
+
<td class="o bl bm">
|
432
|
+
<div>
|
433
|
+
<h3 class="cd">
|
434
|
+
<a class="ce" href="https://m.facebook.com/story.php?story_fbid=1383879838570701&id=100008460938593">
|
435
|
+
Fcleaner commented on his own status.
|
436
|
+
</a>
|
437
|
+
</h3>
|
438
|
+
<h4 class="cf bg bi cn">
|
439
|
+
<span>
|
440
|
+
test commend
|
441
|
+
</span>
|
442
|
+
</h4>
|
443
|
+
<h4 class="cf bg bi">
|
444
|
+
<span class="cg w ch">
|
445
|
+
<span id="u_0_k">
|
446
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
447
|
+
Public
|
448
|
+
</span>
|
449
|
+
</span>
|
450
|
+
</h4>
|
451
|
+
<div class="ck">
|
452
|
+
<span class="cl w ch">
|
453
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=8&action=remove_comment">Delete</a>
|
454
|
+
</span>
|
455
|
+
</div>
|
456
|
+
</div>
|
457
|
+
</td>
|
458
|
+
</tr>
|
459
|
+
</tbody>
|
460
|
+
</table>
|
461
|
+
</div>
|
462
|
+
<div class="by" id="u_0_m">
|
463
|
+
<table class="bk be">
|
464
|
+
<tbody>
|
465
|
+
<tr>
|
466
|
+
<td class="l ca bm cb">
|
467
|
+
<img src="img.png" class="cc n" alt="Helena Bomberova" width="32">
|
468
|
+
</td>
|
469
|
+
<td class="o bl bm">
|
470
|
+
<div>
|
471
|
+
<h3 class="cd">
|
472
|
+
<a class="ce" href="https://m.facebook.com/test_person">
|
473
|
+
Fcleaner sent Test Person a friend request.
|
474
|
+
</a>
|
475
|
+
</h3>
|
476
|
+
<h4 class="cf bg bi">
|
477
|
+
<span class="cg w ch">
|
478
|
+
Hidden from Timeline
|
479
|
+
</span>
|
480
|
+
</h4>
|
481
|
+
<div class="ck">
|
482
|
+
<span class="cl w ch">
|
483
|
+
<a class="cm" href="https://m.facebook.com/report/id/?id=100006810962648&redir=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17&next=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17">
|
484
|
+
Report/Mark as Spam
|
485
|
+
</a>
|
486
|
+
<span aria-hidden="true">
|
487
|
+
·
|
488
|
+
</span>
|
489
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?profileID=100008460938593&storyFBID=1378882302403788&storyRowTime=1414935178&aggreSubstoryIndex=8&action=cancel_friend_request&gfid=AQAkhptAzJ3pqA87">
|
490
|
+
Cancel Friend Request
|
491
|
+
</a>
|
492
|
+
</span>
|
493
|
+
</div>
|
494
|
+
</div>
|
495
|
+
</td>
|
496
|
+
</tr>
|
497
|
+
</tbody>
|
498
|
+
</table>
|
499
|
+
</div>
|
500
|
+
<div class="by" id="u_0_o">
|
501
|
+
<table class="bk be">
|
502
|
+
<tbody>
|
503
|
+
<tr>
|
504
|
+
<td class="l ca bm cb">
|
505
|
+
<img src="img.png" class="cc n" alt="Marvel’s The Avengers India" width="32">
|
506
|
+
</td>
|
507
|
+
<td class="o bl bm">
|
508
|
+
<div>
|
509
|
+
<h3 class="cd">
|
510
|
+
<a class="ce" href="https://m.facebook.com/TestPage?ref=stream">
|
511
|
+
Fcleaner likes Test Page.
|
512
|
+
</a>
|
513
|
+
</h3>
|
514
|
+
<h4 class="cf bg bi">
|
515
|
+
</h4>
|
516
|
+
<div class="ck">
|
517
|
+
<span class="cl w ch">
|
518
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?profileID=100008460938593&storyFBID=1383879885237363&storyRowTime=1415443147&aggreSubstoryIndex=0&action=hide&visibilityChange=1&gfid=AQCr4dX02o1sFKx3">
|
519
|
+
Hide from Timeline
|
520
|
+
</a>
|
521
|
+
<span aria-hidden="true">
|
522
|
+
·
|
523
|
+
</span>
|
524
|
+
<a class="cm" href="https://m.facebook.com/report/id/?id=238025949580163&redir=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17&next=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17">
|
525
|
+
Report/Mark as Spam
|
526
|
+
</a>
|
527
|
+
<span aria-hidden="true">
|
528
|
+
·
|
529
|
+
</span>
|
530
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=9&action=unlike">Unlike</a>
|
531
|
+
</span>
|
532
|
+
</div>
|
533
|
+
</div>
|
534
|
+
</td>
|
535
|
+
</tr>
|
536
|
+
</tbody>
|
537
|
+
</table>
|
538
|
+
</div>
|
539
|
+
<div class="by" id="u_0_q">
|
540
|
+
<table class="bk be">
|
541
|
+
<tbody>
|
542
|
+
<tr>
|
543
|
+
<td class="l ca bm cb">
|
544
|
+
<img src="img.png" class="cc n" alt="Fcleaner Fcleaner" width="32">
|
545
|
+
</td>
|
546
|
+
<td class="o bl bm">
|
547
|
+
<div>
|
548
|
+
<h3 class="cd">
|
549
|
+
<a class="ce" href="https://m.facebook.com/story.php?story_fbid=1383879838570701&id=100008460938593">
|
550
|
+
Fcleaner updated his status.
|
551
|
+
</a>
|
552
|
+
</h3>
|
553
|
+
<h4 class="cf bg bi cn">
|
554
|
+
<span>
|
555
|
+
Test post
|
556
|
+
</span>
|
557
|
+
</h4>
|
558
|
+
<h4 class="cf bg bi">
|
559
|
+
<span class="cg w ch">
|
560
|
+
<span id="u_0_r">
|
561
|
+
<img src="img.png" class="ci cj n" height="11" width="10">
|
562
|
+
Public
|
563
|
+
</span>
|
564
|
+
</span>
|
565
|
+
</h4>
|
566
|
+
<div class="ck">
|
567
|
+
<span class="cl w ch">
|
568
|
+
<a class="cm" href="https://m.facebook.com/privacyx/selector/?redir=https%3A%2F%2Fm.facebook.com%2F100008460938593%2Fallactivity%3Frefid%3D17&ci=1383879838570701&ct=4&as=1&gfid=AQCJBkammyB9qpKY">
|
569
|
+
Edit Privacy
|
570
|
+
</a>
|
571
|
+
<span aria-hidden="true">
|
572
|
+
·
|
573
|
+
</span>
|
574
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?profileID=100008460938593&storyFBID=1383879838570701&storyRowTime=1415443140&action=hide&visibilityChange=1&gfid=AQBQSYU9_TOVKG83">
|
575
|
+
Hide from Timeline
|
576
|
+
</a>
|
577
|
+
<span aria-hidden="true">
|
578
|
+
·
|
579
|
+
</span>
|
580
|
+
<a class="cm" href="https://m.facebook.com/allactivity/edit?id=10&action=remove_content">Delete</a>
|
581
|
+
</span>
|
582
|
+
</div>
|
583
|
+
</div>
|
584
|
+
</td>
|
585
|
+
</tr>
|
586
|
+
</tbody>
|
587
|
+
</table>
|
588
|
+
</div>
|
589
|
+
</div>
|
590
|
+
</div>
|
591
|
+
</div>
|
592
|
+
<div class="bu bv bw" id="tlUnit_11_2_14">
|
593
|
+
<div class="bb bc bx">
|
594
|
+
<div class="co">
|
595
|
+
<div class="j" id="month_2014_11_more_1">
|
596
|
+
<a href="https://m.facebook.com/100008460938593/allactivity?timeend=1417420799&timestart=1414825200&sectionLoadingID=m_timeline_loading_div_1417420799_1414825200_25_1&lastStoryTimestamp=1414966783&filter_onlyme&oldest=1414934383%3A1&offset=0&pagenum=1&sectionID=month_2014_11_more_1">
|
597
|
+
</a>
|
598
|
+
<a class="bt cp" href="https://m.facebook.com/100008460938593/allactivity?timeend=1417420799&timestart=1414825200&sectionLoadingID=m_timeline_loading_div_1417420799_1414825200_25_1&lastStoryTimestamp=1414966783&filter_onlyme&oldest=1414934383%3A1&offset=0&pagenum=1&sectionID=month_2014_11_more_1" id="m_timeline_loading_div_1417420799_1414825200_25_1">
|
599
|
+
<div>
|
600
|
+
<div class="cq cr cs">
|
601
|
+
<h3 class="ct cu j">
|
602
|
+
Load more from November
|
603
|
+
</h3>
|
604
|
+
</div>
|
605
|
+
</div>
|
606
|
+
</a>
|
607
|
+
</div>
|
608
|
+
</div>
|
609
|
+
</div>
|
610
|
+
</div>
|
611
|
+
</div>
|
612
|
+
</div>
|
613
|
+
<div class="cv">
|
614
|
+
<div class="j" id="month_2014_11">
|
615
|
+
<a href="https://m.facebook.com/100008460938593/allactivity?timeend=1417420799&timestart=1414825200&sectionLoadingID=m_timeline_loading_div_1417420799_1414825200_25_&filter_onlyme&sectionID=month_2014_11">
|
616
|
+
This Month
|
617
|
+
</a>
|
618
|
+
</div>
|
619
|
+
</div>
|
620
|
+
</div>
|
621
|
+
</div>
|
622
|
+
</div>
|
623
|
+
</div>
|
624
|
+
</div>
|
625
|
+
<div class="cf bb cw cx">
|
626
|
+
<div id="footer">
|
627
|
+
<div>
|
628
|
+
<a href="#header">
|
629
|
+
[ ↑ ] Top
|
630
|
+
</a>
|
631
|
+
</div>
|
632
|
+
<div class="cy" id="search_div">
|
633
|
+
<form method="get" action="/search/">
|
634
|
+
<input name="search" type="hidden">
|
635
|
+
<input name="search_source" value="footer" type="hidden">
|
636
|
+
<table class="cz" cellpadding="0" cellspacing="3">
|
637
|
+
<tbody>
|
638
|
+
<tr>
|
639
|
+
<td class="da">
|
640
|
+
<input class="p q" name="query" size="15" type="text">
|
641
|
+
</td>
|
642
|
+
<td class="db">
|
643
|
+
<input value="Search" class="s u" type="submit">
|
644
|
+
</td>
|
645
|
+
</tr>
|
646
|
+
</tbody>
|
647
|
+
</table>
|
648
|
+
</form>
|
649
|
+
</div>
|
650
|
+
<div class="dc">
|
651
|
+
<span class="w dd">
|
652
|
+
<a href="https://m.facebook.com/help/?ref_component=mbasic_footer&ref_page=MTimelineAllActivityController">
|
653
|
+
Help
|
654
|
+
</a>
|
655
|
+
<span aria-hidden="true">
|
656
|
+
·
|
657
|
+
</span>
|
658
|
+
<a href="https://m.facebook.com/settings/?ref_component=mbasic_footer&ref_page=MTimelineAllActivityController">
|
659
|
+
Settings & Privacy
|
660
|
+
</a>
|
661
|
+
<span aria-hidden="true">
|
662
|
+
·
|
663
|
+
</span>
|
664
|
+
<a href="https://m.facebook.com/policies/?ref_component=mbasic_footer&ref_page=MTimelineAllActivityController">
|
665
|
+
Terms & Policies
|
666
|
+
</a>
|
667
|
+
<span aria-hidden="true">
|
668
|
+
·
|
669
|
+
</span>
|
670
|
+
<a href="https://m.facebook.com/bugnub/?source=Footer&ref_component=mbasic_footer&ref_page=MTimelineAllActivityController">
|
671
|
+
Report a Problem
|
672
|
+
</a>
|
673
|
+
<span aria-hidden="true">
|
674
|
+
·
|
675
|
+
</span>
|
676
|
+
<a href="https://m.facebook.com/logout.php?h=AffInyiSSO8ltGvy&t=1415443706&ref_component=mbasic_footer&ref_page=MTimelineAllActivityController">
|
677
|
+
Logout
|
678
|
+
</a>
|
679
|
+
(Fcleaner Fcleaner)
|
680
|
+
</span>
|
681
|
+
</div>
|
682
|
+
</div>
|
683
|
+
</div>
|
684
|
+
</div>
|
685
|
+
</div>
|
686
|
+
</body>
|
687
|
+
</html>
|