![]() |
![]()
| ![]() |
![]()
NAMEFile::Mork - a module to read Mozilla URL history files SYNOPSISmy $mork = File::Mork->new($filename, verbose => 1) || die $File::Mork::ERROR."\n"; foreach my $entry ($mork->entries) { while (my($key,$val) = each %$entry) { printf ("%14s = %s\n", $key, $val); } } DESCRIPTIONThis is a module that can read the Mozilla URL history file -- normally $HOME/.mozilla/default/*.slt/history.dat -- and extract the id, url, name, hostname, first visted dat, last visited date and visit count. To find your history file it might be worth using Mozilla::Backup which has some platform-independent code for finding the profiles of various Mozilla-isms (including Firefox, Camino, K-Meleon, etc.). METHODSnew <file> [opts]Takes a filename and parses that file. Returns "undef" on error, setting $File::Mork::Error. Takes an optional hash of options
parse <file>Internal method to parse the file. Obviously. entriesReturn a list of "File::Mork::Entry" objects sorted by LastVisitDate. error <message>Internal method to set the internal error message debug <message> <priority>Internal method to print out a debug message if it's a higher priority than the the current verbosity level. THE UGLY TRUTH LAID BAREExtracted from mork.pl In Netscape Navigator 1.0 through 4.0, the history.db file was just a Berkeley DBM file. You could trivially bind to it from Perl, and pull out the URLs and last-access time. In Mozilla, this has been replaced with a "Mork" database for which no tools exist. Let me make it clear that McCusker is a complete barking lunatic. This is just about the stupidest file format I've ever seen. http://www.mozilla.org/mailnews/arch/mork/primer.txt http://jwz.livejournal.com/312657.html http://www.jwz.org/doc/mailsum.html http://bugzilla.mozilla.org/show_bug.cgi?id=241438 In brief, let's count its sins:
Pure comedy. AUTHORModule-ised by Simon Wistow <simon@thegestalt.org> based on http://www.jwz.org/hacks/mork.pl Created: 3-Mar-2004 by Jamie Zawinski, Anonymous, and Jacob Post. COPYRIGHTCopyright © 2004 Jamie Zawinski <jwz@jwz.org> LICENSEPermission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. BUGSMight be a bit memory heavy? Could do with an iterator interface. Can't write Mork dbs. SEE ALSOhttp://www.livejournal.com/users/jwz/312657.html http://www.erys.org/resume/netscape/mork/jwz.html NAMEFile::Mork::Entry - an single entry in a mork DB METHODSAll methods except "new" take an optional argument to set them. new <%opts>blesses %opts into the class File::Mork::Entry IDThe internal id of the entry URLThe url visited NAMEThe name of the url visited HostnameThe hostname of the url visited FirstVisitDateThe first time this url was visited as a "ctime" LastVisitDateThe last time this url was visited as a "ctime" HiddenWhether this URL is hidden from the history list or not VisitCountThe number of times this url has been visited ByteOrderThe byte order - this is associated with ID number 1. POD ERRORSHey! The above document had some coding errors, which are explained below:
|