sbsm 1.1.7 → 1.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/lib/cgi/drbsession.rb +1 -1
- data/lib/sbsm/cgi.rb +5 -4
- data/lib/sbsm/drb.rb +1 -0
- data/lib/sbsm/drbserver.rb +5 -4
- data/lib/sbsm/exception.rb +5 -4
- data/lib/sbsm/flavored_uri_parser.rb +2 -2
- data/lib/sbsm/index.rb +5 -4
- data/lib/sbsm/lookandfeel.rb +5 -4
- data/lib/sbsm/lookandfeelfactory.rb +5 -4
- data/lib/sbsm/lookandfeelwrapper.rb +5 -4
- data/lib/sbsm/redirector.rb +1 -0
- data/lib/sbsm/request.rb +4 -3
- data/lib/sbsm/state.rb +4 -3
- data/lib/sbsm/time.rb +5 -4
- data/lib/sbsm/trans_handler.rb +1 -0
- data/lib/sbsm/turing.rb +1 -0
- data/lib/sbsm/uri_parser.rb +2 -1
- data/lib/sbsm/user.rb +5 -4
- data/lib/sbsm/validator.rb +5 -4
- data/lib/sbsm/viralstate.rb +5 -4
- data/lib/version.rb +1 -1
- data/test/stub/cgi.rb +5 -4
- data/test/suite.rb +5 -4
- data/test/test_drbserver.rb +5 -4
- data/test/test_index.rb +5 -4
- data/test/test_lookandfeel.rb +5 -4
- data/test/test_session.rb +5 -4
- data/test/test_state.rb +5 -4
- data/test/test_trans_handler.rb +1 -0
- data/test/test_user.rb +5 -4
- data/test/test_validator.rb +5 -4
- metadata +36 -60
data/History.txt
CHANGED
data/lib/cgi/drbsession.rb
CHANGED
data/lib/sbsm/cgi.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# CGI redefinitions
|
24
25
|
|
data/lib/sbsm/drb.rb
CHANGED
data/lib/sbsm/drbserver.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# DrbServer -- sbsm -- hwyss@ywesee.com
|
24
25
|
|
data/lib/sbsm/exception.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# Exception -- sbsm -- 22.10.2002 -- hwyss@ywesee.com
|
24
25
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# encoding: utf-8
|
2
2
|
require 'rockit/rockit'
|
3
3
|
module SBSM
|
4
4
|
# Parser for Uri
|
@@ -7,7 +7,7 @@ module SBSM
|
|
7
7
|
# and licensed under GPL
|
8
8
|
# but this parser is under LGPL
|
9
9
|
tokens = [
|
10
|
-
t1 = EofToken.new("EOF",/^(
|
10
|
+
t1 = EofToken.new("EOF",/^(¤~~¤¤~^^~2220240369)/),
|
11
11
|
t2 = Token.new("SLASH",/^(\/)/),
|
12
12
|
t3 = Token.new("OTHER",/^([^\/]+)/),
|
13
13
|
t4 = Token.new("LANG",/^([a-z]{2})/)
|
data/lib/sbsm/index.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# Index -- sbsm -- 04.03.2003 -- hwyss@ywesee.com
|
24
25
|
|
data/lib/sbsm/lookandfeel.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# Lookandfeel -- sbsm -- hwyss@ywesee.com
|
24
25
|
|
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# LookandfeelFactory -- sbsm -- hwyss@ywesee.com
|
24
25
|
|
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# LookandfeelWrapper -- sbsm -- hwyss@ywesee.com
|
24
25
|
|
data/lib/sbsm/redirector.rb
CHANGED
data/lib/sbsm/request.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
4
|
# State Based Session Management
|
4
|
-
#
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# SBSM::Request -- sbsm -- 19.03.2012 -- yasaka@ywesee.com
|
24
25
|
# SBSM::Request -- sbsm -- 24.01.2012 -- mhatakeyama@ywesee.com
|
data/lib/sbsm/state.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
4
|
# State Based Session Management
|
4
|
-
#
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# SBSM::State -- sbsm -- 15.05.2012 -- yasaka@ywesee.com
|
24
25
|
# SBSM::State -- sbsm -- 22.10.2002 -- hwyss@ywesee.com
|
data/lib/sbsm/time.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# Time -- sbsm -- 20.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/lib/sbsm/trans_handler.rb
CHANGED
data/lib/sbsm/turing.rb
CHANGED
data/lib/sbsm/uri_parser.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# encoding: utf-8
|
1
2
|
require 'rockit/rockit'
|
2
3
|
module SBSM
|
3
4
|
# Parser for Uri
|
@@ -6,7 +7,7 @@ module SBSM
|
|
6
7
|
# and licensed under GPL
|
7
8
|
# but this parser is under LGPL
|
8
9
|
tokens = [
|
9
|
-
t1 = EofToken.new("EOF",/^(
|
10
|
+
t1 = EofToken.new("EOF",/^(¤~~¤¤~^^~3499569544)/),
|
10
11
|
t2 = Token.new("SLASH",/^(\/)/),
|
11
12
|
t3 = Token.new("OTHER",/^([^\/]+)/),
|
12
13
|
t4 = Token.new("LANG",/^([a-z]{2})/)
|
data/lib/sbsm/user.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# User -- sbsm -- 20.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/lib/sbsm/validator.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# Validator -- sbsm -- 15.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/lib/sbsm/viralstate.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# ViralState -- sbsm -- 16.04.2004 -- hwyss@ywesee.com
|
24
25
|
|
data/lib/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
VERSION = '1.1.
|
1
|
+
VERSION = '1.1.8'
|
data/test/stub/cgi.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# CGI -- oddb -- 18.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/test/suite.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# suite.rb -- oddb -- 20.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/test/test_drbserver.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# TestDRbServer -- ODDB -- 27.11.2003 -- hwyss@ywesee.com
|
24
25
|
|
data/test/test_index.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# TestIndex -- sbsm -- 04.03.2003 -- hwyss@ywesee.com
|
24
25
|
|
data/test/test_lookandfeel.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# TestLookandfeel -- sbsm -- 15.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/test/test_session.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# TestSession -- sbsm -- 22.10.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/test/test_state.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# TestState -- oddb -- 20.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/test/test_trans_handler.rb
CHANGED
data/test/test_user.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# TestUser -- sbsm -- 20.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
data/test/test_validator.rb
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# encoding: utf-8
|
2
3
|
#
|
3
|
-
# State Based Session Management
|
4
|
-
#
|
4
|
+
# State Based Session Management
|
5
|
+
# Copyright (C) 2004 Hannes Wyss
|
5
6
|
#
|
6
7
|
# This library is free software; you can redistribute it and/or
|
7
8
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -17,8 +18,8 @@
|
|
17
18
|
# License along with this library; if not, write to the Free Software
|
18
19
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
20
|
#
|
20
|
-
#
|
21
|
-
#
|
21
|
+
# ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
|
22
|
+
# hwyss@ywesee.com
|
22
23
|
#
|
23
24
|
# TestValidator -- sbsm -- 15.11.2002 -- hwyss@ywesee.com
|
24
25
|
|
metadata
CHANGED
@@ -1,65 +1,49 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: sbsm
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.8
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 1
|
9
|
-
- 7
|
10
|
-
version: 1.1.7
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Masaomi Hatakeyama, Zeno R.R. Davatz
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-05-15 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: rdoc
|
22
|
-
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &18019640 !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
18
|
+
requirements:
|
26
19
|
- - ~>
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
|
29
|
-
segments:
|
30
|
-
- 3
|
31
|
-
- 10
|
32
|
-
version: "3.10"
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.10'
|
33
22
|
type: :development
|
34
|
-
version_requirements: *id001
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: hoe
|
37
23
|
prerelease: false
|
38
|
-
|
24
|
+
version_requirements: *18019640
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: hoe
|
27
|
+
requirement: &18019020 !ruby/object:Gem::Requirement
|
39
28
|
none: false
|
40
|
-
requirements:
|
29
|
+
requirements:
|
41
30
|
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
|
44
|
-
segments:
|
45
|
-
- 2
|
46
|
-
- 13
|
47
|
-
version: "2.13"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '2.13'
|
48
33
|
type: :development
|
49
|
-
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *18019020
|
50
36
|
description: Application framework for state based session management
|
51
|
-
email:
|
37
|
+
email:
|
52
38
|
- mhatakeyama@ywesee.com, zdavatz@ywesee.com
|
53
39
|
executables: []
|
54
|
-
|
55
40
|
extensions: []
|
56
|
-
|
57
|
-
extra_rdoc_files:
|
41
|
+
extra_rdoc_files:
|
58
42
|
- History.txt
|
59
43
|
- LICENCE.txt
|
60
44
|
- README.txt
|
61
45
|
- usage-en.txt
|
62
|
-
files:
|
46
|
+
files:
|
63
47
|
- History.txt
|
64
48
|
- LICENCE.txt
|
65
49
|
- README.txt
|
@@ -111,39 +95,31 @@ files:
|
|
111
95
|
- .gemtest
|
112
96
|
homepage: http://scm.ywesee.com/?p=sbsm/.git;a=summary
|
113
97
|
licenses: []
|
114
|
-
|
115
98
|
post_install_message:
|
116
|
-
rdoc_options:
|
99
|
+
rdoc_options:
|
117
100
|
- --main
|
118
101
|
- README.txt
|
119
|
-
require_paths:
|
102
|
+
require_paths:
|
120
103
|
- lib
|
121
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
104
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
105
|
none: false
|
123
|
-
requirements:
|
124
|
-
- -
|
125
|
-
- !ruby/object:Gem::Version
|
126
|
-
|
127
|
-
|
128
|
-
- 0
|
129
|
-
version: "0"
|
130
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
111
|
none: false
|
132
|
-
requirements:
|
133
|
-
- -
|
134
|
-
- !ruby/object:Gem::Version
|
135
|
-
|
136
|
-
segments:
|
137
|
-
- 0
|
138
|
-
version: "0"
|
112
|
+
requirements:
|
113
|
+
- - ! '>='
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
139
116
|
requirements: []
|
140
|
-
|
141
117
|
rubyforge_project: sbsm
|
142
118
|
rubygems_version: 1.8.15
|
143
119
|
signing_key:
|
144
120
|
specification_version: 3
|
145
121
|
summary: Application framework for state based session management
|
146
|
-
test_files:
|
122
|
+
test_files:
|
147
123
|
- test/test_drbserver.rb
|
148
124
|
- test/test_index.rb
|
149
125
|
- test/test_lookandfeel.rb
|