Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/globalhistory.py
diff options
context:
space:
mode:
authorLucian Branescu Mihaila <lucian.branescu@gmail.com>2010-07-16 21:45:43 (GMT)
committer Lucian Branescu Mihaila <lucian.branescu@gmail.com>2010-07-16 21:45:43 (GMT)
commit26f1b33c57dba184b2f2b6cb2db71ccd5e58647b (patch)
treef9bd2ba85e466cccfc9df277281dd733d6363eed /globalhistory.py
parent020273db15be775c14301b51cd8e616203061d9b (diff)
Remove files leftover from Browse-hulahop.
Diffstat (limited to 'globalhistory.py')
-rw-r--r--globalhistory.py76
1 files changed, 0 insertions, 76 deletions
diff --git a/globalhistory.py b/globalhistory.py
deleted file mode 100644
index 6fe5953..0000000
--- a/globalhistory.py
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright (C) 2008, Red Hat, Inc.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-from datetime import datetime
-
-import places
-
-
-class GlobalHistory:
- #_com_interfaces_ = interfaces.nsIGlobalHistory, \
- # interfaces.nsIGlobalHistory2, \
- # interfaces.nsIGlobalHistory3
-
- cid = '{2a53cf28-c48e-4a01-ba18-3d3fef3e2985}'
- description = 'Sugar Global History'
-
- def __init__(self):
- self._store = places.get_store()
-
- def addPage(self, url):
- self.addURI(url, False, True, None)
-
- def isVisited(self, uri):
- place = self._store.lookup_place(uri.spec)
- return place != None
-
- def addURI(self, uri, redirect, toplevel, referrer):
- place = self._store.lookup_place(uri.spec)
- if place:
- place.visits += 1
- place.last_visit = datetime.now()
- self._store.update_place(place)
- else:
- place = places.Place(uri.spec)
- self._store.add_place(place)
-
- def setPageTitle(self, uri, title):
- place = self._store.lookup_place(uri.spec)
- if place:
- place.title = title
- self._store.update_place(place)
-
- def addDocumentRedirect(self, old_channel, new_channel, flags, toplevel):
- pass
-
- def getURIGeckoFlags(self, uri):
- place = self._store.lookup_place(uri.spec)
- if place:
- return place.gecko_flags
- else:
- return 0
-
- def setURIGeckoFlags(self, uri, flags):
- place = self._store.lookup_place(uri.spec)
- if place:
- place.gecko_flags = flags
- self._store.update_place(place)
-
-
-#components.registrar.registerFactory(GlobalHistory.cid,
-# GlobalHistory.description,
-# '@mozilla.org/browser/global-history;2',
-# Factory(GlobalHistory))