concen 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. data/Gemfile +0 -3
  2. data/Gemfile.lock +0 -9
  3. data/LICENSE +1 -1
  4. data/README.md +23 -1
  5. data/app/assets/stylesheets/concen/application.css.sass +14 -16
  6. data/app/assets/stylesheets/concen/compass/_css3.scss +17 -0
  7. data/app/assets/stylesheets/concen/compass/_layout.scss +3 -0
  8. data/app/assets/stylesheets/concen/compass/_reset-legacy.scss +3 -0
  9. data/app/assets/stylesheets/concen/compass/_reset.scss +3 -0
  10. data/app/assets/stylesheets/concen/compass/_support.scss +36 -0
  11. data/app/assets/stylesheets/concen/compass/_typography.scss +4 -0
  12. data/app/assets/stylesheets/concen/compass/_utilities.scss +9 -0
  13. data/app/assets/stylesheets/concen/compass/css3/_appearance.scss +13 -0
  14. data/app/assets/stylesheets/concen/compass/css3/_background-clip.scss +43 -0
  15. data/app/assets/stylesheets/concen/compass/css3/_background-origin.scss +42 -0
  16. data/app/assets/stylesheets/concen/compass/css3/_background-size.scss +26 -0
  17. data/app/assets/stylesheets/concen/compass/css3/_border-radius.scss +135 -0
  18. data/app/assets/stylesheets/concen/compass/css3/_box-shadow.scss +93 -0
  19. data/app/assets/stylesheets/concen/compass/css3/_box-sizing.scss +13 -0
  20. data/app/assets/stylesheets/concen/compass/css3/_box.scss +111 -0
  21. data/app/assets/stylesheets/concen/compass/css3/_columns.scss +60 -0
  22. data/app/assets/stylesheets/concen/compass/css3/_font-face.scss +63 -0
  23. data/app/assets/stylesheets/concen/compass/css3/_gradient.scss +99 -0
  24. data/app/assets/stylesheets/concen/compass/css3/_images.scss +132 -0
  25. data/app/assets/stylesheets/concen/compass/css3/_inline-block.scss +16 -0
  26. data/app/assets/stylesheets/concen/compass/css3/_opacity.scss +19 -0
  27. data/app/assets/stylesheets/concen/compass/css3/_pie.scss +73 -0
  28. data/app/assets/stylesheets/concen/compass/css3/_shared.scss +38 -0
  29. data/app/assets/stylesheets/concen/compass/css3/_text-shadow.scss +62 -0
  30. data/app/assets/stylesheets/concen/compass/css3/_transform-legacy.scss +87 -0
  31. data/app/assets/stylesheets/concen/compass/css3/_transform.scss +598 -0
  32. data/app/assets/stylesheets/concen/compass/css3/_transition.scss +119 -0
  33. data/app/assets/stylesheets/concen/compass/layout/_grid-background.scss +178 -0
  34. data/app/assets/stylesheets/concen/compass/layout/_sticky-footer.scss +23 -0
  35. data/app/assets/stylesheets/concen/compass/layout/_stretching.scss +24 -0
  36. data/app/assets/stylesheets/concen/compass/reset/_utilities-legacy.scss +135 -0
  37. data/app/assets/stylesheets/concen/compass/reset/_utilities.scss +140 -0
  38. data/app/assets/stylesheets/concen/compass/typography/_links.scss +3 -0
  39. data/app/assets/stylesheets/concen/compass/typography/_lists.scss +4 -0
  40. data/app/assets/stylesheets/concen/compass/typography/_text.scss +4 -0
  41. data/app/assets/stylesheets/concen/compass/typography/_vertical_rhythm.scss +193 -0
  42. data/app/assets/stylesheets/concen/compass/typography/links/_hover-link.scss +5 -0
  43. data/app/assets/stylesheets/concen/compass/typography/links/_link-colors.scss +28 -0
  44. data/app/assets/stylesheets/concen/compass/typography/links/_unstyled-link.scss +7 -0
  45. data/app/assets/stylesheets/concen/compass/typography/lists/_bullets.scss +34 -0
  46. data/app/assets/stylesheets/concen/compass/typography/lists/_horizontal-list.scss +61 -0
  47. data/app/assets/stylesheets/concen/compass/typography/lists/_inline-block-list.scss +47 -0
  48. data/app/assets/stylesheets/concen/compass/typography/lists/_inline-list.scss +44 -0
  49. data/app/assets/stylesheets/concen/compass/typography/text/_ellipsis.scss +25 -0
  50. data/app/assets/stylesheets/concen/compass/typography/text/_force-wrap.scss +12 -0
  51. data/app/assets/stylesheets/concen/compass/typography/text/_nowrap.scss +2 -0
  52. data/app/assets/stylesheets/concen/compass/typography/text/_replacement.scss +34 -0
  53. data/app/assets/stylesheets/concen/compass/utilities/_color.scss +1 -0
  54. data/app/assets/stylesheets/concen/compass/utilities/_general.scss +6 -0
  55. data/app/assets/stylesheets/concen/compass/utilities/_links.scss +5 -0
  56. data/app/assets/stylesheets/concen/compass/utilities/_lists.scss +6 -0
  57. data/app/assets/stylesheets/concen/compass/utilities/_print.scss +17 -0
  58. data/app/assets/stylesheets/concen/compass/utilities/_sprites.scss +1 -0
  59. data/app/assets/stylesheets/concen/compass/utilities/_tables.scss +3 -0
  60. data/app/assets/stylesheets/concen/compass/utilities/_text.scss +5 -0
  61. data/app/assets/stylesheets/concen/compass/utilities/color/_contrast.scss +28 -0
  62. data/app/assets/stylesheets/concen/compass/utilities/general/_clearfix.scss +44 -0
  63. data/app/assets/stylesheets/concen/compass/utilities/general/_float.scss +30 -0
  64. data/app/assets/stylesheets/concen/compass/utilities/general/_hacks.scss +46 -0
  65. data/app/assets/stylesheets/concen/compass/utilities/general/_min.scss +16 -0
  66. data/app/assets/stylesheets/concen/compass/utilities/general/_reset.scss +2 -0
  67. data/app/assets/stylesheets/concen/compass/utilities/general/_tabs.scss +1 -0
  68. data/app/assets/stylesheets/concen/compass/utilities/general/_tag-cloud.scss +18 -0
  69. data/app/assets/stylesheets/concen/compass/utilities/links/_hover-link.scss +3 -0
  70. data/app/assets/stylesheets/concen/compass/utilities/links/_link-colors.scss +3 -0
  71. data/app/assets/stylesheets/concen/compass/utilities/links/_unstyled-link.scss +3 -0
  72. data/app/assets/stylesheets/concen/compass/utilities/lists/_bullets.scss +3 -0
  73. data/app/assets/stylesheets/concen/compass/utilities/lists/_horizontal-list.scss +3 -0
  74. data/app/assets/stylesheets/concen/compass/utilities/lists/_inline-block-list.scss +3 -0
  75. data/app/assets/stylesheets/concen/compass/utilities/lists/_inline-list.scss +3 -0
  76. data/app/assets/stylesheets/concen/compass/utilities/sprites/_base.scss +66 -0
  77. data/app/assets/stylesheets/concen/compass/utilities/sprites/_sprite-img.scss +56 -0
  78. data/app/assets/stylesheets/concen/compass/utilities/tables/_alternating-rows-and-columns.scss +20 -0
  79. data/app/assets/stylesheets/concen/compass/utilities/tables/_borders.scss +33 -0
  80. data/app/assets/stylesheets/concen/compass/utilities/tables/_scaffolding.scss +9 -0
  81. data/app/assets/stylesheets/concen/compass/utilities/text/_ellipsis.scss +3 -0
  82. data/app/assets/stylesheets/concen/compass/utilities/text/_nowrap.scss +3 -0
  83. data/app/assets/stylesheets/concen/compass/utilities/text/_replacement.scss +3 -0
  84. data/app/assets/stylesheets/concen/partials/_base.sass +4 -4
  85. data/app/assets/stylesheets/concen/partials/_variables.sass +5 -5
  86. data/app/helpers/concen/application_helper.rb +0 -6
  87. data/app/models/concen/page.rb +12 -3
  88. data/app/views/concen/grid_files/_form.html.erb +23 -0
  89. data/app/views/concen/grid_files/edit.html.erb +10 -0
  90. data/app/views/concen/pages/_file_list.erb +11 -0
  91. data/app/views/concen/pages/_files.erb +32 -0
  92. data/app/views/concen/pages/_form.html.erb +26 -0
  93. data/app/views/concen/pages/_nested_list.html.erb +22 -0
  94. data/app/views/concen/pages/edit.html.erb +19 -0
  95. data/app/views/concen/pages/index.html.erb +12 -0
  96. data/app/views/concen/pages/new.html.erb +10 -0
  97. data/app/views/concen/performances/_runtimes.html.erb +8 -0
  98. data/app/views/concen/performances/show.html.erb +40 -0
  99. data/app/views/concen/sessions/new.html.erb +17 -0
  100. data/app/views/concen/statuses/_server.html.erb +34 -0
  101. data/app/views/concen/statuses/show.html.erb +27 -0
  102. data/app/views/concen/traffics/_pages.html.erb +8 -0
  103. data/app/views/concen/traffics/_referrals.html.erb +12 -0
  104. data/app/views/concen/traffics/show.html.erb +40 -0
  105. data/app/views/concen/users/_form.html.erb +42 -0
  106. data/app/views/concen/users/{_password_reset.html.haml → _password_reset.html.erb} +0 -0
  107. data/app/views/concen/users/_settings.html.erb +23 -0
  108. data/app/views/concen/users/edit.html.erb +12 -0
  109. data/app/views/concen/users/index.html.erb +40 -0
  110. data/app/views/concen/users/new.html.erb +6 -0
  111. data/app/views/concen/users/new_invite.html.erb +24 -0
  112. data/app/views/concen/users/new_reset_password.html.erb +24 -0
  113. data/app/views/layouts/concen/{_additional_header_links.haml → _additional_header_links.html.erb} +0 -0
  114. data/app/views/layouts/concen/_header.html.erb +24 -0
  115. data/app/views/layouts/concen/{maintenance.html.haml → _iphone.html.erb} +0 -0
  116. data/app/views/layouts/concen/application.html.erb +42 -0
  117. data/app/views/layouts/concen/maintenance.html.erb +0 -0
  118. data/concen.gemspec +0 -2
  119. data/lib/concen/engine.rb +0 -1
  120. data/lib/concen/version.rb +1 -1
  121. data/test/support/raw_text/smartypants.html +1 -1
  122. data/test/support/raw_text/smartypants.txt +1 -1
  123. metadata +130 -74
  124. data/app/views/concen/grid_files/_form.html.haml +0 -15
  125. data/app/views/concen/grid_files/edit.html.haml +0 -7
  126. data/app/views/concen/pages/_file_list.haml +0 -7
  127. data/app/views/concen/pages/_files.haml +0 -24
  128. data/app/views/concen/pages/_form.html.haml +0 -17
  129. data/app/views/concen/pages/_nested_list.html.haml +0 -15
  130. data/app/views/concen/pages/edit.html.haml +0 -13
  131. data/app/views/concen/pages/index.html.haml +0 -12
  132. data/app/views/concen/pages/new.html.haml +0 -7
  133. data/app/views/concen/performances/_runtimes.html.haml +0 -5
  134. data/app/views/concen/performances/show.html.haml +0 -27
  135. data/app/views/concen/sessions/new.html.haml +0 -12
  136. data/app/views/concen/statuses/_server.html.haml +0 -19
  137. data/app/views/concen/statuses/show.html.haml +0 -18
  138. data/app/views/concen/traffics/_pages.html.haml +0 -5
  139. data/app/views/concen/traffics/_referrals.html.haml +0 -9
  140. data/app/views/concen/traffics/show.html.haml +0 -27
  141. data/app/views/concen/users/_form.html.haml +0 -29
  142. data/app/views/concen/users/_settings.html.haml +0 -15
  143. data/app/views/concen/users/edit.html.haml +0 -9
  144. data/app/views/concen/users/index.html.haml +0 -32
  145. data/app/views/concen/users/new.html.haml +0 -4
  146. data/app/views/concen/users/new_invite.html.haml +0 -15
  147. data/app/views/concen/users/new_reset_password.html.haml +0 -15
  148. data/app/views/layouts/concen/_header.html.haml +0 -18
  149. data/app/views/layouts/concen/_iphone.html.haml +0 -6
  150. data/app/views/layouts/concen/application.html.haml +0 -33
