puavo_authentication 0.0.15 → 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,15 +1,24 @@
1
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ jhttp://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
3
 
4
4
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
5
  <head>
6
6
  <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
7
7
  <title>Puavo</title>
8
- <%= stylesheet_link_tag "#{theme}/screen.css", :media => 'screen, projection' %>
9
- <%= stylesheet_link_tag "#{theme}/print.css", :media => 'print' %>
10
- <%= stylesheet_link_tag "#{theme}/puavo.css" %>
11
- <script language="javascript" type="text/javascript" src="/javascripts/flot/jquery.js"></script>
12
- <script language="javascript" type="text/javascript" src="/javascripts/flot/jquery.flot.js"></script>
8
+ <%= stylesheet_link_tag "/shared/stylesheets/#{theme}/screen.css", :media => 'screen, projection' %>
9
+ <%= stylesheet_link_tag "/shared/stylesheets/#{theme}/print.css", :media => 'print' %>
10
+ <%= stylesheet_link_tag "/shared/stylesheets/#{theme}/puavo.css" %>
11
+
12
+ <%= javascript_include_tag( "jquery-1.4.2.min" ) %>
13
+
14
+ <script type="text/javascript" charset="utf-8">
15
+ jQuery(function($) {
16
+ $("input[type='text']").get(0).focus()
17
+ });
18
+ </script>
19
+
20
+ <%# <%= yield :javascript %>
21
+
13
22
  </head>
14
23
  <body>
15
24
  <hr class="space" />
@@ -29,13 +38,6 @@
29
38
  </div>
30
39
  </div>
31
40
 
32
- <script type="text/javascript" src="/javascripts/prototype.js"></script>
33
- <script type="text/javascript" src="/javascripts/protofish.js"></script>
34
- <script type="text/javascript">
35
- document.observe("dom:loaded", function() {
36
- new ProtoFish("top-menu", "200", "hover", false, true, true);
37
- });
38
- </script>
39
41
 
40
42
  </body>
41
43
  </html>
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: puavo_authentication
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
4
+ hash: 63
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 15
10
- version: 0.0.15
9
+ - 16
10
+ version: 0.0.16
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jouni Korhonen
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-08 00:00:00 +03:00
18
+ date: 2012-03-27 00:00:00 +03:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -44,15 +44,13 @@ files:
44
44
  - lib/tasks/puavo_ldap_auth.rake
45
45
  - lib/user_error.rb
46
46
  - rails/init.rb
47
- - test/puavo_authentication_test.rb
48
- - test/test_helper.rb
49
47
  has_rdoc: true
50
48
  homepage: http://github.com/opinsys/puavo_authentication
51
49
  licenses: []
52
50
 
53
51
  post_install_message:
54
- rdoc_options:
55
- - --charset=UTF-8
52
+ rdoc_options: []
53
+
56
54
  require_paths:
57
55
  - lib
58
56
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -80,6 +78,5 @@ rubygems_version: 1.3.7
80
78
  signing_key:
81
79
  specification_version: 3
82
80
  summary: Authentication solution for Puavo applications
83
- test_files:
84
- - test/puavo_authentication_test.rb
85
- - test/test_helper.rb
81
+ test_files: []
82
+
@@ -1,8 +0,0 @@
1
- require 'test_helper'
2
-
3
- class PuavoauthenticationTest < ActiveSupport::TestCase
4
- # Replace this with your real tests.
5
- test "the truth" do
6
- assert true
7
- end
8
- end
data/test/test_helper.rb DELETED
@@ -1,3 +0,0 @@
1
- require 'rubygems'
2
- require 'active_support'
3
- require 'active_support/test_case'