nielsm-calendar_date_select 1.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. data/History.txt +234 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Manifest.txt +42 -0
  4. data/Rakefile +31 -0
  5. data/Readme.txt +16 -0
  6. data/init.rb +1 -0
  7. data/js_test/functional/cds_test.html +334 -0
  8. data/js_test/prototype.js +4184 -0
  9. data/js_test/test.css +40 -0
  10. data/js_test/unit/cds_helper_methods.html +46 -0
  11. data/js_test/unittest.js +564 -0
  12. data/lib/calendar_date_select.rb +34 -0
  13. data/lib/calendar_date_select/calendar_date_select.rb +116 -0
  14. data/lib/calendar_date_select/includes_helper.rb +29 -0
  15. data/public/blank_iframe.html +2 -0
  16. data/public/images/calendar_date_select/calendar.gif +0 -0
  17. data/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
  18. data/public/javascripts/calendar_date_select/format_american.js +34 -0
  19. data/public/javascripts/calendar_date_select/format_db.js +27 -0
  20. data/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
  21. data/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
  22. data/public/javascripts/calendar_date_select/format_finnish.js +32 -0
  23. data/public/javascripts/calendar_date_select/format_hyphen_ampm.js +36 -0
  24. data/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
  25. data/public/javascripts/calendar_date_select/format_italian.js +24 -0
  26. data/public/javascripts/calendar_date_select/locale/de.js +11 -0
  27. data/public/javascripts/calendar_date_select/locale/fi.js +10 -0
  28. data/public/javascripts/calendar_date_select/locale/fr.js +10 -0
  29. data/public/javascripts/calendar_date_select/locale/pl.js +10 -0
  30. data/public/javascripts/calendar_date_select/locale/pt.js +11 -0
  31. data/public/javascripts/calendar_date_select/locale/ru.js +10 -0
  32. data/public/stylesheets/calendar_date_select/blue.css +130 -0
  33. data/public/stylesheets/calendar_date_select/default.css +135 -0
  34. data/public/stylesheets/calendar_date_select/plain.css +128 -0
  35. data/public/stylesheets/calendar_date_select/red.css +135 -0
  36. data/public/stylesheets/calendar_date_select/silver.css +133 -0
  37. metadata +100 -0