@@ -21,8 +21,6 @@ Gem::Specification.new do |s|
21
21
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
22
22
  s.require_paths = ["lib"]
23
23
 
24
- s.add_development_dependency("compass", "~> 0.12.alpha")
25
- s.add_dependency("haml", "~> 3.1.0")
26
24
  s.add_dependency("mustache", "~> 0.99.4")
27
25
  s.add_dependency("redcarpet", "~> 2.0.0b5")
28
26
  s.add_dependency("mongoid", "~> 2.2")
@@ -1,5 +1,4 @@
1
1
  require "rails"
2
- require "haml"
3
2
  require "mongoid"
4
3
  require "mongo/rails/instrumentation/railtie"
5
4
 
@@ -1,3 +1,3 @@
1
1
  module Concen
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
@@ -1,3 +1,3 @@
1
- <p>He sat back. A sense of complete helplessness had descended upon him. To begin with, he did not know with any certainty that this was 1984. It must be round about that date, since he was &ldquo;fairly&rdquo; sure that his age was thirty-nine, and he &lsquo;believed&rsquo; that he had been born in 1944&ndash;1945; but it was never possible nowadays to pin down any date within a year or two.</p>
1
+ <p>George was at the teachers&rsquo; meeting. He sat back. A sense of complete helplessness had descended upon him. To begin with, he didn&rsquo;t know with any certainty that this was 1984. It must be round about that date, since he was &ldquo;fairly&rdquo; sure that his age was thirty-nine, and he &lsquo;believed&rsquo; that he had been born in 1944&ndash;1945; but it was never possible nowadays to pin down any date within a year or two.</p>
2
2
 
