sbsm 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,7 @@
1
+ === 1.1.8 / 15.05.2012
2
+
3
+ * Fixed encoding problem
4
+
1
5
  === 1.1.7 / 15.05.2012
2
6
 
3
7
  * Updated for http_headers in view
@@ -1,4 +1,4 @@
1
- #
1
+ # encoding: utf-8
2
2
  # DRbSession - CGI::Session session database manager using DRb.
3
3
  # Copyright (C) 2001 by Tietew. All Rights Reserved.
4
4
  #
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
21
+ # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Zürich, Switzerland
22
+ # hwyss@ywesee.com
22
23
  #
23
24
  # CGI redefinitions
24
25
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  # DRb::DRbObject -- fix bug respond_to argument -- 22.08.2011 -- mhatakeyama@ywesee.com
3
4
  # DRb::DRbObject -- fix bug in ruby -- 23.09.2005 -- hwyss@ywesee.com
4
5
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
- # -*- coding: ascii-8bit -*-
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",/^(�~~��~^^~2220240369)/),
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})/)
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  # Redirector -- sbsm -- 02.11.2006 -- hwyss@ywesee.com
3
4
 
4
5
  module SBSM
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
4
  # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
4
  # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  # SBSM::TransHandler -- sbsm -- 25.01.2012 -- mhatakeyama@ywesee.com
3
4
  # SBSM::TransHandler -- sbsm -- 23.09.2004 -- hwyss@ywesee.com
4
5
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  # Turing -- SBSM -- 15.05.2009 -- hwyss@ywesee.com
3
4
  # Use a Hash instead of a PStore to manage Captchas
4
5
 
@@ -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",/^(�~~��~^^~3499569544)/),
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})/)
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1 +1 @@
1
- VERSION = '1.1.7'
1
+ VERSION = '1.1.8'
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  # TestTransHandler -- sbsm -- 23.09.2004 -- hwyss@ywesee.com
3
4
 
4
5
  $: << File.dirname(__FILE__)
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
 
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # encoding: utf-8
2
3
  #
3
- # State Based Session Management
4
- # Copyright (C) 2004 Hannes Wyss
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
- # ywesee - intellectual capital connected, Winterthurerstrasse 52, CH-8006 Z�rich, Switzerland
21
- # hwyss@ywesee.com
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
- hash: 29
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
- date: 2012-05-15 00:00:00 Z
19
- dependencies:
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
- prerelease: false
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
- hash: 19
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
- requirement: &id002 !ruby/object:Gem::Requirement
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
- hash: 25
44
- segments:
45
- - 2
46
- - 13
47
- version: "2.13"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.13'
48
33
  type: :development
49
- version_requirements: *id002
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
- hash: 3
127
- segments:
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
- hash: 3
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