Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webactivity.py
diff options
context:
space:
mode:
authorManuel Quiñones <manuq@laptop.org>2011-11-30 15:40:14 (GMT)
committer Manuel Quiñones <manuq@laptop.org>2011-11-30 15:40:14 (GMT)
commit0e06a52f81127204a141fbf941017a199283eb9d (patch)
tree1758f47d4d6798f2caaa6e22d651a7e50c48a713 /webactivity.py
parent0512c29740db61ad73e533480839e3d26a033bbe (diff)
Commenting out code so the activity can stop
Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
Diffstat (limited to 'webactivity.py')
-rw-r--r--webactivity.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/webactivity.py b/webactivity.py
index 2efa70e..27f181d 100644
--- a/webactivity.py
+++ b/webactivity.py
@@ -429,12 +429,16 @@ class WebActivity(activity.Activity):
else:
self.metadata['title'] = browser.props.title
- self.model.data['history'] = self._tabbed_view.get_session()
+ # FIXME
+ # self.model.data['history'] = self._tabbed_view.get_session()
+ self.model.data['history'] = []
current_tab = self._tabbed_view.get_current_page()
self.model.data['current_tab'] = current_tab
self.model.data['currents'] = []
for n in range(0, self._tabbed_view.get_n_pages()):
+ # FIXME
+ continue
n_browser = self._tabbed_view.get_nth_page(n)
if n_browser != None:
nsiuri = n_browser.progress.location
@@ -578,7 +582,8 @@ class WebActivity(activity.Activity):
def can_close(self):
if self._force_close:
return True
- elif downloadmanager.can_quit():
+ # FIXME
+ elif True: # downloadmanager.can_quit():
return True
else:
alert = Alert()