3
3
  <p>For whom, it suddenly occurred to him to wonder, was he writing this diary? For the future, for the unborn. His mind hovered &mdash; for a moment round the doubtful date on the page, and then fetched up with a bump against the Newspeak word doublethink. For the first time the magnitude of what he had undertaken came home to him. How could you communicate with the future? It was of its nature impossible. Either the future would resemble the present, in which case it would not listen to him: or it would be different from it, and his predicament would be meaningless&hellip;</p>
@@ -6,6 +6,6 @@ Publish Time: 2011-07-22 02:28:53 +0800
6
6
 
7
7
  -----
8
8
 
9
- He sat back. A sense of complete helplessness had descended upon him. To begin with, he did not know with any certainty that this was 1984. It must be round about that date, since he was "fairly" sure that his age was thirty-nine, and he 'believed fdfds' that he had been born in 1944--1945; but it was never possible nowadays to pin down any date within a year or two.
9
+ George was at the teachers' meeting. He sat back. A sense of complete helplessness had descended upon him. To begin with, he didn't know with any certainty that this was 1984. It must be round about that date, since he was "fairly" sure that his age was thirty-nine, and he 'believed' that he had been born in 1944--1945; but it was never possible nowadays to pin down any date within a year or two.
10
10
 
11
11
  For whom, it suddenly occurred to him to wonder, was he writing this diary? For the future, for the unborn. His mind hovered --- for a moment round the doubtful date on the page, and then fetched up with a bump against the Newspeak word doublethink. For the first time the magnitude of what he had undertaken came home to him. How could you communicate with the future? It was of its nature impossible. Either the future would resemble the present, in which case it would not listen to him: or it would be different from it, and his predicament would be meaningless...
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,33 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-10-01 00:00:00.000000000 Z
12
+ date: 2011-11-05 00:00:00.000000000 Z
13
13
  dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: compass
