Difference between revisions of "Blogger"

From Archiveteam
Jump to navigation Jump to search
(Added Wget parameters for downloading a blog.)
Line 11: Line 11:


{{expand}}
{{expand}}
== Downloading a single blog with Wget ==
These Wget parameters can download a BlogSpot blog, including comments and any on-site dependencies.  It should also reject redundant pages such as the /search/ directory and any multiple occurrences of the same page but with different query strings.  It has only be tested on blogs using a Blogger subdomain (e.g. http://foobar.blogspot.com), not custom domains (e.g. http://foobar.com).  Both instances of [URL] should be replaced with the same URL.  A simple Perl wrapper is available [http://pastebin.com/2QUuH26L here].
<tt>wget --recursive --level=2 --no-clobber --no-parent --page-requisites --continue --convert-links --user-agent="" -e robots=off --reject "*\\?*,*@*" --exclude-directories="search" --referer="[URL]" --wait 1 [URL]</tt>


== External links ==
== External links ==

Revision as of 07:51, 23 April 2011

Blogger
Blogger- Crea tu blog gratuito 1303511108785.png
URL http://www.blogger.com/
Status Online!
Archiving status Not saved yet
Archiving type Unknown
IRC channel #archiveteam-bs (on hackint)

Blogger is a blog hosting.

Template:Expand

Downloading a single blog with Wget

These Wget parameters can download a BlogSpot blog, including comments and any on-site dependencies. It should also reject redundant pages such as the /search/ directory and any multiple occurrences of the same page but with different query strings. It has only be tested on blogs using a Blogger subdomain (e.g. http://foobar.blogspot.com), not custom domains (e.g. http://foobar.com). Both instances of [URL] should be replaced with the same URL. A simple Perl wrapper is available here.

wget --recursive --level=2 --no-clobber --no-parent --page-requisites --continue --convert-links --user-agent="" -e robots=off --reject "*\\?*,*@*" --exclude-directories="search" --referer="[URL]" --wait 1 [URL]

External links