tawork 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +7 -0
  2. data/.DS_Store +0 -0
  3. data/.gitignore +16 -0
  4. data/Gemfile +91 -0
  5. data/Gemfile.lock +295 -0
  6. data/MIT-LICENSE +20 -0
  7. data/Procfile +2 -0
  8. data/README.md +1 -0
  9. data/Rakefile +6 -0
  10. data/app/assets/images/.keep +0 -0
  11. data/app/assets/javascripts/application.js +31 -0
  12. data/app/assets/javascripts/backbone/models/.gitkeep +0 -0
  13. data/app/assets/javascripts/backbone/routers/.gitkeep +0 -0
  14. data/app/assets/javascripts/backbone/tawork.js.coffee +11 -0
  15. data/app/assets/javascripts/backbone/templates/.gitkeep +0 -0
  16. data/app/assets/javascripts/backbone/views/.gitkeep +0 -0
  17. data/app/assets/javascripts/backbone/views/page.js.coffee +75 -0
  18. data/app/assets/javascripts/backbone/views/ticket.js.coffee +110 -0
  19. data/app/assets/javascripts/backbone/views/tree_node_page.js.coffee +16 -0
  20. data/app/assets/javascripts/backbone/views/tree_node_ticket.js.coffee +14 -0
  21. data/app/assets/javascripts/wiki/pages.js.coffee +3 -0
  22. data/app/assets/stylesheets/application.css +22 -0
  23. data/app/assets/stylesheets/bootstrap_and_overrides.sass +208 -0
  24. data/app/assets/stylesheets/diff.css +14 -0
  25. data/app/assets/stylesheets/wiki/pages.css.scss +3 -0
  26. data/app/controllers/application_controller.rb +15 -0
  27. data/app/controllers/assignments_controller.rb +30 -0
  28. data/app/controllers/attachments_controller.rb +10 -0
  29. data/app/controllers/comments_controller.rb +24 -0
  30. data/app/controllers/concerns/.keep +0 -0
  31. data/app/controllers/home_controller.rb +7 -0
  32. data/app/controllers/projects_controller.rb +31 -0
  33. data/app/controllers/search_controller.rb +49 -0
  34. data/app/controllers/sink_controller.rb +10 -0
  35. data/app/controllers/tickets_controller.rb +147 -0
  36. data/app/controllers/users/omniauth_callbacks_controller.rb +23 -0
  37. data/app/controllers/wiki/pages_controller.rb +115 -0
  38. data/app/controllers/wiki/spaces_controller.rb +37 -0
  39. data/app/helpers/application_helper.rb +20 -0
  40. data/app/helpers/wiki/pages_helper.rb +2 -0
  41. data/app/inputs/fake_input.rb +6 -0
  42. data/app/mailers/.keep +0 -0
  43. data/app/models/.keep +0 -0
  44. data/app/models/assignment.rb +5 -0
  45. data/app/models/attachment.rb +54 -0
  46. data/app/models/bug.rb +2 -0
  47. data/app/models/comment.rb +6 -0
  48. data/app/models/concerns/.keep +0 -0
  49. data/app/models/page.rb +68 -0
  50. data/app/models/project.rb +2 -0
  51. data/app/models/space.rb +2 -0
  52. data/app/models/story.rb +29 -0
  53. data/app/models/story_detail.rb +3 -0
  54. data/app/models/task.rb +2 -0
  55. data/app/models/ticket.rb +127 -0
  56. data/app/models/user.rb +36 -0
  57. data/app/models/user_verifier.rb +2 -0
  58. data/app/views/comments/_comment.html.haml +6 -0
  59. data/app/views/comments/_form.html.haml +4 -0
  60. data/app/views/comments/create.js.coffee +7 -0
  61. data/app/views/devise/confirmations/new.html.erb +12 -0
  62. data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
  63. data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
  64. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  65. data/app/views/devise/passwords/edit.html.erb +16 -0
  66. data/app/views/devise/passwords/new.html.erb +12 -0
  67. data/app/views/devise/registrations/edit.html.erb +29 -0
  68. data/app/views/devise/registrations/new.html.erb +18 -0
  69. data/app/views/devise/sessions/new.html.erb +17 -0
  70. data/app/views/devise/shared/_links.erb +25 -0
  71. data/app/views/devise/unlocks/new.html.erb +12 -0
  72. data/app/views/home/index.html.haml +4 -0
  73. data/app/views/layouts/_activity_wrapper.html.haml +17 -0
  74. data/app/views/layouts/_nav_header.html.haml +26 -0
  75. data/app/views/layouts/_spaces.html.haml +34 -0
  76. data/app/views/layouts/application.html.haml +39 -0
  77. data/app/views/layouts/minimal.html.haml +22 -0
  78. data/app/views/projects/index.html.haml +16 -0
  79. data/app/views/projects/new.html.haml +6 -0
  80. data/app/views/public_activity/ticket/_assignment.html.haml +14 -0
  81. data/app/views/public_activity/ticket/_create_comment.html.haml +10 -0
  82. data/app/views/public_activity/ticket/_created.html.haml +3 -0
  83. data/app/views/public_activity/ticket/_reorder.html.haml +2 -0
  84. data/app/views/public_activity/ticket/_state_change.html.haml +2 -0
  85. data/app/views/public_activity/ticket/_update_details.html.haml +13 -0
  86. data/app/views/tickets/_activity.html.haml +3 -0
  87. data/app/views/tickets/_breadcrumb.html.haml +7 -0
  88. data/app/views/tickets/_bug_form.html.haml +1 -0
  89. data/app/views/tickets/_events_dropdown.html.haml +4 -0
  90. data/app/views/tickets/_form.html.haml +28 -0
  91. data/app/views/tickets/_project_form.html.haml +1 -0
  92. data/app/views/tickets/_story_form.html.haml +15 -0
  93. data/app/views/tickets/_task_form.html.haml +8 -0
  94. data/app/views/tickets/_tickets_listing.html.haml +5 -0
  95. data/app/views/tickets/_title_and_description.html.haml +8 -0
  96. data/app/views/tickets/_tree_node.html.haml +28 -0
  97. data/app/views/tickets/assignment.js.coffee +3 -0
  98. data/app/views/tickets/create.js.coffee +7 -0
  99. data/app/views/tickets/new.html.haml +1 -0
  100. data/app/views/tickets/show.html.haml +64 -0
  101. data/app/views/tickets/trigger_event.js.coffee +12 -0
  102. data/app/views/tickets/update.js.coffee +12 -0
  103. data/app/views/wiki/pages/_attachment.html.haml +5 -0
  104. data/app/views/wiki/pages/_attachments.html.haml +22 -0
  105. data/app/views/wiki/pages/_breadcrumb.html.haml +9 -0
  106. data/app/views/wiki/pages/_child_menu.html.haml +9 -0
  107. data/app/views/wiki/pages/_display.html.haml +138 -0
  108. data/app/views/wiki/pages/_page_header.html.haml +13 -0
  109. data/app/views/wiki/pages/_subpages_dropdown.html.haml +6 -0
  110. data/app/views/wiki/pages/_subtree.html.haml +7 -0
  111. data/app/views/wiki/pages/_tree_node.html.haml +21 -0
  112. data/app/views/wiki/pages/attach.js.coffee +2 -0
  113. data/app/views/wiki/pages/combined.html.haml +8 -0
  114. data/app/views/wiki/pages/create.js.coffee +5 -0
  115. data/app/views/wiki/pages/edit.html.haml +2 -0
  116. data/app/views/wiki/pages/history.html.haml +13 -0
  117. data/app/views/wiki/pages/index.html.haml +2 -0
  118. data/app/views/wiki/pages/new.html.haml +13 -0
  119. data/app/views/wiki/pages/show.html.haml +14 -0
  120. data/app/views/wiki/pages/update.html.haml +2 -0
  121. data/app/views/wiki/spaces/_page_list_item.html.haml +11 -0
  122. data/app/views/wiki/spaces/_space_list.html.haml +4 -0
  123. data/app/views/wiki/spaces/new.html.haml +5 -0
  124. data/app/views/wiki/spaces/space_list.html.haml +1 -0
  125. data/bin/bundle +3 -0
  126. data/bin/rails +4 -0
  127. data/bin/rake +4 -0
  128. data/config/application.rb +30 -0
  129. data/config/boot.rb +4 -0
  130. data/config/database.yml +39 -0
  131. data/config/environment.rb +5 -0
  132. data/config/environments/development.rb +35 -0
  133. data/config/environments/production.rb +80 -0
  134. data/config/environments/test.rb +36 -0
  135. data/config/initializers/backtrace_silencers.rb +7 -0
  136. data/config/initializers/config.rb +4 -0
  137. data/config/initializers/devise.rb +257 -0
  138. data/config/initializers/elasticsearch.rb +9 -0
  139. data/config/initializers/filter_parameter_logging.rb +4 -0
  140. data/config/initializers/gollum.rb +31 -0
  141. data/config/initializers/haml_gfm.rb +66 -0
  142. data/config/initializers/inflections.rb +16 -0
  143. data/config/initializers/mime_types.rb +5 -0
  144. data/config/initializers/secret_token.rb +12 -0
  145. data/config/initializers/session_store.rb +3 -0
  146. data/config/initializers/simple_form.rb +145 -0
  147. data/config/initializers/simple_form_bootstrap.rb +73 -0
  148. data/config/initializers/wrap_parameters.rb +14 -0
  149. data/config/locales/devise.en.yml +59 -0
  150. data/config/locales/en.yml +23 -0
  151. data/config/locales/simple_form.en.yml +26 -0
  152. data/config/routes.rb +101 -0
  153. data/config/tinymce.yml +10 -0
  154. data/config.ru +4 -0
  155. data/db/migrate/20131209041251_create_tickets.rb +13 -0
  156. data/db/migrate/20131210041050_devise_create_users.rb +42 -0
  157. data/db/migrate/20131210043014_add_username_to_users.rb +5 -0
  158. data/db/migrate/20131210045348_add_creator_to_ticket.rb +5 -0
  159. data/db/migrate/20131211034104_create_comments.rb +11 -0
  160. data/db/migrate/20131212073014_create_assignments.rb +12 -0
  161. data/db/migrate/20131215220825_add_position_to_ticket.rb +5 -0
  162. data/db/migrate/20131216044331_create_story_details.rb +12 -0
  163. data/db/migrate/20131218060557_create_activities.rb +23 -0
  164. data/db/migrate/20140109235844_create_pages.rb +14 -0
  165. data/db/migrate/20140112004346_create_attachments.rb +13 -0
  166. data/db/migrate/20140120030547_add_name_to_users.rb +5 -0
  167. data/db/schema.rb +125 -0
  168. data/db/seeds.rb +7 -0
  169. data/init.rb +1 -0
  170. data/lib/assets/.keep +0 -0
  171. data/lib/tasks/.keep +0 -0
  172. data/lib/tawork/engine.rb +13 -0
  173. data/lib/tawork/version.rb +3 -0
  174. data/lib/tawork.rb +4 -0
  175. data/lib/templates/haml/scaffold/_form.html.haml +10 -0
  176. data/lib/ticket_assignment.rb +25 -0
  177. data/log/.keep +0 -0
  178. data/public/401.html +57 -0
  179. data/public/404.html +58 -0
  180. data/public/422.html +58 -0
  181. data/public/500.html +57 -0
  182. data/public/favicon.ico +0 -0
  183. data/public/robots.txt +5 -0
  184. data/tags +279 -0
  185. data/tawork.gemspec +24 -0
  186. data/vendor/.DS_Store +0 -0
  187. data/vendor/assets/.DS_Store +0 -0
  188. data/vendor/assets/javascripts/.keep +0 -0
  189. data/vendor/assets/javascripts/bootstrap-tagsinput.js +503 -0
  190. data/vendor/assets/javascripts/bootstrap-tree.js +15 -0
  191. data/vendor/assets/javascripts/bootstrap-typeahead.js +335 -0
  192. data/vendor/assets/javascripts/hallo.js +2949 -0
  193. data/vendor/assets/javascripts/highlight.pack.js +1 -0
  194. data/vendor/assets/javascripts/jquery.autosize.js +250 -0
  195. data/vendor/assets/javascripts/jquery.mjs.nestedSortable.js +613 -0
  196. data/vendor/assets/javascripts/rangy-core.js +94 -0
  197. data/vendor/assets/javascripts/tinymce/mention/plugin.js +358 -0
  198. data/vendor/assets/stylesheets/.keep +0 -0
  199. data/vendor/assets/stylesheets/bootflat-extensions.css +356 -0
  200. data/vendor/assets/stylesheets/bootflat-square.css +69 -0
  201. data/vendor/assets/stylesheets/bootflat.css +1556 -0
  202. data/vendor/assets/stylesheets/bootstrap-tagsinput.css +45 -0
  203. data/vendor/assets/stylesheets/bootstrap-tree.sass +82 -0
  204. data/vendor/assets/stylesheets/highlight/arta.css +160 -0
  205. data/vendor/assets/stylesheets/highlight/ascetic.css +50 -0
  206. data/vendor/assets/stylesheets/highlight/brown_paper.css +105 -0
  207. data/vendor/assets/stylesheets/highlight/brown_papersq.png +0 -0
  208. data/vendor/assets/stylesheets/highlight/dark.css +105 -0
  209. data/vendor/assets/stylesheets/highlight/default.css +153 -0
  210. data/vendor/assets/stylesheets/highlight/docco.css +132 -0
  211. data/vendor/assets/stylesheets/highlight/far.css +113 -0
  212. data/vendor/assets/stylesheets/highlight/foundation.css +133 -0
  213. data/vendor/assets/stylesheets/highlight/github.css +130 -0
  214. data/vendor/assets/stylesheets/highlight/googlecode.css +146 -0
  215. data/vendor/assets/stylesheets/highlight/idea.css +122 -0
  216. data/vendor/assets/stylesheets/highlight/ir_black.css +105 -0
  217. data/vendor/assets/stylesheets/highlight/magula.css +123 -0
  218. data/vendor/assets/stylesheets/highlight/mono-blue.css +62 -0
  219. data/vendor/assets/stylesheets/highlight/monokai.css +127 -0
  220. data/vendor/assets/stylesheets/highlight/monokai_sublime.css +102 -0
  221. data/vendor/assets/stylesheets/highlight/obsidian.css +154 -0
  222. data/vendor/assets/stylesheets/highlight/pojoaque.css +105 -0
  223. data/vendor/assets/stylesheets/highlight/pojoaque.jpg +0 -0
  224. data/vendor/assets/stylesheets/highlight/railscasts.css +182 -0
  225. data/vendor/assets/stylesheets/highlight/rainbow.css +115 -0
  226. data/vendor/assets/stylesheets/highlight/school_book.css +113 -0
  227. data/vendor/assets/stylesheets/highlight/school_book.png +0 -0
  228. data/vendor/assets/stylesheets/highlight/solarized_dark.css +92 -0
  229. data/vendor/assets/stylesheets/highlight/solarized_light.css +92 -0
  230. data/vendor/assets/stylesheets/highlight/sunburst.css +160 -0
  231. data/vendor/assets/stylesheets/highlight/tomorrow-night-blue.css +52 -0
  232. data/vendor/assets/stylesheets/highlight/tomorrow-night-bright.css +51 -0
  233. data/vendor/assets/stylesheets/highlight/tomorrow-night-eighties.css +51 -0
  234. data/vendor/assets/stylesheets/highlight/tomorrow-night.css +52 -0
  235. data/vendor/assets/stylesheets/highlight/tomorrow.css +49 -0
  236. data/vendor/assets/stylesheets/highlight/vs.css +89 -0
  237. data/vendor/assets/stylesheets/highlight/xcode.css +157 -0
  238. data/vendor/assets/stylesheets/highlight/zenburn.css +117 -0
  239. metadata +299 -0