16
- requirement: &70263056816320 !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ~>
20
- - !ruby/object:Gem::Version
21
- version: 0.12.alpha
22
- type: :development
23
- prerelease: false
24
- version_requirements: *70263056816320
25
- - !ruby/object:Gem::Dependency
26
- name: haml
27
- requirement: &70263056812780 !ruby/object:Gem::Requirement
28
- none: false
29
- requirements:
30
- - - ~>
31
- - !ruby/object:Gem::Version
32
- version: 3.1.0
33
- type: :runtime
34
- prerelease: false
35
- version_requirements: *70263056812780
36
14
  - !ruby/object:Gem::Dependency
37
15
  name: mustache
38
- requirement: &70263056810380 !ruby/object:Gem::Requirement
16
+ requirement: &70330993430240 !ruby/object:Gem::Requirement
39
17
  none: false
40
18
  requirements:
41
19
  - - ~>
@@ -43,10 +21,10 @@ dependencies:
43
21
  version: 0.99.4
44
22
  type: :runtime
45
23
  prerelease: false
46
- version_requirements: *70263056810380
24
+ version_requirements: *70330993430240
47
25
  - !ruby/object:Gem::Dependency
48
26
  name: redcarpet
49
- requirement: &70263056806840 !ruby/object:Gem::Requirement
27
+ requirement: &70330993429720 !ruby/object:Gem::Requirement
50
28
  none: false
51
29
  requirements:
52
30
  - - ~>
@@ -54,10 +32,10 @@ dependencies:
54
32
  version: 2.0.0b5
55
33
  type: :runtime
56
34
  prerelease: false
57
- version_requirements: *70263056806840
35
+ version_requirements: *70330993429720
58
36
  - !ruby/object:Gem::Dependency
59
37
  name: mongoid
60
- requirement: &70263056802160 !ruby/object:Gem::Requirement
38
+ requirement: &70330993429140 !ruby/object:Gem::Requirement
61
39
  none: false
62
40
  requirements:
63
41
  - - ~>
@@ -65,10 +43,10 @@ dependencies:
65
43
  version: '2.2'
66
44
  type: :runtime
67
45
  prerelease: false
68
- version_requirements: *70263056802160
46
+ version_requirements: *70330993429140
69
47
  - !ruby/object:Gem::Dependency
70
48
  name: bson_ext
71
- requirement: &70263056799140 !ruby/object:Gem::Requirement
49
+ requirement: &70330993428520 !ruby/object:Gem::Requirement
72
50
  none: false
73
51
  requirements:
74
52
  - - ~>
@@ -76,10 +54,10 @@ dependencies:
76
54
  version: '1.3'
77
55
  type: :runtime
78
56
  prerelease: false
79
- version_requirements: *70263056799140
57
+ version_requirements: *70330993428520
80
58
  - !ruby/object:Gem::Dependency
81
59
  name: mongo-rails-instrumentation
