bcms_pubcookie 0.3.3 → 0.3.4
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/cms/users/_form.html.erb +30 -0
- data/bcms_pubcookie.gemspec +2 -2
- metadata +6 -5
@@ -0,0 +1,30 @@
|
|
1
|
+
<%= content_for :html_head do %>
|
2
|
+
<%= stylesheet_link_tag('cms/form_layout') %>
|
3
|
+
<% end %>
|
4
|
+
<%= form_for([:cms, @user]) do |f| %>
|
5
|
+
<%= f.cms_error_messages %>
|
6
|
+
<div class="fields text_fields">
|
7
|
+
<%= f.label :login, "UW Net ID" %>
|
8
|
+
<%= f.text_field :login, :autocomplete => "off" %>
|
9
|
+
</div>
|
10
|
+
<div class="fields text_fields">
|
11
|
+
<%= f.label :email %>
|
12
|
+
<%= f.text_field :email, :autocomplete => "off" %>
|
13
|
+
</div>
|
14
|
+
<div class="fields text_fields">
|
15
|
+
<%= f.label :first_name, "First Name" %>
|
16
|
+
<%= f.text_field :first_name, :autocomplete => "off" %>
|
17
|
+
</div>
|
18
|
+
<div class="fields text_fields">
|
19
|
+
<%= f.label :last_name, "Last Name" %>
|
20
|
+
<%= f.text_field :last_name, :autocomplete => "off" %>
|
21
|
+
</div>
|
22
|
+
<div class="fields text_fields">
|
23
|
+
<%= f.label :expires_at, "Expiration Date" %>
|
24
|
+
<%= f.date_picker :expires_at, :autocomplete => "off" %>
|
25
|
+
</div>
|
26
|
+
<%= render :partial => 'groups' %>
|
27
|
+
<div class="buttons">
|
28
|
+
<%= lt_button_wrapper(f.submit("Save", :class => "submit")) %>
|
29
|
+
</div>
|
30
|
+
<% end %>
|
data/bcms_pubcookie.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "bcms_pubcookie"
|
6
|
-
s.version = "0.3.
|
6
|
+
s.version = "0.3.4"
|
7
7
|
s.authors = ["James Hughes"]
|
8
8
|
s.email = ["james@virtualjames.com"]
|
9
9
|
s.homepage = "http://github.com/jamezilla/bcms_pubcookie"
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
|
|
15
15
|
s.files += Dir["*"]
|
16
16
|
s.files -= Dir["lib"]
|
17
17
|
s.files -= Dir["pkg"]
|
18
|
-
s.files += Dir["app/**/*.
|
18
|
+
s.files += Dir["app/**/*.erb"]
|
19
19
|
s.files += Dir["lib/**/*.rb"]
|
20
20
|
s.files += Dir["lib/**/.gitkeep"]
|
21
21
|
s.files -= Dir["lib/tasks/build_gem.rake"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bcms_pubcookie
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2011-12-30 00:00:00.000000000Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &2161308060 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '3.0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2161308060
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: browsercms
|
27
|
-
requirement: &
|
27
|
+
requirement: &2161307540 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '3.3'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2161307540
|
36
36
|
description:
|
37
37
|
email:
|
38
38
|
- james@virtualjames.com
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- LGPL
|
49
49
|
- Rakefile
|
50
50
|
- README.markdown
|
51
|
+
- app/views/cms/users/_form.html.erb
|
51
52
|
- lib/bcms_pubcookie.rb
|
52
53
|
- lib/pubcookie/authentication/controller.rb
|
53
54
|
- lib/pubcookie/controller_helper.rb
|