@@ -0,0 +1,92 @@
1
+ /*
2
+
3
+ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4
+
5
+ */
6
+
7
+ pre code {
8
+ display: block; padding: 0.5em;
9
+ background: #002b36; color: #839496;
10
+ }
11
+
12
+ pre .comment,
13
+ pre .template_comment,
14
+ pre .diff .header,
15
+ pre .doctype,
16
+ pre .pi,
17
+ pre .lisp .string,
18
+ pre .javadoc {
19
+ color: #586e75;
20
+ font-style: italic;
21
+ }
22
+
23
+ pre .keyword,
24
+ pre .winutils,
25
+ pre .method,
26
+ pre .addition,
27
+ pre .css .tag,
28
+ pre .request,
29
+ pre .status,
30
+ pre .nginx .title {
31
+ color: #859900;
32
+ }
33
+
34
+ pre .number,
35
+ pre .command,
36
+ pre .string,
37
+ pre .tag .value,
38
+ pre .rules .value,
39
+ pre .phpdoc,
40
+ pre .tex .formula,
41
+ pre .regexp,
42
+ pre .hexcolor {
43
+ color: #2aa198;
44
+ }
45
+
46
+ pre .title,
47
+ pre .localvars,
48
+ pre .chunk,
49
+ pre .decorator,
50
+ pre .built_in,
51
+ pre .identifier,
52
+ pre .vhdl .literal,
53
+ pre .id,
54
+ pre .css .function {
55
+ color: #268bd2;
56
+ }
57
+
58
+ pre .attribute,
59
+ pre .variable,
60
+ pre .lisp .body,
61
+ pre .smalltalk .number,
62
+ pre .constant,
63
+ pre .class .title,
64
+ pre .parent,
65
+ pre .haskell .type {
66
+ color: #b58900;
67
+ }
68
+
69
+ pre .preprocessor,
70
+ pre .preprocessor .keyword,
71
+ pre .pragma,
72
+ pre .shebang,
73
+ pre .symbol,
74
+ pre .symbol .string,
75
+ pre .diff .change,
76
+ pre .special,
77
+ pre .attr_selector,
78
+ pre .important,
79
+ pre .subst,
80
+ pre .cdata,
81
+ pre .clojure .title,
82
+ pre .css .pseudo {
83
+ color: #cb4b16;
84
+ }
85
+
86
+ pre .deletion {
87
+ color: #dc322f;
88
+ }
89
+
90
+ pre .tex .formula {
91
+ background: #073642;
92
+ }
@@ -0,0 +1,92 @@
1
+ /*
2
+
3
+ Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4
+
5
+ */
6
+
7
+ pre code {
8
+ display: block; padding: 0.5em;
9
+ background: #fdf6e3; color: #657b83;
10
+ }
11
+
12
+ pre .comment,
13
+ pre .template_comment,
14
+ pre .diff .header,
15
+ pre .doctype,
16
+ pre .pi,
17
+ pre .lisp .string,
18
+ pre .javadoc {
19
+ color: #93a1a1;
20
+ font-style: italic;
21
+ }
22
+
23
+ pre .keyword,
24
+ pre .winutils,
25
+ pre .method,
26
+ pre .addition,
27
+ pre .css .tag,
28
+ pre .request,
29
+ pre .status,
30
+ pre .nginx .title {
31
+ color: #859900;
32
+ }
33
+
34
+ pre .number,
35
+ pre .command,
36
+ pre .string,
37
+ pre .tag .value,
38
+ pre .rules .value,
39
+ pre .phpdoc,
40
+ pre .tex .formula,
41
+ pre .regexp,
42
+ pre .hexcolor {
43
+ color: #2aa198;
44
+ }
45
+
46
+ pre .title,
47
+ pre .localvars,
48
+ pre .chunk,
49
+ pre .decorator,
50
+ pre .built_in,
51
+ pre .identifier,
52
+ pre .vhdl .literal,
53
+ pre .id,
54
+ pre .css .function {
55
+ color: #268bd2;
56
+ }
57
+
58
+ pre .attribute,
59
+ pre .variable,
60
+ pre .lisp .body,
61
+ pre .smalltalk .number,
62
+ pre .constant,
63
+ pre .class .title,
64
+ pre .parent,
65
+ pre .haskell .type {
66
+ color: #b58900;
67
+ }
68
+
69
+ pre .preprocessor,
70
+ pre .preprocessor .keyword,
71
+ pre .pragma,
72
+ pre .shebang,
73
+ pre .symbol,
74
+ pre .symbol .string,
75
+ pre .diff .change,
76
+ pre .special,
77
+ pre .attr_selector,
78
+ pre .important,
79
+ pre .subst,
80
+ pre .cdata,
81
+ pre .clojure .title,
82
+ pre .css .pseudo {
83
+ color: #cb4b16;
84
+ }
85
+
86
+ pre .deletion {
87
+ color: #dc322f;
88
+ }
89
+
90
+ pre .tex .formula {
91
+ background: #eee8d5;
92
+ }
@@ -0,0 +1,160 @@
1
+ /*
2
+
3
+ Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
4
+
5
+ */
6
+
7
+ pre code {
8
+ display: block; padding: 0.5em;
9
+ background: #000; color: #f8f8f8;
10
+ }
11
+
12
+ pre .comment,
13
+ pre .template_comment,
14
+ pre .javadoc {
15
+ color: #aeaeae;
16
+ font-style: italic;
17
+ }
18
+
19
+ pre .keyword,
20
+ pre .ruby .function .keyword,
21
+ pre .request,
22
+ pre .status,
23
+ pre .nginx .title {
24
+ color: #E28964;
25
+ }
26
+
27
+ pre .function .keyword,
28
+ pre .sub .keyword,
29
+ pre .method,
30
+ pre .list .title {
31
+ color: #99CF50;
32
+ }
33
+
34
+ pre .string,
35
+ pre .tag .value,
36
+ pre .cdata,
37
+ pre .filter .argument,
38
+ pre .attr_selector,
39
+ pre .apache .cbracket,
40
+ pre .date,
41
+ pre .tex .command,
42
+ pre .coffeescript .attribute {
43
+ color: #65B042;
44
+ }
45
+
46
+ pre .subst {
47
+ color: #DAEFA3;
48
+ }
49
+
50
+ pre .regexp {
51
+ color: #E9C062;
52
+ }
53
+
54
+ pre .title,
55
+ pre .sub .identifier,
56
+ pre .pi,
57
+ pre .tag,
58
+ pre .tag .keyword,
59
+ pre .decorator,
60
+ pre .shebang,
61
+ pre .prompt {
62
+ color: #89BDFF;
63
+ }
64
+
65
+ pre .class .title,
66
+ pre .haskell .type,
67
+ pre .smalltalk .class,
68
+ pre .javadoctag,
69
+ pre .yardoctag,
70
+ pre .phpdoc {
71
+ text-decoration: underline;
72
+ }
73
+
74
+ pre .symbol,
75
+ pre .ruby .symbol .string,
76
+ pre .number {
77
+ color: #3387CC;
78
+ }
79
+
80
+ pre .params,
81
+ pre .variable,
82
+ pre .clojure .attribute {
83
+ color: #3E87E3;
84
+ }
85
+
86
+ pre .css .tag,
87
+ pre .rules .property,
88
+ pre .pseudo,
89
+ pre .tex .special {
90
+ color: #CDA869;
91
+ }
92
+
93
+ pre .css .class {
94
+ color: #9B703F;
95
+ }
96
+
97
+ pre .rules .keyword {
98
+ color: #C5AF75;
99
+ }
100
+
101
+ pre .rules .value {
102
+ color: #CF6A4C;
103
+ }
104
+
105
+ pre .css .id {
106
+ color: #8B98AB;
107
+ }
108
+
109
+ pre .annotation,
110
+ pre .apache .sqbracket,
111
+ pre .nginx .built_in {
112
+ color: #9B859D;
113
+ }
114
+
115
+ pre .preprocessor,
116
+ pre .pragma {
117
+ color: #8996A8;
118
+ }
119
+
120
+ pre .hexcolor,
121
+ pre .css .value .number {
122
+ color: #DD7B3B;
123
+ }
124
+
125
+ pre .css .function {
126
+ color: #DAD085;
127
+ }
128
+
129
+ pre .diff .header,
130
+ pre .chunk,
131
+ pre .tex .formula {
132
+ background-color: #0E2231;
133
+ color: #F8F8F8;
134
+ font-style: italic;
135
+ }
136
+
137
+ pre .diff .change {
138
+ background-color: #4A410D;
139
+ color: #F8F8F8;
140
+ }
141
+
142
+ pre .addition {
143
+ background-color: #253B22;
144
+ color: #F8F8F8;
145
+ }
146
+
147
+ pre .deletion {
148
+ background-color: #420E09;
149
+ color: #F8F8F8;
150
+ }
151
+
152
+ pre .coffeescript .javascript,
153
+ pre .javascript .xml,
154
+ pre .tex .formula,
155
+ pre .xml .javascript,
156
+ pre .xml .vbscript,
157
+ pre .xml .css,
158
+ pre .xml .cdata {
159
+ opacity: 0.5;
160
+ }
@@ -0,0 +1,52 @@
1
+ /* Tomorrow Night Blue Theme */
2
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
+ .tomorrow-comment, pre .comment, pre .title {
6
+ color: #7285b7;
7
+ }
8
+
9
+ .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
10
+ color: #ff9da4;
11
+ }
12
+
13
+ .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
14
+ color: #ffc58f;
15
+ }
16
+
17
+ .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
18
+ color: #ffeead;
19
+ }
20
+
21
+ .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
22
+ color: #d1f1a9;
23
+ }
24
+
25
+ .tomorrow-aqua, pre .css .hexcolor {
26
+ color: #99ffff;
27
+ }
28
+
29
+ .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
30
+ color: #bbdaff;
31
+ }
32
+
33
+ .tomorrow-purple, pre .keyword, pre .javascript .function {
34
+ color: #ebbbff;
35
+ }
36
+
37
+ pre code {
38
+ display: block;
39
+ background: #002451;
40
+ color: white;
41
+ padding: 0.5em;
42
+ }
43
+
44
+ pre .coffeescript .javascript,
45
+ pre .javascript .xml,
46
+ pre .tex .formula,
47
+ pre .xml .javascript,
48
+ pre .xml .vbscript,
49
+ pre .xml .css,
50
+ pre .xml .cdata {
51
+ opacity: 0.5;
52
+ }
@@ -0,0 +1,51 @@
1
+ /* Tomorrow Night Bright Theme */
2
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+ .tomorrow-comment, pre .comment, pre .title {
5
+ color: #969896;
6
+ }
7
+
8
+ .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
9
+ color: #d54e53;
10
+ }
11
+
12
+ .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
13
+ color: #e78c45;
14
+ }
15
+
16
+ .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
17
+ color: #e7c547;
18
+ }
19
+
20
+ .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
21
+ color: #b9ca4a;
22
+ }
23
+
24
+ .tomorrow-aqua, pre .css .hexcolor {
25
+ color: #70c0b1;
26
+ }
27
+
28
+ .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
29
+ color: #7aa6da;
30
+ }
31
+
32
+ .tomorrow-purple, pre .keyword, pre .javascript .function {
33
+ color: #c397d8;
34
+ }
35
+
36
+ pre code {
37
+ display: block;
38
+ background: black;
39
+ color: #eaeaea;
40
+ padding: 0.5em;
41
+ }
42
+
43
+ pre .coffeescript .javascript,
44
+ pre .javascript .xml,
45
+ pre .tex .formula,
46
+ pre .xml .javascript,
47
+ pre .xml .vbscript,
48
+ pre .xml .css,
49
+ pre .xml .cdata {
50
+ opacity: 0.5;
51
+ }
@@ -0,0 +1,51 @@
1
+ /* Tomorrow Night Eighties Theme */
2
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
3
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
4
+ .tomorrow-comment, pre .comment, pre .title {
5
+ color: #999999;
6
+ }
7
+
8
+ .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
9
+ color: #f2777a;
10
+ }
11
+
12
+ .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
13
+ color: #f99157;
14
+ }
15
+
16
+ .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
17
+ color: #ffcc66;
18
+ }
19
+
20
+ .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
21
+ color: #99cc99;
22
+ }
23
+
24
+ .tomorrow-aqua, pre .css .hexcolor {
25
+ color: #66cccc;
26
+ }
27
+
28
+ .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
29
+ color: #6699cc;
30
+ }
31
+
32
+ .tomorrow-purple, pre .keyword, pre .javascript .function {
33
+ color: #cc99cc;
34
+ }
35
+
36
+ pre code {
37
+ display: block;
38
+ background: #2d2d2d;
39
+ color: #cccccc;
40
+ padding: 0.5em;
41
+ }
42
+
43
+ pre .coffeescript .javascript,
44
+ pre .javascript .xml,
45
+ pre .tex .formula,
46
+ pre .xml .javascript,
47
+ pre .xml .vbscript,
48
+ pre .xml .css,
49
+ pre .xml .cdata {
50
+ opacity: 0.5;
51
+ }
@@ -0,0 +1,52 @@
1
+ /* Tomorrow Night Theme */
2
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
3
+ /* Original theme - https://github.com/chriskempson/tomorrow-theme */
4
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
5
+ .tomorrow-comment, pre .comment, pre .title {
6
+ color: #969896;
7
+ }
8
+
9
+ .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
10
+ color: #cc6666;
11
+ }
12
+
13
+ .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
14
+ color: #de935f;
15
+ }
16
+
17
+ .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
18
+ color: #f0c674;
19
+ }
20
+
21
+ .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
22
+ color: #b5bd68;
23
+ }
24
+
25
+ .tomorrow-aqua, pre .css .hexcolor {
26
+ color: #8abeb7;
27
+ }
28
+
29
+ .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
30
+ color: #81a2be;
31
+ }
32
+
33
+ .tomorrow-purple, pre .keyword, pre .javascript .function {
34
+ color: #b294bb;
35
+ }
36
+
37
+ pre code {
38
+ display: block;
39
+ background: #1d1f21;
40
+ color: #c5c8c6;
41
+ padding: 0.5em;
42
+ }
43
+
44
+ pre .coffeescript .javascript,
45
+ pre .javascript .xml,
46
+ pre .tex .formula,
47
+ pre .xml .javascript,
48
+ pre .xml .vbscript,
49
+ pre .xml .css,
50
+ pre .xml .cdata {
51
+ opacity: 0.5;
52
+ }
@@ -0,0 +1,49 @@
1
+ /* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
2
+ .tomorrow-comment, pre .comment, pre .title {
3
+ color: #8e908c;
4
+ }
5
+
6
+ .tomorrow-red, pre .variable, pre .attribute, pre .tag, pre .regexp, pre .ruby .constant, pre .xml .tag .title, pre .xml .pi, pre .xml .doctype, pre .html .doctype, pre .css .id, pre .css .class, pre .css .pseudo {
7
+ color: #c82829;
8
+ }
9
+
10
+ .tomorrow-orange, pre .number, pre .preprocessor, pre .pragma, pre .built_in, pre .literal, pre .params, pre .constant {
11
+ color: #f5871f;
12
+ }
13
+
14
+ .tomorrow-yellow, pre .ruby .class .title, pre .css .rules .attribute {
15
+ color: #eab700;
16
+ }
17
+
18
+ .tomorrow-green, pre .string, pre .value, pre .inheritance, pre .header, pre .ruby .symbol, pre .xml .cdata {
19
+ color: #718c00;
20
+ }
21
+
22
+ .tomorrow-aqua, pre .css .hexcolor {
23
+ color: #3e999f;
24
+ }
25
+
26
+ .tomorrow-blue, pre .function, pre .python .decorator, pre .python .title, pre .ruby .function .title, pre .ruby .title .keyword, pre .perl .sub, pre .javascript .title, pre .coffeescript .title {
27
+ color: #4271ae;
28
+ }
29
+
30
+ .tomorrow-purple, pre .keyword, pre .javascript .function {
31
+ color: #8959a8;
32
+ }
33
+
34
+ pre code {
35
+ display: block;
36
+ background: white;
37
+ color: #4d4d4c;
38
+ padding: 0.5em;
39
+ }
40
+
41
+ pre .coffeescript .javascript,
42
+ pre .javascript .xml,
43
+ pre .tex .formula,
44
+ pre .xml .javascript,
45
+ pre .xml .vbscript,
46
+ pre .xml .css,
47
+ pre .xml .cdata {
48
+ opacity: 0.5;
49
+ }
@@ -0,0 +1,89 @@
1
+ /*
2
+
3
+ Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
4
+
5
+ */
6
+ pre code {
7
+ display: block; padding: 0.5em;
8
+ background: white; color: black;
9
+ }
10
+
11
+ pre .comment,
12
+ pre .annotation,
13
+ pre .template_comment,
14
+ pre .diff .header,
15
+ pre .chunk,
16
+ pre .apache .cbracket {
17
+ color: rgb(0, 128, 0);
18
+ }
19
+
20
+ pre .keyword,
21
+ pre .id,
22
+ pre .built_in,
23
+ pre .smalltalk .class,
24
+ pre .winutils,
25
+ pre .bash .variable,
26
+ pre .tex .command,
27
+ pre .request,
28
+ pre .status,
29
+ pre .nginx .title,
30
+ pre .xml .tag,
31
+ pre .xml .tag .value {
32
+ color: rgb(0, 0, 255);
33
+ }
34
+
35
+ pre .string,
36
+ pre .title,
37
+ pre .parent,
38
+ pre .tag .value,
39
+ pre .rules .value,
40
+ pre .rules .value .number,
41
+ pre .ruby .symbol,
42
+ pre .ruby .symbol .string,
43
+ pre .aggregate,
44
+ pre .template_tag,
45
+ pre .django .variable,
46
+ pre .addition,
47
+ pre .flow,
48
+ pre .stream,
49
+ pre .apache .tag,
50
+ pre .date,
51
+ pre .tex .formula,
52
+ pre .coffeescript .attribute {
53
+ color: rgb(163, 21, 21);
54
+ }
55
+
56
+ pre .ruby .string,
57
+ pre .decorator,
58
+ pre .filter .argument,
59
+ pre .localvars,
60
+ pre .array,
61
+ pre .attr_selector,
62
+ pre .pseudo,
63
+ pre .pi,
64
+ pre .doctype,
65
+ pre .deletion,
66
+ pre .envvar,
67
+ pre .shebang,
68
+ pre .preprocessor,
69
+ pre .pragma,
70
+ pre .userType,
71
+ pre .apache .sqbracket,
72
+ pre .nginx .built_in,
73
+ pre .tex .special,
74
+ pre .prompt {
75
+ color: rgb(43, 145, 175);
76
+ }
77
+
78
+ pre .phpdoc,
79
+ pre .javadoc,
80
+ pre .xmlDocTag {
81
+ color: rgb(128, 128, 128);
82
+ }
83
+
84
+ pre .vhdl .typename { font-weight: bold; }
85
+ pre .vhdl .string { color: #666666; }
86
+ pre .vhdl .literal { color: rgb(163, 21, 21); }
87
+ pre .vhdl .attribute { color: #00B0E8; }
88
+
89
+ pre .xml .attribute { color: rgb(255, 0, 0); }