82
- requirement: &70263056599820 !ruby/object:Gem::Requirement
60
+ requirement: &70330993427540 !ruby/object:Gem::Requirement
83
61
  none: false
84
62
  requirements:
85
63
  - - ~>
@@ -87,10 +65,10 @@ dependencies:
87
65
  version: 0.2.4
88
66
  type: :runtime
89
67
  prerelease: false
90
- version_requirements: *70263056599820
68
+ version_requirements: *70330993427540
91
69
  - !ruby/object:Gem::Dependency
92
70
  name: rack-gridfs
93
- requirement: &70263056596520 !ruby/object:Gem::Requirement
71
+ requirement: &70330993426840 !ruby/object:Gem::Requirement
94
72
  none: false
95
73
  requirements:
96
74
  - - ~>
@@ -98,10 +76,10 @@ dependencies:
98
76
  version: 0.4.1
99
77
  type: :runtime
100
78
  prerelease: false
101
- version_requirements: *70263056596520
79
+ version_requirements: *70330993426840
102
80
  - !ruby/object:Gem::Dependency
103
81
  name: chronic
104
- requirement: &70263056595600 !ruby/object:Gem::Requirement
82
+ requirement: &70330993426240 !ruby/object:Gem::Requirement
105
83
  none: false
106
84
  requirements:
107
85
  - - ~>
@@ -109,10 +87,10 @@ dependencies:
109
87
  version: 0.6.3
110
88
  type: :runtime
111
89
  prerelease: false
112
- version_requirements: *70263056595600
90
+ version_requirements: *70330993426240
113
91
  - !ruby/object:Gem::Dependency
114
92
  name: mime-types
115
- requirement: &70263056594800 !ruby/object:Gem::Requirement
93
+ requirement: &70330993447760 !ruby/object:Gem::Requirement
116
94
  none: false
117
95
  requirements:
118
96
  - - ~>
@@ -120,10 +98,10 @@ dependencies:
120
98
  version: '1.16'
121
99
  type: :runtime
122
100
  prerelease: false
123
- version_requirements: *70263056594800
101
+ version_requirements: *70330993447760
124
102
  - !ruby/object:Gem::Dependency
125
103
  name: bcrypt-ruby
126
- requirement: &70263056593760 !ruby/object:Gem::Requirement
104
+ requirement: &70330993447300 !ruby/object:Gem::Requirement
127
105
  none: false
128
106
  requirements:
129
107
  - - ~>
@@ -131,10 +109,10 @@ dependencies:
131
109
  version: 3.0.0
132
110
  type: :runtime
133
111
  prerelease: false
134
- version_requirements: *70263056593760
112
+ version_requirements: *70330993447300
135
113
  - !ruby/object:Gem::Dependency
136
114
  name: domainatrix
137
- requirement: &70263056589660 !ruby/object:Gem::Requirement
115
+ requirement: &70330993446840 !ruby/object:Gem::Requirement
138
116
  none: false
139
117
  requirements:
140
118
  - - ~>
@@ -142,7 +120,7 @@ dependencies:
142
120
  version: 0.0.10
143
121
  type: :runtime
144
122
  prerelease: false
145
- version_requirements: *70263056589660
123
+ version_requirements: *70330993446840
146
124
  description: A Rails Engine to control and monitor Rails application from a web interface.
147
125
  It includes content capturing system, real-time traffic monitoring, and real-time
148
126
  performance monitoring. It is built to be flexible and customizable.
@@ -192,6 +170,84 @@ files:
192
170
  - app/assets/javascripts/concen/traffics.js
193
171
  - app/assets/javascripts/concen/users.js
194
172
  - app/assets/stylesheets/concen/application.css.sass
