puavo_authentication 0.0.15 → 0.0.16
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.
- data/app/views/layouts/sessions.html.erb +15 -13
- metadata +8 -11
- data/test/puavo_authentication_test.rb +0 -8
- data/test/test_helper.rb +0 -3
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
-
|
|
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 "
|
|
9
|
-
<%= stylesheet_link_tag "
|
|
10
|
-
<%= stylesheet_link_tag "
|
|
11
|
-
|
|
12
|
-
|
|
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:
|
|
4
|
+
hash: 63
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
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:
|
|
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
|
-
|
|
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
|
-
|
|
85
|
-
- test/test_helper.rb
|
|
81
|
+
test_files: []
|
|
82
|
+
|
data/test/test_helper.rb
DELETED