@@ -0,0 +1,128 @@
1
+ .calendar_date_select {
2
+ border:#777 1px solid;
3
+ display:block;
4
+ width:195px;
5
+ z-index: 1000;
6
+ background-color:white;
7
+ }
8
+ /* this is a fun ie6 hack to get drop downs to stay behind the popup window. This should always be just underneath .calendar_date_select */
9
+ iframe.ie6_blocker {
10
+ position: absolute;
11
+ z-index: 999;
12
+ }
13
+
14
+ .calendar_date_select thead th {
15
+ color: black !important;
16
+ font-weight:bold;
17
+ }
18
+
19
+ .calendar_date_select .cds_buttons {
20
+ text-align:center;
21
+ padding:5px 0px;
22
+ }
23
+
24
+ .calendar_date_select .cds_footer {
25
+ padding:3px;
26
+ font-size:10px;
27
+ text-align:center;
28
+ }
29
+
30
+ .calendar_date_select table {
31
+ margin: 0px;
32
+ padding: 0px;
33
+ }
34
+
35
+
36
+ .calendar_date_select .cds_header {
37
+ text-align:center;
38
+ }
39
+
40
+ .calendar_date_select .cds_header * {
41
+ border:0px;
42
+ background-color:white;
43
+ }
44
+
45
+ .calendar_date_select .cds_header span {
46
+ font-size:15px;
47
+ color: black;
48
+ font-weight: bold;
49
+ }
50
+
51
+ .calendar_date_select select { font-size:11px;}
52
+
53
+ .calendar_date_select .cds_header a:hover {
54
+ color: white;
55
+ }
56
+ .calendar_date_select .cds_header a {
57
+ width:22px;
58
+ height:20px;
59
+ text-decoration: none;
60
+ font-size:14px;
61
+ color:black !important;
62
+ }
63
+
64
+ .calendar_date_select .cds_header a.prev {
65
+ float:left;
66
+ }
67
+ .calendar_date_select .cds_header a.next {
68
+ float:right;
69
+ }
70
+ .calendar_date_select .cds_header a.close {
71
+ float:right;
72
+ display:none;
73
+ }
74
+
75
+ .calendar_date_select .cds_header select.month {
76
+ width:90px;
77
+ }
78
+
79
+ .calendar_date_select .cds_header select.year {
80
+ width:61px;
81
+ }
82
+
83
+ .calendar_date_select .cds_buttons a {
84
+ color: black;
85
+ font-size: 9px;
86
+ }
87
+ .calendar_date_select td {
88
+ font-size:12px;
89
+ width: 24px;
90
+ height: 21px;
91
+ text-align:center;
92
+ vertical-align: middle;
93
+ background-color: #fff;
94
+ }
95
+ .calendar_date_select td.weekend {
96
+ }
97
+
98
+ .calendar_date_select td div {
99
+ color: #000;
100
+ }
101
+ .calendar_date_select td div.other {
102
+ color: #ccc;
103
+ }
104
+ .calendar_date_select td.selected div {
105
+ color:white;
106
+ }
107
+
108
+ .calendar_date_select tbody td {
109
+ }
110
+ .calendar_date_select td.selected {
111
+ background-color:#777;
112
+ }
113
+
114
+ .calendar_date_select td:hover {
115
+ background-color:#ccc;
116
+ }
117
+
118
+ .calendar_date_select td.today {
119
+ border: 1px dashed #999;
120
+ }
121
+
122
+ .calendar_date_select td.disabled div {
123
+ color: #e6e6e6;
124
+ }
125
+
126
+ .fieldWithErrors .calendar_date_select {
127
+ border: 2px solid red;
128
+ }
@@ -0,0 +1,135 @@
1
+ .calendar_date_select {
2
+ color:white;
3
+ border:#777 1px solid;
4
+ display:block;
5
+ width:195px;
6
+ z-index: 1000;
7
+ }
8
+ /* this is a fun ie6 hack to get drop downs to stay behind the popup window. This should always be just underneath .calendar_date_select */
9
+ iframe.ie6_blocker {
10
+ position: absolute;
11
+ z-index: 999;
12
+ }
13
+
14
+ .calendar_date_select thead th {
15
+ font-weight:bold;
16
+ background-color: #E7E8E8;
17
+ border-bottom:2px solid black;
18
+ color: black !important;
19
+ }
20
+
21
+ .calendar_date_select .cds_buttons {
22
+ text-align:center;
23
+ padding:5px 0px;
24
+ background-color: #5f0000;
25
+ }
26
+
27
+ .calendar_date_select .cds_footer {
28
+ background-color: black;
29
+ padding:3px;
30
+ text-align:center;
31
+ }
32
+
33
+ .calendar_date_select table {
34
+ margin: 0px;
35
+ padding: 0px;
36
+ }
37
+
38
+
39
+ .calendar_date_select .cds_header {
40
+ background-color: #ccc;
41
+ border-bottom: 2px solid #aaa;
42
+ text-align:center;
43
+ }
44
+
45
+ .calendar_date_select .cds_header span {
46
+ font-size:15px;
47
+ color: black;
48
+ font-weight: bold;
49
+ }
50
+
51
+ .calendar_date_select select { font-size:11px;}
52
+
53
+ .calendar_date_select .cds_header a:hover {
54
+ color: white;
55
+ }
56
+ .calendar_date_select .cds_header a {
57
+ width:22px;
58
+ height:20px;
59
+ text-decoration: none;
60
+ font-size:14px;
61
+ color:black !important;
62
+ }
63
+
64
+ .calendar_date_select .cds_header a.prev {
65
+ float:left;
66
+ }
67
+ .calendar_date_select .cds_header a.next {
68
+ float:right;
69
+ }
70
+
71
+ .calendar_date_select .cds_header a.close {
72
+ float:right;
73
+ display:none;
74
+ }
75
+
76
+ .calendar_date_select .cds_header select.month {
77
+ width:90px;
78
+ }
79
+
80
+ .calendar_date_select .cds_header select.year {
81
+ width:61px;
82
+ }
83
+
84
+ .calendar_date_select .cds_buttons a {
85
+ color: white;
86
+ font-size: 9px;
87
+ }
88
+
89
+
90
+ .calendar_date_select td {
91
+ background-color: #660000;
92
+ font-size:12px;
93
+ width: 24px;
94
+ height: 21px;
95
+ text-align:center;
96
+ vertical-align: middle;
97
+ }
98
+ .calendar_date_select td.weekend {
99
+ background-color: #5a0000;
100
+ }
101
+
102
+ .calendar_date_select td div {
103
+ color:#fff;
104
+ }
105
+ .calendar_date_select td div.other {
106
+ color: #93554C;
107
+ }
108
+ .calendar_date_select td.selected div {
109
+ color:black;
110
+ }
111
+
112
+
113
+ .calendar_date_select tbody td {
114
+ border-bottom: 1px solid #550000;
115
+ }
116
+ .calendar_date_select tbody td.selected {
117
+ background-color:white;
118
+ color:black;
119
+ }
120
+
121
+ .calendar_date_select tbody td:hover {
122
+ background-color:#ccc;
123
+ }
124
+
125
+ .calendar_date_select tbody td.today {
126
+ border: 1px dashed red;
127
+ }
128
+
129
+ .calendar_date_select td.disabled div {
130
+ color: #440000;
131
+ }
132
+
133
+ .fieldWithErrors .calendar_date_select {
134
+ border: 2px solid red;
135
+ }
@@ -0,0 +1,133 @@
1
+ .calendar_date_select {
2
+ color:white;
3
+ border:#777 1px solid;
4
+ display:block;
5
+ width:195px;
6
+ z-index: 1000;
7
+ }
8
+ /* this is a fun ie6 hack to get drop downs to stay behind the popup window. This should always be just underneath .calendar_date_select */
9
+ iframe.ie6_blocker {
10
+ position: absolute;
11
+ z-index: 999;
12
+ }
13
+
14
+ .calendar_date_select thead th {
15
+ font-weight:bold;
16
+ background-color: #000;
17
+ border-top:1px solid #777;
18
+ border-bottom:2px solid #333;
19
+ color: white !important;
20
+ }
21
+
22
+ .calendar_date_select .cds_buttons {
23
+ text-align:center;
24
+ padding:5px 0px;
25
+ background-color: #555;
26
+ }
27
+
28
+ .calendar_date_select .cds_footer {
29
+ background-color: black;
30
+ padding:3px;
31
+ font-size:12px;
32
+ text-align:center;
33
+ }
34
+
35
+ .calendar_date_select table {
36
+ margin: 0px;
37
+ padding: 0px;
38
+ }
39
+
40
+
41
+ .calendar_date_select .cds_header {
42
+ background-color: #ccc;
43
+ border-bottom: 2px solid #aaa;
44
+ text-align:center;
45
+ }
46
+
47
+ .calendar_date_select .cds_header span {
48
+ font-size:15px;
49
+ color: black;
50
+ font-weight: bold;
51
+ }
52
+
53
+ .calendar_date_select select { font-size:11px;}
54
+
55
+ .calendar_date_select .cds_header a:hover {
56
+ color: white;
57
+ }
58
+ .calendar_date_select .cds_header a {
59
+ width:22px;
60
+ height:20px;
61
+ text-decoration: none;
62
+ font-size:14px;
63
+ color:black !important;
64
+ }
65
+
66
+ .calendar_date_select .cds_header a.prev {
67
+ float:left;
68
+ }
69
+ .calendar_date_select .cds_header a.next {
70
+ float:right;
71
+ }
72
+ .calendar_date_select .cds_header a.close {
73
+ float:right;
74
+ display:none;
75
+ }
76
+
77
+ .calendar_date_select .cds_header select.month {
78
+ width:90px;
79
+ }
80
+
81
+ .calendar_date_select .cds_header select.year {
82
+ width:61px;
83
+ }
84
+
85
+ .calendar_date_select .cds_buttons a {
86
+ color: white;
87
+ font-size: 9px;
88
+ }
89
+ .calendar_date_select td {
90
+ font-size:12px;
91
+ width: 24px;
92
+ height: 21px;
93
+ text-align:center;
94
+ vertical-align: middle;
95
+ background-color: #666666;
96
+ }
97
+ .calendar_date_select td.weekend {
98
+ background-color: #606060;
99
+ }
100
+
101
+ .calendar_date_select td div {
102
+ color: #fff;
103
+ }
104
+ .calendar_date_select td div.other {
105
+ color: #888;
106
+ }
107
+ .calendar_date_select td.selected div {
108
+ color:black;
109
+ }
110
+
111
+ .calendar_date_select tbody td {
112
+ border-bottom: 1px solid #555;
113
+ }
114
+ .calendar_date_select td.selected {
115
+ background-color:white;
116
+ }
117
+
118
+ .calendar_date_select td:hover {
119
+ background-color:#ccc;
120
+ }
121
+
122
+ .calendar_date_select td.today {
123
+ border: 1px dashed #999;
124
+ }
125
+
126
+ .calendar_date_select td.disabled div {
127
+ color: #454545;
128
+ }
129
+
130
+
131
+ .fieldWithErrors .calendar_date_select {
132
+ border: 2px solid red;
133
+ }
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nielsm-calendar_date_select
3
+ version: !ruby/object:Gem::Version
4
+ version: "1.14"
5
+ platform: ruby
6
+ authors:
7
+ - Tim Harper
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-11-23 00:00:00 -08:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.8.0
23
+ version:
24
+ description: ""
25
+ email:
26
+ - tim c harper at gmail dot com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - History.txt
33
+ - Manifest.txt
34
+ - Readme.txt
35
+ files:
36
+ - History.txt
37
+ - init.rb
38
+ - js_test/functional/cds_test.html
39
+ - js_test/prototype.js
40
+ - js_test/test.css
41
+ - js_test/unit/cds_helper_methods.html
42
+ - js_test/unittest.js
43
+ - lib/calendar_date_select/calendar_date_select.rb
44
+ - lib/calendar_date_select/includes_helper.rb
45
+ - lib/calendar_date_select.rb
46
+ - Manifest.txt
47
+ - MIT-LICENSE
48
+ - public/blank_iframe.html
49
+ - public/images/calendar_date_select/calendar.gif
50
+ - public/javascripts/calendar_date_select/calendar_date_select.js
51
+ - public/javascripts/calendar_date_select/format_american.js
52
+ - public/javascripts/calendar_date_select/format_db.js
53
+ - public/javascripts/calendar_date_select/format_euro_24hr.js
54
+ - public/javascripts/calendar_date_select/format_euro_24hr_ymd.js
55
+ - public/javascripts/calendar_date_select/format_finnish.js
56
+ - public/javascripts/calendar_date_select/format_hyphen_ampm.js
57
+ - public/javascripts/calendar_date_select/format_iso_date.js
58
+ - public/javascripts/calendar_date_select/format_italian.js
59
+ - public/javascripts/calendar_date_select/locale/de.js
60
+ - public/javascripts/calendar_date_select/locale/fi.js
61
+ - public/javascripts/calendar_date_select/locale/fr.js
62
+ - public/javascripts/calendar_date_select/locale/pl.js
63
+ - public/javascripts/calendar_date_select/locale/pt.js
64
+ - public/javascripts/calendar_date_select/locale/ru.js
65
+ - public/stylesheets/calendar_date_select/blue.css
66
+ - public/stylesheets/calendar_date_select/default.css
67
+ - public/stylesheets/calendar_date_select/plain.css
68
+ - public/stylesheets/calendar_date_select/red.css
69
+ - public/stylesheets/calendar_date_select/silver.css
70
+ - Rakefile
71
+ - Readme.txt
72
+ has_rdoc: true
73
+ homepage: http://code.google.com/p/calendardateselect/
74
+ post_install_message:
75
+ rdoc_options:
76
+ - --main
77
+ - README.txt
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: "0"
85
+ version:
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: "0"
91
+ version:
92
+ requirements: []
93
+
94
+ rubyforge_project: calendar_date_select
95
+ rubygems_version: 1.2.0
96
+ signing_key:
97
+ specification_version: 2
98
+ summary: ""
99
+ test_files: []
100
+