173
+ - app/assets/stylesheets/concen/compass/_css3.scss
174
+ - app/assets/stylesheets/concen/compass/_layout.scss
175
+ - app/assets/stylesheets/concen/compass/_reset-legacy.scss
176
+ - app/assets/stylesheets/concen/compass/_reset.scss
177
+ - app/assets/stylesheets/concen/compass/_support.scss
178
+ - app/assets/stylesheets/concen/compass/_typography.scss
179
+ - app/assets/stylesheets/concen/compass/_utilities.scss
180
+ - app/assets/stylesheets/concen/compass/css3/_appearance.scss
181
+ - app/assets/stylesheets/concen/compass/css3/_background-clip.scss
182
+ - app/assets/stylesheets/concen/compass/css3/_background-origin.scss
183
+ - app/assets/stylesheets/concen/compass/css3/_background-size.scss
184
+ - app/assets/stylesheets/concen/compass/css3/_border-radius.scss
185
+ - app/assets/stylesheets/concen/compass/css3/_box-shadow.scss
186
+ - app/assets/stylesheets/concen/compass/css3/_box-sizing.scss
187
+ - app/assets/stylesheets/concen/compass/css3/_box.scss
188
+ - app/assets/stylesheets/concen/compass/css3/_columns.scss
189
+ - app/assets/stylesheets/concen/compass/css3/_font-face.scss
190
+ - app/assets/stylesheets/concen/compass/css3/_gradient.scss
191
+ - app/assets/stylesheets/concen/compass/css3/_images.scss
192
+ - app/assets/stylesheets/concen/compass/css3/_inline-block.scss
193
+ - app/assets/stylesheets/concen/compass/css3/_opacity.scss
194
+ - app/assets/stylesheets/concen/compass/css3/_pie.scss
195
+ - app/assets/stylesheets/concen/compass/css3/_shared.scss
196
+ - app/assets/stylesheets/concen/compass/css3/_text-shadow.scss
197
+ - app/assets/stylesheets/concen/compass/css3/_transform-legacy.scss
198
+ - app/assets/stylesheets/concen/compass/css3/_transform.scss
199
+ - app/assets/stylesheets/concen/compass/css3/_transition.scss
200
+ - app/assets/stylesheets/concen/compass/layout/_grid-background.scss
201
+ - app/assets/stylesheets/concen/compass/layout/_sticky-footer.scss
202
+ - app/assets/stylesheets/concen/compass/layout/_stretching.scss
203
+ - app/assets/stylesheets/concen/compass/reset/_utilities-legacy.scss
204
+ - app/assets/stylesheets/concen/compass/reset/_utilities.scss
205
+ - app/assets/stylesheets/concen/compass/typography/_links.scss
206
+ - app/assets/stylesheets/concen/compass/typography/_lists.scss
207
+ - app/assets/stylesheets/concen/compass/typography/_text.scss
208
+ - app/assets/stylesheets/concen/compass/typography/_vertical_rhythm.scss
209
+ - app/assets/stylesheets/concen/compass/typography/links/_hover-link.scss
210
+ - app/assets/stylesheets/concen/compass/typography/links/_link-colors.scss
211
+ - app/assets/stylesheets/concen/compass/typography/links/_unstyled-link.scss
212
+ - app/assets/stylesheets/concen/compass/typography/lists/_bullets.scss
213
+ - app/assets/stylesheets/concen/compass/typography/lists/_horizontal-list.scss
214
+ - app/assets/stylesheets/concen/compass/typography/lists/_inline-block-list.scss
215
+ - app/assets/stylesheets/concen/compass/typography/lists/_inline-list.scss
216
+ - app/assets/stylesheets/concen/compass/typography/text/_ellipsis.scss
217
+ - app/assets/stylesheets/concen/compass/typography/text/_force-wrap.scss
218
+ - app/assets/stylesheets/concen/compass/typography/text/_nowrap.scss
219
+ - app/assets/stylesheets/concen/compass/typography/text/_replacement.scss
220
+ - app/assets/stylesheets/concen/compass/utilities/_color.scss
221
+ - app/assets/stylesheets/concen/compass/utilities/_general.scss
222
+ - app/assets/stylesheets/concen/compass/utilities/_links.scss
223
+ - app/assets/stylesheets/concen/compass/utilities/_lists.scss
224
+ - app/assets/stylesheets/concen/compass/utilities/_print.scss
225
+ - app/assets/stylesheets/concen/compass/utilities/_sprites.scss
226
+ - app/assets/stylesheets/concen/compass/utilities/_tables.scss
227
+ - app/assets/stylesheets/concen/compass/utilities/_text.scss
228
+ - app/assets/stylesheets/concen/compass/utilities/color/_contrast.scss
229
+ - app/assets/stylesheets/concen/compass/utilities/general/_clearfix.scss
230
+ - app/assets/stylesheets/concen/compass/utilities/general/_float.scss
231
+ - app/assets/stylesheets/concen/compass/utilities/general/_hacks.scss
232
+ - app/assets/stylesheets/concen/compass/utilities/general/_min.scss
233
+ - app/assets/stylesheets/concen/compass/utilities/general/_reset.scss
234
+ - app/assets/stylesheets/concen/compass/utilities/general/_tabs.scss
235
+ - app/assets/stylesheets/concen/compass/utilities/general/_tag-cloud.scss
236
+ - app/assets/stylesheets/concen/compass/utilities/links/_hover-link.scss
237
+ - app/assets/stylesheets/concen/compass/utilities/links/_link-colors.scss
238
+ - app/assets/stylesheets/concen/compass/utilities/links/_unstyled-link.scss
239
+ - app/assets/stylesheets/concen/compass/utilities/lists/_bullets.scss
240
+ - app/assets/stylesheets/concen/compass/utilities/lists/_horizontal-list.scss
241
+ - app/assets/stylesheets/concen/compass/utilities/lists/_inline-block-list.scss
242
+ - app/assets/stylesheets/concen/compass/utilities/lists/_inline-list.scss
243
+ - app/assets/stylesheets/concen/compass/utilities/sprites/_base.scss
244
+ - app/assets/stylesheets/concen/compass/utilities/sprites/_sprite-img.scss
245
+ - app/assets/stylesheets/concen/compass/utilities/tables/_alternating-rows-and-columns.scss
246
+ - app/assets/stylesheets/concen/compass/utilities/tables/_borders.scss
247
+ - app/assets/stylesheets/concen/compass/utilities/tables/_scaffolding.scss
248
+ - app/assets/stylesheets/concen/compass/utilities/text/_ellipsis.scss
249
+ - app/assets/stylesheets/concen/compass/utilities/text/_nowrap.scss
250
+ - app/assets/stylesheets/concen/compass/utilities/text/_replacement.scss
195
251
  - app/assets/stylesheets/concen/ie.css.sass
