summer session
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 865
Distrust 0.7.1
Distrust is a Firefox extension which hides surfing trails that the browser leaves behind. more>>
Distrust is a Firefox extension which hides surfing trails that the browser leaves behind.
AKA Private Browsing.
Once turned on this extension monitors FireFox for its activities.
Once turned off Distrust will remove history items cache and cookies that were used during the distrust session.
Main features:
- Disable the cache. (Both regular and SSL)
- Set the cookies to live until the end of the session.
- Clean up the history from item that were added after it was activated.
- Clean up the downloaded items, from the download manager, that were added after it was activated.
<<lessAKA Private Browsing.
Once turned on this extension monitors FireFox for its activities.
Once turned off Distrust will remove history items cache and cookies that were used during the distrust session.
Main features:
- Disable the cache. (Both regular and SSL)
- Set the cookies to live until the end of the session.
- Clean up the history from item that were added after it was activated.
- Clean up the downloaded items, from the download manager, that were added after it was activated.
Download (0.019MB)
Added: 2007-07-19 License: MPL (Mozilla Public License) Price:
845 downloads
Skeleton 0.8
Skeleton is a secure framework for a PHP website. more>>
Skeleton project is a secure framework for a PHP website. If you want to create a new website, Skeleton is a good start.
Download the package, unpack it and you can start adding content in an easy and secure way.
Enhancements:
- Improved session-timeout handling.
- Page header and footer files renamed.
- Page HTML-header file added.
<<lessDownload the package, unpack it and you can start adding content in an easy and secure way.
Enhancements:
- Improved session-timeout handling.
- Page header and footer files renamed.
- Page HTML-header file added.
Download (0.049MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
2134 downloads
AmarokFS-session 0.0.2
marokFS-session is an Amarok script that lets you start your Amarok from KDM with AmarokFS in fullscreenmode. more>>
AmarokFS-session is an Amarok script that lets you start your "Amarok" from KDM with "AmarokFS" in fullscreenmode, then you have a dedicated session only for "Amarok".
<<less Download (MB)
Added: 2007-03-09 License: GPL (GNU General Public License) Price:
959 downloads
VNC Session Manager 0.8
VNC Session Manager provides a disconnected session manager for VNC. more>>
VNC Session Manager provides a disconnected session manager for VNC.
VNC Session Manager adds the necessary glue code between VNCs two execution modes, enabling XDM-based login to disconnected sessions. This gives a Terminal Services-like login for Unix-based VNC servers.
<<lessVNC Session Manager adds the necessary glue code between VNCs two execution modes, enabling XDM-based login to disconnected sessions. This gives a Terminal Services-like login for Unix-based VNC servers.
Download (0.012MB)
Added: 2007-03-06 License: GPL (GNU General Public License) Price:
968 downloads
gnome-session 2.18.3 / 2.19.5
gnome-session package includes the GNOME session manager ands everal other session management related utilities. more>>
gnome-session package is free software and is part of the GNOME project.
Contained here are
- the GNOME session manager
- the GNOME session manager configuration program
- and several other session management related utilities.
<<lessContained here are
- the GNOME session manager
- the GNOME session manager configuration program
- and several other session management related utilities.
Download (0.89MB)
Added: 2007-07-10 License: GPL (GNU General Public License) Price:
838 downloads
PHP::Session 0.26
PHP::Session is a Perl module to read / write PHP session files. more>>
PHP::Session is a Perl module to read / write PHP session files.
SYNOPSIS
use PHP::Session;
my $session = PHP::Session->new($id);
# session id
my $id = $session->id;
# get/set session data
my $foo = $session->get(foo);
$session->set(bar => $bar);
# remove session data
$session->unregister(foo);
# remove all session data
$session->unset;
# check if data is registered
$session->is_registered(bar);
# save session data
$session->save;
# destroy session
$session->destroy;
# create session file, if not existent
$session = PHP::Session->new($new_sid, { create => 1 });
PHP::Session provides a way to read / write PHP4 session files, with which you can make your Perl application session shared with PHP4.
If you like Apache::Session interface for session management, there is a glue for Apache::Session of this module, Apache::Session::PHP.
<<lessSYNOPSIS
use PHP::Session;
my $session = PHP::Session->new($id);
# session id
my $id = $session->id;
# get/set session data
my $foo = $session->get(foo);
$session->set(bar => $bar);
# remove session data
$session->unregister(foo);
# remove all session data
$session->unset;
# check if data is registered
$session->is_registered(bar);
# save session data
$session->save;
# destroy session
$session->destroy;
# create session file, if not existent
$session = PHP::Session->new($new_sid, { create => 1 });
PHP::Session provides a way to read / write PHP4 session files, with which you can make your Perl application session shared with PHP4.
If you like Apache::Session interface for session management, there is a glue for Apache::Session of this module, Apache::Session::PHP.
Download (0.015MB)
Added: 2007-04-03 License: Perl Artistic License Price:
934 downloads
Lemonldap::Portal::Session 0.01
Lemonldap::Portal::Session is a Perl extension for Lemonldap websso. more>>
Lemonldap::Portal::Session is a Perl extension for Lemonldap websso.
SYNOPSIS
use Lemonldap::Portal::Session;
my $paramxml = $test->{DefinitionSession} ; # $test is the result of XML parsing
my $obj = Lemonldap::Portal::Session->init ($paramxml,entry =>$entry) ;
Lemonldap::Portal::Session is a parser of XML description of session to keys,values of hash .
It is a piece of lemonldap websso framework . see eg directory for implementation .
<<lessSYNOPSIS
use Lemonldap::Portal::Session;
my $paramxml = $test->{DefinitionSession} ; # $test is the result of XML parsing
my $obj = Lemonldap::Portal::Session->init ($paramxml,entry =>$entry) ;
Lemonldap::Portal::Session is a parser of XML description of session to keys,values of hash .
It is a piece of lemonldap websso framework . see eg directory for implementation .
Download (0.005MB)
Added: 2007-03-21 License: Perl Artistic License Price:
947 downloads
PHP::Session::DB 0.2
PHP::Session::DB is a Perl module to read / write PHP sessions stored in data bases. more>>
PHP::Session::DB is a Perl module to read / write PHP sessions stored in databases.
SYNOPSIS
use PHP::Session::DB;
my $session = PHP::Session::DB->new($id, { DBUSER => $dbuser, DBPASSWD => $dbpasswd, DBNAME => $dbname });
# session id
my $id = $session->id;
# get/set session data
my $foo = $session->get(foo);
$session->set(bar => $bar);
# remove session data
$session->unregister(foo);
# remove all session data
$session->unset;
# check if data is registered
$session->is_registered(bar);
# save session data
$session->save;
# destroy session
$session->destroy;
# create a new session, if not existent
$session = PHP::Session->new($new_sid, { %dbvars, create => 1 });
PHP::Session::DB provides a way to read / write PHP4 sessions stored on databases, with which you can make your Perl application session shared with PHP4.
<<lessSYNOPSIS
use PHP::Session::DB;
my $session = PHP::Session::DB->new($id, { DBUSER => $dbuser, DBPASSWD => $dbpasswd, DBNAME => $dbname });
# session id
my $id = $session->id;
# get/set session data
my $foo = $session->get(foo);
$session->set(bar => $bar);
# remove session data
$session->unregister(foo);
# remove all session data
$session->unset;
# check if data is registered
$session->is_registered(bar);
# save session data
$session->save;
# destroy session
$session->destroy;
# create a new session, if not existent
$session = PHP::Session->new($new_sid, { %dbvars, create => 1 });
PHP::Session::DB provides a way to read / write PHP4 sessions stored on databases, with which you can make your Perl application session shared with PHP4.
Download (0.004MB)
Added: 2007-04-03 License: Perl Artistic License Price:
934 downloads
Catalyst::Plugin::Session::CGISession 0.04
Catalyst::Plugin::Session::CGISession is a Perl module to use CGI::Session for persistent session data. more>>
Catalyst::Plugin::Session::CGISession is a Perl module to use CGI::Session for persistent session data.
SYNOPSIS
use Catalyst qw{ ... Session::CGISession ... };
MyApp->config->{session} = {
expires => 3600,
rewrite => 1,
};
$c->session->{user_email} = quibble@dibble.edu;
# Later, in another following request:
$smtp->to( $c->session->{user_email} );
This plugin provides the same functionality as the original Session::FastMmap plugin but uses the CGI::Session module for the session data management.
The motivations to develop this plugin were:
provide better session data expiration handling, as is available through the CGI::Session module
provide an easier migration to Catalyst for applications that have been using CGI::Session and its param() and other methods
allow Windows users to avoid the workarounds needed to make Cache::FastMmap work
The difference in session expiration between this plugin and Session::FastMmap is small but important. CGI::Session resets the expiration time limit on every access to the session. A one day time limit means the session data disappears 24 hours after the last request using that session. With Session::FastMmap the limit would be 24 hours after the first request, when the session is created.
While this plugin adds some functions and methods beyond those available with Session::FastMmap, new development most likely should avoid using these features. Try to use only the common feature, session(), to stay compatible with Session::FastMmap and other future session plugins.
<<lessSYNOPSIS
use Catalyst qw{ ... Session::CGISession ... };
MyApp->config->{session} = {
expires => 3600,
rewrite => 1,
};
$c->session->{user_email} = quibble@dibble.edu;
# Later, in another following request:
$smtp->to( $c->session->{user_email} );
This plugin provides the same functionality as the original Session::FastMmap plugin but uses the CGI::Session module for the session data management.
The motivations to develop this plugin were:
provide better session data expiration handling, as is available through the CGI::Session module
provide an easier migration to Catalyst for applications that have been using CGI::Session and its param() and other methods
allow Windows users to avoid the workarounds needed to make Cache::FastMmap work
The difference in session expiration between this plugin and Session::FastMmap is small but important. CGI::Session resets the expiration time limit on every access to the session. A one day time limit means the session data disappears 24 hours after the last request using that session. With Session::FastMmap the limit would be 24 hours after the first request, when the session is created.
While this plugin adds some functions and methods beyond those available with Session::FastMmap, new development most likely should avoid using these features. Try to use only the common feature, session(), to stay compatible with Session::FastMmap and other future session plugins.
Download (0.016MB)
Added: 2007-01-17 License: Perl Artistic License Price:
1010 downloads
POE::Session::Cascading 1.03
POE::Session::Cascading is a Perl module with stack-like POE sessions. more>>
POE::Session::Cascading is a Perl module with stack-like POE sessions.
SYNOPSIS
POE::Session::Cascading->new(
name => foo,
events => [
state1 => &state1,
state2 => &state2,
],
);
sub state1 {
my %args = @_;
$args{KERNEL}->post(somewhere,somestate);
# [ snip ]
}
sub state2 {
my %args = @_;
# [ snip ]
$args{SESSION}->stop;
}
POE::Session::Cascading provides a stack-like session for POE. Another way of saying it is that a Cascading session is like a big switch statement. In the above example, when state1 is called in session foo, &state1 gets executed. When it finishes, state2 gets fired and &state2 gets executed. If state2 is called in session foo, only state2 will get executed.
<<lessSYNOPSIS
POE::Session::Cascading->new(
name => foo,
events => [
state1 => &state1,
state2 => &state2,
],
);
sub state1 {
my %args = @_;
$args{KERNEL}->post(somewhere,somestate);
# [ snip ]
}
sub state2 {
my %args = @_;
# [ snip ]
$args{SESSION}->stop;
}
POE::Session::Cascading provides a stack-like session for POE. Another way of saying it is that a Cascading session is like a big switch statement. In the above example, when state1 is called in session foo, &state1 gets executed. When it finishes, state2 gets fired and &state2 gets executed. If state2 is called in session foo, only state2 will get executed.
Download (0.016MB)
Added: 2007-04-10 License: Perl Artistic License Price:
927 downloads
App::Session 0.962
App::Session can represents a sequence of multiple events perhaps executed in separate processes. more>>
App::Session can represents a sequence of multiple events perhaps executed in separate processes.
SYNOPSIS
# ... official way to get a Session object ...
use App;
$session = App->context();
$context = $session->session(); # get the session
# any of the following named parameters may be specified
$session = $context->session(
);
# ... alternative way (used internally) ...
use App::Session;
A Session class models the sequence of events associated with a use of the system. These events may occur in different processes.
For instance, in a web environment, when a new user arrives at a web site, he is allocated a new Session, even though he may not even be authenticated. In subsequent requests, his actions are tied together by a Session ID that is transmitted from the browser to the server on each request. During the Session, he may log in, log out, and log in again. Finally, Sessions in the web environment generally time out if not accessed for a certain period of time.
Conceptually, the Session may span processes, so they generally have a way to persist themselves so that they may be reinstantiated wherever they are needed. This would certainly be true in CGI or Cmd Contexts where each CGI request or command execution relies on and contributes to the running state accumulated in the Session. Other execution Contexts (Curses, Gtk) only require trivial implementations of a Session because it stays in memory for the duration of the process. Nonetheless, even these Contexts use a Session object so that the programming model across multiple platforms is the same.
<<lessSYNOPSIS
# ... official way to get a Session object ...
use App;
$session = App->context();
$context = $session->session(); # get the session
# any of the following named parameters may be specified
$session = $context->session(
);
# ... alternative way (used internally) ...
use App::Session;
A Session class models the sequence of events associated with a use of the system. These events may occur in different processes.
For instance, in a web environment, when a new user arrives at a web site, he is allocated a new Session, even though he may not even be authenticated. In subsequent requests, his actions are tied together by a Session ID that is transmitted from the browser to the server on each request. During the Session, he may log in, log out, and log in again. Finally, Sessions in the web environment generally time out if not accessed for a certain period of time.
Conceptually, the Session may span processes, so they generally have a way to persist themselves so that they may be reinstantiated wherever they are needed. This would certainly be true in CGI or Cmd Contexts where each CGI request or command execution relies on and contributes to the running state accumulated in the Session. Other execution Contexts (Curses, Gtk) only require trivial implementations of a Session because it stays in memory for the duration of the process. Nonetheless, even these Contexts use a Session object so that the programming model across multiple platforms is the same.
Download (0.072MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1191 downloads
POE::Session::GladeXML2 0.3.1
POE::Session::GladeXML2 is a Perl module that can emit POE events for Gtk2 callbacks. more>>
POE::Session::GladeXML2 is a Perl module that can emit POE events for Gtk2 callbacks.
SYNOPSIS
package test;
use POE::Session::GladeXML2;
# the name of the sub needs to match with the name you entered in
# the glade signal handler dialog.
sub on_button1_clicked {
print STDERR "button clickedn";
}
sub new {
[... object creation ...]
my $session = POE::Session::GladeXML2->create (
glade_object => $self,
glade_file => test.glade,
glade_args => widgetname,
[... POE Session params ...]
);
return $self;
}
Gtk2::GladeXML->init;
my $foo = test->new;
$poe_kernel->run();
A simple helper module that lets you connect callback names from your .glade file with methods of an object. These methods are called as POE callback or postback methods. POE::Session::GladeXML automatically determines whether gtk expects the signal handler to return a value. If it does, a callback is used, otherwise a postback will be used.
<<lessSYNOPSIS
package test;
use POE::Session::GladeXML2;
# the name of the sub needs to match with the name you entered in
# the glade signal handler dialog.
sub on_button1_clicked {
print STDERR "button clickedn";
}
sub new {
[... object creation ...]
my $session = POE::Session::GladeXML2->create (
glade_object => $self,
glade_file => test.glade,
glade_args => widgetname,
[... POE Session params ...]
);
return $self;
}
Gtk2::GladeXML->init;
my $foo = test->new;
$poe_kernel->run();
A simple helper module that lets you connect callback names from your .glade file with methods of an object. These methods are called as POE callback or postback methods. POE::Session::GladeXML automatically determines whether gtk expects the signal handler to return a value. If it does, a callback is used, otherwise a postback will be used.
Download (0.011MB)
Added: 2006-07-18 License: Perl Artistic License Price:
1193 downloads
CGI::Application::Plugin::Authentication::Store::Session 0.12
CGI::Application::Plugin::Authentication::Store::Session is a session based store. more>>
CGI::Application::Plugin::Authentication::Store::Session is a session based store.
SYNOPSIS
use base qw(CGI::Application);
use CGI::Application::Plugin::Session;
use CGI::Application::Plugin::Authentication;
__PACKAGE__->authen->config(
STORE => Session,
);
This module uses a session to store authentication information across multiple requests. It depends on the CGI::Application::Plugin::Session plugin being present. Actually, it only requires that there be a session method in the CGI::Application module that will return a valid CGI::Session object.
METHODS
fetch
This method accepts a list of parameters and fetches them from the session.
save
This method accpets a hash of parameters and values and saves them into the session.
delete
This method accepts a list of parameters and deletes them from the session.
<<lessSYNOPSIS
use base qw(CGI::Application);
use CGI::Application::Plugin::Session;
use CGI::Application::Plugin::Authentication;
__PACKAGE__->authen->config(
STORE => Session,
);
This module uses a session to store authentication information across multiple requests. It depends on the CGI::Application::Plugin::Session plugin being present. Actually, it only requires that there be a session method in the CGI::Application module that will return a valid CGI::Session object.
METHODS
fetch
This method accepts a list of parameters and fetches them from the session.
save
This method accpets a hash of parameters and values and saves them into the session.
delete
This method accepts a list of parameters and deletes them from the session.
Download (0.047MB)
Added: 2007-01-24 License: Perl Artistic License Price:
1003 downloads
ROX-Session 0.29
ROX-Session is a simple session manager. more>>
ROX-Session is a simple session manager. It loads, runs any programs you asked it to, and then quits when you run it a second time (thus ending your session). ROX-Session does not display any windows until you ask it to quit.
The first time you run it it will offer to make itself your session manager, so that youll get a ROX desktop when you log in (see screenshots below).
ROX-Session will automatically run any programs in your Auto Start directory when you log in. You can open this directory by bringing up the menu over ROX-Sessions icon and choosing Auto Start...
Enhancements:
- A large number of small bugs were fixed.
- New settings for the Gamma, Screensaver, and Keyboard configlets were added.
- The freedesktop.org configuration directories are now used instead of the old CHOICESPATH ones.
<<lessThe first time you run it it will offer to make itself your session manager, so that youll get a ROX desktop when you log in (see screenshots below).
ROX-Session will automatically run any programs in your Auto Start directory when you log in. You can open this directory by bringing up the menu over ROX-Sessions icon and choosing Auto Start...
Enhancements:
- A large number of small bugs were fixed.
- New settings for the Gamma, Screensaver, and Keyboard configlets were added.
- The freedesktop.org configuration directories are now used instead of the old CHOICESPATH ones.
Download (0.12MB)
Added: 2006-09-09 License: GPL (GNU General Public License) Price:
1140 downloads
Session Manager 0.5.4.1 for Firefox
Session Manager allows you to save and restore the state of all windows. more>>
Session Manager allows you to save and restore the state of all windows.
Session Manager saves and restores the state of all windows - either when you want it or automatically at startup and after crashes. Additionally it offers you to reopen (accidentally) closed windows and tabs. If youre afraid of losing data while browsing - this extension allows you to relax...
This extension replaces SessionSaver and Tab Mix Plus session manager. It stores more data than both of them and should be more reliable in saving and restoring. Although it is not recommended to have more than one session related extension installed, Session Manager is compatible at least with Tab Mix Plus.
<<lessSession Manager saves and restores the state of all windows - either when you want it or automatically at startup and after crashes. Additionally it offers you to reopen (accidentally) closed windows and tabs. If youre afraid of losing data while browsing - this extension allows you to relax...
This extension replaces SessionSaver and Tab Mix Plus session manager. It stores more data than both of them and should be more reliable in saving and restoring. Although it is not recommended to have more than one session related extension installed, Session Manager is compatible at least with Tab Mix Plus.
Download (0.071MB)
Added: 2007-07-25 License: MPL (Mozilla Public License) Price:
823 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above summer session search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed