diff options
author | Andrey Slusar <anray@FreeBSD.org> | 2006-06-24 23:31:12 +0000 |
---|---|---|
committer | Andrey Slusar <anray@FreeBSD.org> | 2006-06-24 23:31:12 +0000 |
commit | 5d69b5455895771cf345ad6d9314eec812810fa9 (patch) | |
tree | 52ebba74b9bc89eb550f8965497dbc3a79d1e08c /www/xpi-sessionmanager | |
parent | 6418ded8220861aca20e16ddfd746847c6ed9ac5 (diff) |
Building upon Crash Recovery, this extension allows you to save the
current state of Firefox (history, text data, cookies) and return
to that state at any later moment. Besides the manually saved states,
Session Manager automatically stores the current state in case of a
crash.
All sessions are stored in the "sessions" folder inside your profile
directory and can be moved around as any other file. To get to that
folder, simply select "Open Session Folder" in Session Manager's menu
(might not work on all OSes). Finally, Session Manager also allows to
reopen the 10 last closed windows and tabs.
It is not recommended to use Session Manager at the same time as Crash
Recovery (which is completely integrated), SessionSaver or Tab Mix Plus
(which provide similar functionality on their own). In comparison,
Session Manager currently stores more session data than Tab Mix Plus
while not getting as complex as SessionSaver.
WWW: http://sessionmanager.mozdev.org/
Notes
Notes:
svn path=/head/; revision=166250
Diffstat (limited to 'www/xpi-sessionmanager')
-rw-r--r-- | www/xpi-sessionmanager/Makefile | 28 | ||||
-rw-r--r-- | www/xpi-sessionmanager/distinfo | 3 | ||||
-rw-r--r-- | www/xpi-sessionmanager/pkg-descr | 19 |
3 files changed, 50 insertions, 0 deletions
diff --git a/www/xpi-sessionmanager/Makefile b/www/xpi-sessionmanager/Makefile new file mode 100644 index 000000000000..916f6c7ac162 --- /dev/null +++ b/www/xpi-sessionmanager/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: xpi-sessionmanager +# Date created: Sat Jun 24 21:24:19 UTC 2006 +# Whom: Andrey Slusar <anray@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= sessionmanager +PORTVERSION= 0.4.1.1 +DISTVERSIONSUFFIX= -fx+fl+mz+zm +CATEGORIES= www + +MAINTAINER= anray@FreeBSD.org +COMMENT= Saves and restores the state of all windows + +XPI_DISTNAME= session_manager +XPI_ID= {1280606b-2510-4fe0-97ef-9b5a22eafe30} +XPI_FILES= chrome/icons/default/sessionmanagerPrompt.ico \ + chrome/sessionmanager.jar \ + components/crashrecovery.js \ + components/crashrecovery.xpt \ + defaults/preferences/sessionmanager.js \ + chrome.manifest install.js install.rdf license.txt +XPI_DIRS= chrome/icons/default chrome/icons chrome \ + components defaults/preferences defaults + +.include "${.CURDIR}/../xpi-adblock/Makefile.xpi" +.include <bsd.port.mk> diff --git a/www/xpi-sessionmanager/distinfo b/www/xpi-sessionmanager/distinfo new file mode 100644 index 000000000000..b0fd4f659b1b --- /dev/null +++ b/www/xpi-sessionmanager/distinfo @@ -0,0 +1,3 @@ +MD5 (xpi/session_manager-0.4.1.1-fx+fl+mz+zm.xpi) = b783c6d0b918a8429d616e1cf53357ed +SHA256 (xpi/session_manager-0.4.1.1-fx+fl+mz+zm.xpi) = 2f921506f6c477f5d38aee3e702ca6eb329d9a543d09c93aa66557c5730bfde1 +SIZE (xpi/session_manager-0.4.1.1-fx+fl+mz+zm.xpi) = 57829 diff --git a/www/xpi-sessionmanager/pkg-descr b/www/xpi-sessionmanager/pkg-descr new file mode 100644 index 000000000000..0663c63e9cf0 --- /dev/null +++ b/www/xpi-sessionmanager/pkg-descr @@ -0,0 +1,19 @@ +Building upon Crash Recovery, this extension allows you to save the +current state of Firefox (history, text data, cookies) and return +to that state at any later moment. Besides the manually saved states, +Session Manager automatically stores the current state in case of a +crash. + +All sessions are stored in the "sessions" folder inside your profile +directory and can be moved around as any other file. To get to that +folder, simply select "Open Session Folder" in Session Manager's menu +(might not work on all OSes). Finally, Session Manager also allows to +reopen the 10 last closed windows and tabs. + +It is not recommended to use Session Manager at the same time as Crash +Recovery (which is completely integrated), SessionSaver or Tab Mix Plus +(which provide similar functionality on their own). In comparison, +Session Manager currently stores more session data than Tab Mix Plus +while not getting as complex as SessionSaver. + +WWW: http://sessionmanager.mozdev.org/ |