196
252
  - app/assets/stylesheets/concen/non_ios.css.sass
197
253
  - app/assets/stylesheets/concen/partials/.sass
@@ -217,37 +273,37 @@ files:
217
273
  - app/models/concen/user.rb
218
274
  - app/models/concen/visit/page.rb
219
275
  - app/models/concen/visit/referral.rb
220
- - app/views/concen/grid_files/_form.html.haml
221
- - app/views/concen/grid_files/edit.html.haml
222
- - app/views/concen/pages/_file_list.haml
223
- - app/views/concen/pages/_files.haml
224
- - app/views/concen/pages/_form.html.haml
225
- - app/views/concen/pages/_nested_list.html.haml
226
- - app/views/concen/pages/edit.html.haml
227
- - app/views/concen/pages/index.html.haml
228
- - app/views/concen/pages/new.html.haml
229
- - app/views/concen/performances/_runtimes.html.haml
230
- - app/views/concen/performances/show.html.haml
231
- - app/views/concen/sessions/new.html.haml
232
- - app/views/concen/statuses/_server.html.haml
233
- - app/views/concen/statuses/show.html.haml
234
- - app/views/concen/traffics/_pages.html.haml
235
- - app/views/concen/traffics/_referrals.html.haml
236
- - app/views/concen/traffics/show.html.haml
237
- - app/views/concen/users/_form.html.haml
238
- - app/views/concen/users/_password_reset.html.haml
239
- - app/views/concen/users/_settings.html.haml
240
- - app/views/concen/users/edit.html.haml
241
- - app/views/concen/users/index.html.haml
242
- - app/views/concen/users/new.html.haml
243
- - app/views/concen/users/new_invite.html.haml
244
- - app/views/concen/users/new_reset_password.html.haml
276
+ - app/views/concen/grid_files/_form.html.erb
277
+ - app/views/concen/grid_files/edit.html.erb
278
+ - app/views/concen/pages/_file_list.erb
279
+ - app/views/concen/pages/_files.erb
280
+ - app/views/concen/pages/_form.html.erb
281
+ - app/views/concen/pages/_nested_list.html.erb
282
+ - app/views/concen/pages/edit.html.erb
283
+ - app/views/concen/pages/index.html.erb
284
+ - app/views/concen/pages/new.html.erb
285
+ - app/views/concen/performances/_runtimes.html.erb
286
+ - app/views/concen/performances/show.html.erb
287
+ - app/views/concen/sessions/new.html.erb
288
+ - app/views/concen/statuses/_server.html.erb
289
+ - app/views/concen/statuses/show.html.erb
290
+ - app/views/concen/traffics/_pages.html.erb
291
+ - app/views/concen/traffics/_referrals.html.erb
292
+ - app/views/concen/traffics/show.html.erb
293
+ - app/views/concen/users/_form.html.erb
294
+ - app/views/concen/users/_password_reset.html.erb
295
+ - app/views/concen/users/_settings.html.erb
296
+ - app/views/concen/users/edit.html.erb
297
+ - app/views/concen/users/index.html.erb
298
+ - app/views/concen/users/new.html.erb
299
+ - app/views/concen/users/new_invite.html.erb
300
+ - app/views/concen/users/new_reset_password.html.erb
245
301
  - app/views/concen/visits/visit_recorder_js.erb
246
- - app/views/layouts/concen/_additional_header_links.haml
247
- - app/views/layouts/concen/_header.html.haml
248
- - app/views/layouts/concen/_iphone.html.haml
249
- - app/views/layouts/concen/application.html.haml
250
- - app/views/layouts/concen/maintenance.html.haml
302
+ - app/views/layouts/concen/_additional_header_links.html.erb
303
+ - app/views/layouts/concen/_header.html.erb
304
+ - app/views/layouts/concen/_iphone.html.erb
305
+ - app/views/layouts/concen/application.html.erb
306
+ - app/views/layouts/concen/maintenance.html.erb
251
307
  - concen.gemspec
252
308
  - config/initializers/assets.rb
253
309
  - config/initializers/notification.rb
@@ -1,15 +0,0 @@
1
- = form_for [@page, @grid_file], :url => concen_page_grid_file_path(@page, @grid_file), :html => {:class => "with-text-editor wide"} do |f|
2
- - if @grid_file.errors.any?
3
- #errorExplanation
4
- %h3= "#{pluralize(@page.errors.count, "error")} prohibited this parent from being saved:"
5
- %ul
6
- - @page.errors.full_messages.each do |msg|
7
- %li= msg
8
- .field.text-editor
9
- .border
10
- #text-editor.wide
11
- = text_area_tag :concen_grid_file_page, @grid_file.read.force_encoding("utf-8"), :class => "text-editor-content hidden"
12
- .actions.flush
13
- = f.submit "Save"
14
- = link_to "Delete", concen_page_grid_file_path(@page, @grid_file), :method => :delete
15
- = link_to "Cancel", edit_concen_page_path(@page)
@@ -1,7 +0,0 @@
1
- - content_for :head_javascripts do
2
- = javascript_include_tag "concen/pages"
3
-
4
- #content
5
- %h1= "Edit #{@grid_file.original_filename}"
6
- .clearfix
7
- = render "form"
@@ -1,7 +0,0 @@
1
- %ul
2
- - files.each_with_index do |file, index|
3
- %li
4
- = link_to "#{file.original_filename} (#{number_to_human_size(file.size)})", file.url(root_url), :class => "filename", "data-path" => file.path
5
- - if file.text?
6
- = link_to "Edit", edit_concen_page_grid_file_path(file.page, file)
7
- = link_to "Delete", concen_page_grid_file_path(file.page, file), :class => "delete"
@@ -1,24 +0,0 @@
1
- .files
2
- .stylesheets
3
- %h3
4
- %span Stylesheets
5
- = link_to "New", concen_page_grid_files_path(@page, :file_type => "css"), :class => "link-button new-file"
6
- - if @page.stylesheets.any?
7
- = render :partial => "concen/pages/file_list", :locals => {:files => @page.stylesheets}
8
-
9
- .javascripts
10
- %h3
11
- %span JavaScripts
12
- = link_to "New", concen_page_grid_files_path(@page, :file_type => "js"), :class => "link-button new-file"
13
- - if @page.javascripts.any?
14
- = render :partial => "concen/pages/file_list", :locals => {:files => @page.javascripts}
15
-
16
- - if @page.images.any?
17
- .images
18
- %h3 Images
19
- = render :partial => "concen/pages/file_list", :locals => {:files => @page.images}
20
-
21
- - if @page.others.any?
22
- .others
23
- %h3 Others
24
- = render :partial => "concen/pages/file_list", :locals => {:files => @page.others}
@@ -1,17 +0,0 @@
1
- = form_for @page, {:html => {:class => "with-text-editor #{'wide' if !@page.persisted?}"}} do |f|
2
- - if @page.errors.any?
3
- #errorExplanation
4
- %h3= "#{pluralize(@page.errors.count, "error")} prohibited this parent from being saved:"
5
- %ul
6
- - @page.errors.full_messages.each do |msg|
7
- %li= msg
8
- .field.text-editor
9
- .border
10
- #text-editor
11
- = f.text_area :raw_text, :class => "text-editor-content hidden"
12
- = f.hidden_field :parent_id
13
- .actions.flush
14
- = f.submit "Save"
15
- - if @page.persisted?
16
- = link_to "Delete", concen_page_path(@page), :method => :delete
17
- = link_to "Cancel", concen_pages_path
@@ -1,15 +0,0 @@
1
- - if root && page.level == 0
2
- - children = [page]
3
- - else
4
- - children = Concen::Page.where(:parent_id => page.id).asc(:position)
5
- %ul{:class => children.first.level == 0 && "pages", :data => {:level => children.first.level}}
6
- - for child in children
7
- %li{:data => {:id => "page-#{child.id}"}}
8
- %p{:class => "#{'author' if child.authors_as_user.map(&:_id).include? current_concen_user.id}"}
9
- %span.handle
10
- = link_to child.title, edit_concen_page_path(child), :class => "title"
11
- = link_to "Add", new_concen_page_path(:parent_id => child.id), :class => "link-button hidden"
12
- = link_to "Edit", edit_concen_page_path(child), :class => "link-button hidden"
13
- = link_to "Delete", concen_page_path(child), :method => :delete, :confirm => "Are you sure?", :class => "link-button hidden"
14
- - if Concen::Page.where(:parent_id => child.id).count > 0
15
- = render :partial => "nested_list", :locals => {:page => child, :root => false}