dependabot-linguist 0.0.1 → 0.212.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (223) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +25 -3
  3. data/Gemfile +0 -9
  4. data/Gemfile.lock +162 -5
  5. data/LICENSE +674 -1
  6. data/{LICENSE.Nonstandard → LICENSE.dependabot-core} +0 -0
  7. data/Makefile +8 -1
  8. data/README.md +39 -5
  9. data/demo_script.rb +50 -0
  10. data/dependabot-linguist.gemspec +16 -5
  11. data/devlog.md +186 -0
  12. data/exe/dependabot-linguist +145 -0
  13. data/lib/dependabot/linguist/dependabot_file_validator.rb +190 -0
  14. data/lib/dependabot/linguist/dependabot_patch.rb +8 -0
  15. data/lib/dependabot/linguist/file_fetchers/base.rb +48 -0
  16. data/lib/dependabot/linguist/file_fetchers/git_submodules.rb +63 -0
  17. data/lib/dependabot/linguist/file_fetchers/go_modules.rb +41 -0
  18. data/lib/dependabot/linguist/language.rb +62 -0
  19. data/lib/dependabot/linguist/languages_to_ecosystems/contexts.rb +234 -0
  20. data/lib/dependabot/linguist/languages_to_ecosystems/contexts_applied.rb +36 -0
  21. data/lib/dependabot/linguist/languages_to_ecosystems/languages.yaml +7950 -0
  22. data/lib/dependabot/linguist/languages_to_ecosystems/main.rb +55 -0
  23. data/lib/dependabot/linguist/languages_to_ecosystems/manager_ecosystem_maps.rb +154 -0
  24. data/lib/dependabot/linguist/languages_to_patch.txt +37 -0
  25. data/lib/dependabot/linguist/linguist_patch.rb +6 -0
  26. data/lib/dependabot/linguist/repository.rb +232 -0
  27. data/lib/dependabot/linguist/version.rb +1 -1
  28. data/lib/dependabot/linguist.rb +5 -2
  29. data/smoke-test/README.md +58 -0
  30. data/smoke-test/bundler/Gemfile +9 -0
  31. data/smoke-test/bundler/Gemfile.lock +47 -0
  32. data/smoke-test/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  33. data/smoke-test/cargo/Cargo.lock +90 -0
  34. data/smoke-test/cargo/Cargo.toml +8 -0
  35. data/smoke-test/composer/composer.json +5 -0
  36. data/smoke-test/composer/composer.lock +72 -0
  37. data/smoke-test/composer/vendor/autoload.php +7 -0
  38. data/smoke-test/composer/vendor/composer/ClassLoader.php +445 -0
  39. data/smoke-test/composer/vendor/composer/LICENSE +21 -0
  40. data/smoke-test/composer/vendor/composer/autoload_classmap.php +13 -0
  41. data/smoke-test/composer/vendor/composer/autoload_namespaces.php +9 -0
  42. data/smoke-test/composer/vendor/composer/autoload_psr4.php +9 -0
  43. data/smoke-test/composer/vendor/composer/autoload_real.php +55 -0
  44. data/smoke-test/composer/vendor/composer/autoload_static.php +23 -0
  45. data/smoke-test/composer/vendor/composer/installed.json +57 -0
  46. data/smoke-test/composer/vendor/phpmailer/phpmailer/.gitignore +3 -0
  47. data/smoke-test/composer/vendor/phpmailer/phpmailer/LICENSE +504 -0
  48. data/smoke-test/composer/vendor/phpmailer/phpmailer/README.md +112 -0
  49. data/smoke-test/composer/vendor/phpmailer/phpmailer/changelog.md +530 -0
  50. data/smoke-test/composer/vendor/phpmailer/phpmailer/class.phpmailer.php +2758 -0
  51. data/smoke-test/composer/vendor/phpmailer/phpmailer/class.pop3.php +417 -0
  52. data/smoke-test/composer/vendor/phpmailer/phpmailer/class.smtp.php +1075 -0
  53. data/smoke-test/composer/vendor/phpmailer/phpmailer/composer.json +32 -0
  54. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/Callback_function_notes.txt +17 -0
  55. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/DomainKeys_notes.txt +55 -0
  56. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/Note_for_SMTP_debugging.txt +23 -0
  57. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/extending.html +148 -0
  58. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/faq.html +67 -0
  59. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/generatedocs.sh +4 -0
  60. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/pop3_article.txt +39 -0
  61. data/smoke-test/composer/vendor/phpmailer/phpmailer/docs/use_gmail.txt +44 -0
  62. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/contents.html +20 -0
  63. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/images/phpmailer.gif +0 -0
  64. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/images/phpmailer_mini.gif +0 -0
  65. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/index.html +50 -0
  66. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_db_smtp_basic.php +58 -0
  67. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_mail_advanced.php +30 -0
  68. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_mail_basic.php +41 -0
  69. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_pop_before_smtp_advanced.php +39 -0
  70. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_pop_before_smtp_basic.php +49 -0
  71. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_sendmail_advanced.php +33 -0
  72. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_sendmail_basic.php +43 -0
  73. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_advanced.php +42 -0
  74. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_advanced_no_auth.php +36 -0
  75. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_basic.php +58 -0
  76. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_basic_no_auth.php +53 -0
  77. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_gmail_advanced.php +42 -0
  78. data/smoke-test/composer/vendor/phpmailer/phpmailer/examples/test_smtp_gmail_basic.php +59 -0
  79. data/smoke-test/composer/vendor/phpmailer/phpmailer/extras/class.html2text.inc +489 -0
  80. data/smoke-test/composer/vendor/phpmailer/phpmailer/extras/htmlfilter.php +861 -0
  81. data/smoke-test/composer/vendor/phpmailer/phpmailer/extras/ntlm_sasl_client.php +185 -0
  82. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php +26 -0
  83. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-br.php +25 -0
  84. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php +25 -0
  85. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php +25 -0
  86. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-cz.php +24 -0
  87. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php +24 -0
  88. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-dk.php +25 -0
  89. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php +25 -0
  90. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php +25 -0
  91. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php +26 -0
  92. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php +26 -0
  93. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-fr.php +24 -0
  94. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-hu.php +24 -0
  95. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php +26 -0
  96. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php +25 -0
  97. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php +24 -0
  98. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-no.php +24 -0
  99. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-pl.php +24 -0
  100. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php +26 -0
  101. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-ru.php +24 -0
  102. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-se.php +25 -0
  103. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-sk.php +25 -0
  104. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php +26 -0
  105. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php +25 -0
  106. data/smoke-test/composer/vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php +25 -0
  107. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/contents.html +10 -0
  108. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/phpmailerTest.php +1084 -0
  109. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/test.png +0 -0
  110. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/test_callback.php +84 -0
  111. data/smoke-test/composer/vendor/phpmailer/phpmailer/test/testemail.php +48 -0
  112. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/LGPLv3.txt +165 -0
  113. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/contents.html +14 -0
  114. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/images/aikido.gif +0 -0
  115. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/images/bkgrnd.gif +0 -0
  116. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/images/phpmailer.gif +0 -0
  117. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/index.php +427 -0
  118. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/clipboard.swf +0 -0
  119. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushBash.js +59 -0
  120. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushCSharp.js +64 -0
  121. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushCpp.js +99 -0
  122. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushCss.js +93 -0
  123. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushDelphi.js +57 -0
  124. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushDiff.js +43 -0
  125. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushGroovy.js +69 -0
  126. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushJScript.js +51 -0
  127. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushJava.js +55 -0
  128. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPerl.js +74 -0
  129. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPhp.js +91 -0
  130. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPlain.js +35 -0
  131. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushPython.js +56 -0
  132. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushRuby.js +57 -0
  133. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushScala.js +53 -0
  134. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushSql.js +68 -0
  135. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushVb.js +58 -0
  136. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shBrushXml.js +71 -0
  137. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shCore.js +30 -0
  138. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/scripts/shLegacy.js +30 -0
  139. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/src/shCore.js +1949 -0
  140. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/src/shLegacy.js +172 -0
  141. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/help.png +0 -0
  142. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/magnifier.png +0 -0
  143. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/page_white_code.png +0 -0
  144. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/page_white_copy.png +0 -0
  145. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/printer.png +0 -0
  146. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shCore.css +321 -0
  147. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeDefault.css +191 -0
  148. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeDjango.css +193 -0
  149. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeEmacs.css +192 -0
  150. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeFadeToGrey.css +193 -0
  151. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeMidnight.css +192 -0
  152. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/shThemeRDark.css +192 -0
  153. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/styles/wrapping.png +0 -0
  154. data/smoke-test/composer/vendor/phpmailer/phpmailer/test_script/test.html +46 -0
  155. data/smoke-test/dependabot-file/no-config/.github/TARGET.yaml +14 -0
  156. data/smoke-test/dependabot-file/no-config/bundler/Gemfile +9 -0
  157. data/smoke-test/dependabot-file/no-config/bundler/Gemfile.lock +47 -0
  158. data/smoke-test/dependabot-file/no-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  159. data/smoke-test/dependabot-file/no-config/cargo/Cargo.lock +90 -0
  160. data/smoke-test/dependabot-file/no-config/cargo/Cargo.toml +8 -0
  161. data/smoke-test/dependabot-file/no-config/composer/composer.json +5 -0
  162. data/smoke-test/dependabot-file/no-config/composer/composer.lock +72 -0
  163. data/smoke-test/dependabot-file/over-config/.github/TARGET.yaml +17 -0
  164. data/smoke-test/dependabot-file/over-config/.github/dependabot.yaml +12 -0
  165. data/smoke-test/dependabot-file/over-config/bundler/Gemfile +9 -0
  166. data/smoke-test/dependabot-file/over-config/bundler/Gemfile.lock +47 -0
  167. data/smoke-test/dependabot-file/over-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  168. data/smoke-test/dependabot-file/over-config/cargo/Cargo.lock +90 -0
  169. data/smoke-test/dependabot-file/over-config/cargo/Cargo.toml +8 -0
  170. data/smoke-test/dependabot-file/over-config/composer/composer.json +5 -0
  171. data/smoke-test/dependabot-file/over-config/composer/composer.lock +72 -0
  172. data/smoke-test/dependabot-file/overer-config/.github/TARGET.yaml +19 -0
  173. data/smoke-test/dependabot-file/overer-config/.github/dependabot.yaml +12 -0
  174. data/smoke-test/dependabot-file/overer-config/bundler/Gemfile +9 -0
  175. data/smoke-test/dependabot-file/overer-config/bundler/Gemfile.lock +47 -0
  176. data/smoke-test/dependabot-file/overer-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  177. data/smoke-test/dependabot-file/overer-config/cargo/Cargo.lock +90 -0
  178. data/smoke-test/dependabot-file/overer-config/cargo/Cargo.toml +8 -0
  179. data/smoke-test/dependabot-file/overer-config/composer/composer.json +5 -0
  180. data/smoke-test/dependabot-file/overer-config/composer/composer.lock +72 -0
  181. data/smoke-test/dependabot-file/partial-config/.github/TARGET.yaml +17 -0
  182. data/smoke-test/dependabot-file/partial-config/.github/dependabot.yaml +7 -0
  183. data/smoke-test/dependabot-file/partial-config/bundler/Gemfile +9 -0
  184. data/smoke-test/dependabot-file/partial-config/bundler/Gemfile.lock +47 -0
  185. data/smoke-test/dependabot-file/partial-config/bundler/dependabot-all-updates-test-staging.gemspec +10 -0
  186. data/smoke-test/dependabot-file/partial-config/cargo/Cargo.lock +90 -0
  187. data/smoke-test/dependabot-file/partial-config/cargo/Cargo.toml +8 -0
  188. data/smoke-test/dependabot-file/partial-config/composer/composer.json +5 -0
  189. data/smoke-test/dependabot-file/partial-config/composer/composer.lock +72 -0
  190. data/smoke-test/docker/Dockerfile +19 -0
  191. data/smoke-test/elm/elm-package.json +15 -0
  192. data/smoke-test/elm/elm.json +31 -0
  193. data/smoke-test/github-actions/both/.github/workflows/this.yaml +11 -0
  194. data/smoke-test/github-actions/both/yaml/action.yml +13 -0
  195. data/smoke-test/github-actions/invalid/invalid_file.yaml +0 -0
  196. data/smoke-test/github-actions/workflow/.github/workflows/this.yaml +11 -0
  197. data/smoke-test/github-actions/yaml/action.yml +13 -0
  198. data/smoke-test/gitsubmodule/.gitmodules +4 -0
  199. data/smoke-test/gomod/go.mod +16 -0
  200. data/smoke-test/gomod/go.sum +18 -0
  201. data/smoke-test/gomod/gomain.go +14 -0
  202. data/smoke-test/gradle/.gitignore +1 -0
  203. data/smoke-test/gradle/build.gradle +65 -0
  204. data/smoke-test/maven/pom.xml +65 -0
  205. data/smoke-test/mix/mix.exs +24 -0
  206. data/smoke-test/mix/mix.lock +5 -0
  207. data/smoke-test/npm/package-lock.json +166 -0
  208. data/smoke-test/npm/package.json +22 -0
  209. data/smoke-test/npm/removed/package-lock.json +44 -0
  210. data/smoke-test/npm/removed/package.json +15 -0
  211. data/smoke-test/nuget/project.csproj +14 -0
  212. data/smoke-test/pip/pip/requirements.txt +5 -0
  213. data/smoke-test/pip/pip-compile/requirements.in +2 -0
  214. data/smoke-test/pip/pip-compile/requirements.txt +16 -0
  215. data/smoke-test/pip/pipenv/Pipfile +13 -0
  216. data/smoke-test/pip/pipenv/Pipfile.lock +86 -0
  217. data/smoke-test/pip/poetry/poetry.lock +33 -0
  218. data/smoke-test/pip/poetry/pyproject.toml +18 -0
  219. data/smoke-test/pub/pubspec.lock +40 -0
  220. data/smoke-test/pub/pubspec.yaml +10 -0
  221. data/smoke-test/terraform/main.tf +143 -0
  222. metadata +314 -6
  223. data/LICENSE.GPL-3.0-only +0 -674
@@ -0,0 +1,193 @@
1
+ /**
2
+ * SyntaxHighlighter
3
+ * http://alexgorbatchev.com/
4
+ *
5
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
6
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7
+ *
8
+ * @version
9
+ * 2.0.296 (March 01 2009)
10
+ *
11
+ * @copyright
12
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
13
+ *
14
+ * @license
15
+ * This file is part of SyntaxHighlighter.
16
+ *
17
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with SyntaxHighlighter. If not, see <http://www.gnu.org/licenses/>.
29
+ */
30
+ /**
31
+ * Django SyntaxHighlighter theme
32
+ */
33
+
34
+ /************************************
35
+ * Interface elements.
36
+ ************************************/
37
+
38
+ .syntaxhighlighter
39
+ {
40
+ background-color: #0B2F20 !important;
41
+ }
42
+
43
+ /* Gutter line numbers */
44
+ .syntaxhighlighter .line .number
45
+ {
46
+ color: #497958 !important;
47
+ }
48
+
49
+ /* Add border to the lines */
50
+ .syntaxhighlighter .line .content
51
+ {
52
+ border-left: 3px solid #41A83E !important;
53
+ color: #B9BDB6 !important;
54
+ }
55
+
56
+ .syntaxhighlighter.printing .line .content
57
+ {
58
+ border: 0 !important;
59
+ }
60
+
61
+ /* First line */
62
+ .syntaxhighlighter .line.alt1 .content
63
+ {
64
+ }
65
+
66
+ /* Second line */
67
+ .syntaxhighlighter .line.alt2 .content
68
+ {
69
+ background-color: #0a2b1d !important;
70
+ }
71
+
72
+ .syntaxhighlighter .line .content .block
73
+ {
74
+ background: url(wrapping.png) 0 1.1em no-repeat !important;
75
+ }
76
+
77
+ /* Highlighed line number */
78
+ .syntaxhighlighter .line.highlighted .number
79
+ {
80
+ background-color: #336442 !important;
81
+ color: #fff !important;
82
+ }
83
+
84
+ /* Highlighed line */
85
+ .syntaxhighlighter .line.highlighted.alt1 .content,
86
+ .syntaxhighlighter .line.highlighted.alt2 .content
87
+ {
88
+ background-color: #336442 !important;
89
+ }
90
+
91
+ .syntaxhighlighter .ruler
92
+ {
93
+ color: #C4B14A !important;
94
+ background-color: #245032 !important;
95
+ border-left: 3px solid #41A83E !important;
96
+ }
97
+
98
+ .syntaxhighlighter.nogutter .ruler
99
+ {
100
+ border: 0 !important;
101
+ }
102
+
103
+ .syntaxhighlighter .toolbar
104
+ {
105
+ background-color: #245032 !important;
106
+ border: #0B2F20 solid 1px !important;
107
+ }
108
+
109
+ .syntaxhighlighter .toolbar a
110
+ {
111
+ color: #C4B14A !important;
112
+ }
113
+
114
+ .syntaxhighlighter .toolbar a:hover
115
+ {
116
+ color: #FFE862 !important;
117
+ }
118
+
119
+ /************************************
120
+ * Actual syntax highlighter colors.
121
+ ************************************/
122
+ .syntaxhighlighter .plain,
123
+ .syntaxhighlighter .plain a
124
+ {
125
+ color: #F8F8F8 !important;
126
+ }
127
+
128
+ .syntaxhighlighter .comments,
129
+ .syntaxhighlighter .comments a
130
+ {
131
+ color: #336442 !important;
132
+ font-style: italic !important;
133
+ }
134
+
135
+ .syntaxhighlighter .string,
136
+ .syntaxhighlighter .string a
137
+ {
138
+ color: #9DF39F !important;
139
+ }
140
+
141
+ .syntaxhighlighter .keyword
142
+ {
143
+ color: #96DD3B !important;
144
+ font-weight: bold !important;
145
+ }
146
+
147
+ .syntaxhighlighter .preprocessor
148
+ {
149
+ color: #91BB9E !important;
150
+ }
151
+
152
+ .syntaxhighlighter .variable
153
+ {
154
+ color: #FFAA3E !important;
155
+ }
156
+
157
+ .syntaxhighlighter .value
158
+ {
159
+ color: #F7E741 !important;
160
+ }
161
+
162
+ .syntaxhighlighter .functions
163
+ {
164
+ color: #FFAA3E !important;
165
+ }
166
+
167
+ .syntaxhighlighter .constants
168
+ {
169
+ color: #E0E8FF !important;
170
+ }
171
+
172
+ .syntaxhighlighter .script
173
+ {
174
+ background-color: #497958 !important;
175
+ }
176
+
177
+ .syntaxhighlighter .color1,
178
+ .syntaxhighlighter .color1 a
179
+ {
180
+ color: #EB939A !important;
181
+ }
182
+
183
+ .syntaxhighlighter .color2,
184
+ .syntaxhighlighter .color2 a
185
+ {
186
+ color: #91BB9E !important;
187
+ }
188
+
189
+ .syntaxhighlighter .color3,
190
+ .syntaxhighlighter .color3 a
191
+ {
192
+ color: #EDEF7D !important;
193
+ }
@@ -0,0 +1,192 @@
1
+ /**
2
+ * SyntaxHighlighter
3
+ * http://alexgorbatchev.com/
4
+ *
5
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
6
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7
+ *
8
+ * @version
9
+ * 2.0.296 (March 01 2009)
10
+ *
11
+ * @copyright
12
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
13
+ *
14
+ * @license
15
+ * This file is part of SyntaxHighlighter.
16
+ *
17
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with SyntaxHighlighter. If not, see <http://www.gnu.org/licenses/>.
29
+ */
30
+ /**
31
+ * Emacs SyntaxHighlighter theme based on theme by Joshua Emmons
32
+ * http://www.skia.net/
33
+ */
34
+
35
+ /************************************
36
+ * Interface elements.
37
+ ************************************/
38
+
39
+ .syntaxhighlighter
40
+ {
41
+ background-color: #000000 !important;
42
+ }
43
+
44
+ /* Gutter line numbers */
45
+ .syntaxhighlighter .line .number
46
+ {
47
+ color: #D3D3D3 !important;
48
+ }
49
+
50
+ /* Add border to the lines */
51
+ .syntaxhighlighter .line .content
52
+ {
53
+ border-left: 3px solid #990000 !important;
54
+ color: #B9BDB6 !important;
55
+ }
56
+
57
+ .syntaxhighlighter.printing .line .content
58
+ {
59
+ border: 0 !important;
60
+ }
61
+
62
+ /* First line */
63
+ .syntaxhighlighter .line.alt1 .content
64
+ {
65
+ }
66
+
67
+ /* Second line */
68
+ .syntaxhighlighter .line.alt2 .content
69
+ {
70
+ background-color: #0f0f0f !important;
71
+ }
72
+
73
+ .syntaxhighlighter .line .content .block
74
+ {
75
+ background: url(wrapping.png) 0 1.1em no-repeat !important;
76
+ }
77
+
78
+ /* Highlighed line number */
79
+ .syntaxhighlighter .line.highlighted .number
80
+ {
81
+ background-color: #435A5F !important;
82
+ color: #fff !important;
83
+ }
84
+
85
+ /* Highlighed line */
86
+ .syntaxhighlighter .line.highlighted.alt1 .content,
87
+ .syntaxhighlighter .line.highlighted.alt2 .content
88
+ {
89
+ background-color: #435A5F !important;
90
+ }
91
+
92
+ .syntaxhighlighter .ruler
93
+ {
94
+ color: silver !important;
95
+ background-color: #000000 !important;
96
+ border-left: 3px solid #990000 !important;
97
+ }
98
+
99
+ .syntaxhighlighter.nogutter .ruler
100
+ {
101
+ border: 0 !important;
102
+ }
103
+
104
+ .syntaxhighlighter .toolbar
105
+ {
106
+ background-color: #000000 !important;
107
+ border: #000000 solid 1px !important;
108
+ }
109
+
110
+ .syntaxhighlighter .toolbar a
111
+ {
112
+ color: #646763 !important;
113
+ }
114
+
115
+ .syntaxhighlighter .toolbar a:hover
116
+ {
117
+ color: #9CCFF4 !important;
118
+ }
119
+
120
+ /************************************
121
+ * Actual syntax highlighter colors.
122
+ ************************************/
123
+ .syntaxhighlighter .plain,
124
+ .syntaxhighlighter .plain a
125
+ {
126
+ color: #D3D3D3 !important;
127
+ }
128
+
129
+ .syntaxhighlighter .comments,
130
+ .syntaxhighlighter .comments a
131
+ {
132
+ color: #FF7D27 !important;
133
+ }
134
+
135
+ .syntaxhighlighter .string,
136
+ .syntaxhighlighter .string a
137
+ {
138
+ color: #FF9E7B !important;
139
+ }
140
+
141
+ .syntaxhighlighter .keyword
142
+ {
143
+ color: #00FFFF !important;
144
+ }
145
+
146
+ .syntaxhighlighter .preprocessor
147
+ {
148
+ color: #AEC4DE !important;
149
+ }
150
+
151
+ .syntaxhighlighter .variable
152
+ {
153
+ color: #FFAA3E !important;
154
+ }
155
+
156
+ .syntaxhighlighter .value
157
+ {
158
+ color: #090 !important;
159
+ }
160
+
161
+ .syntaxhighlighter .functions
162
+ {
163
+ color: #81CEF9 !important;
164
+ }
165
+
166
+ .syntaxhighlighter .constants
167
+ {
168
+ color: #FF9E7B !important;
169
+ }
170
+
171
+ .syntaxhighlighter .script
172
+ {
173
+ background-color: #990000 !important;
174
+ }
175
+
176
+ .syntaxhighlighter .color1,
177
+ .syntaxhighlighter .color1 a
178
+ {
179
+ color: #EBDB8D !important;
180
+ }
181
+
182
+ .syntaxhighlighter .color2,
183
+ .syntaxhighlighter .color2 a
184
+ {
185
+ color: #FF7D27 !important;
186
+ }
187
+
188
+ .syntaxhighlighter .color3,
189
+ .syntaxhighlighter .color3 a
190
+ {
191
+ color: #AEC4DE !important;
192
+ }
@@ -0,0 +1,193 @@
1
+ /**
2
+ * SyntaxHighlighter
3
+ * http://alexgorbatchev.com/
4
+ *
5
+ * SyntaxHighlighter is donationware. If you are using it, please donate.
6
+ * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7
+ *
8
+ * @version
9
+ * 2.0.296 (March 01 2009)
10
+ *
11
+ * @copyright
12
+ * Copyright (C) 2004-2009 Alex Gorbatchev.
13
+ *
14
+ * @license
15
+ * This file is part of SyntaxHighlighter.
16
+ *
17
+ * SyntaxHighlighter is free software: you can redistribute it and/or modify
18
+ * it under the terms of the GNU General Public License as published by
19
+ * the Free Software Foundation, either version 3 of the License, or
20
+ * (at your option) any later version.
21
+ *
22
+ * SyntaxHighlighter is distributed in the hope that it will be useful,
23
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ * GNU General Public License for more details.
26
+ *
27
+ * You should have received a copy of the GNU General Public License
28
+ * along with SyntaxHighlighter. If not, see <http://www.gnu.org/licenses/>.
29
+ */
30
+ /**
31
+ * Fade to Grey SyntaxHighlighter theme based on theme by Brasten Sager
32
+ * http://www.ibrasten.com/
33
+ */
34
+
35
+ /************************************
36
+ * Interface elements.
37
+ ************************************/
38
+
39
+ .syntaxhighlighter
40
+ {
41
+ background-color: #121212 !important;
42
+ }
43
+
44
+ /* Gutter line numbers */
45
+ .syntaxhighlighter .line .number
46
+ {
47
+ color: #C3C3C3 !important;
48
+ }
49
+
50
+ /* Add border to the lines */
51
+ .syntaxhighlighter .line .content
52
+ {
53
+ border-left: 3px solid #3185B9 !important;
54
+ color: #B9BDB6 !important;
55
+ }
56
+
57
+ .syntaxhighlighter.printing .line .content
58
+ {
59
+ border: 0 !important;
60
+ }
61
+
62
+ /* First line */
63
+ .syntaxhighlighter .line.alt1 .content
64
+ {
65
+ }
66
+
67
+ /* Second line */
68
+ .syntaxhighlighter .line.alt2 .content
69
+ {
70
+ background-color: #000000 !important;
71
+ }
72
+
73
+ .syntaxhighlighter .line .content .block
74
+ {
75
+ background: url(wrapping.png) 0 1.1em no-repeat !important;
76
+ }
77
+
78
+ /* Highlighed line number */
79
+ .syntaxhighlighter .line.highlighted .number
80
+ {
81
+ background-color: #3A3A00 !important;
82
+ color: #fff !important;
83
+ }
84
+
85
+ /* Highlighed line */
86
+ .syntaxhighlighter .line.highlighted.alt1 .content,
87
+ .syntaxhighlighter .line.highlighted.alt2 .content
88
+ {
89
+ background-color: #3A3A00 !important;
90
+ }
91
+
92
+ .syntaxhighlighter .ruler
93
+ {
94
+ color: silver !important;
95
+ border-left: 3px solid #3185B9 !important;
96
+ }
97
+
98
+ .syntaxhighlighter.nogutter .ruler
99
+ {
100
+ border: 0 !important;
101
+ }
102
+
103
+ .syntaxhighlighter .toolbar
104
+ {
105
+ background-color: #000000 !important;
106
+ border: #000000 solid 1px !important;
107
+ }
108
+
109
+ .syntaxhighlighter .toolbar a
110
+ {
111
+ color: #808080 !important;
112
+ }
113
+
114
+ .syntaxhighlighter .toolbar a:hover
115
+ {
116
+ color: #96DAFF !important;
117
+ }
118
+
119
+ /************************************
120
+ * Actual syntax highlighter colors.
121
+ ************************************/
122
+ .syntaxhighlighter .plain,
123
+ .syntaxhighlighter .plain a
124
+ {
125
+ color: #FFFFFF !important;
126
+ }
127
+
128
+ .syntaxhighlighter .comments,
129
+ .syntaxhighlighter .comments a
130
+ {
131
+ color: #696854 !important;
132
+ }
133
+
134
+ .syntaxhighlighter .string,
135
+ .syntaxhighlighter .string a
136
+ {
137
+ color: #E3E658 !important;
138
+ }
139
+
140
+ .syntaxhighlighter .keyword
141
+ {
142
+ color: #D01D33 !important;
143
+ }
144
+
145
+ .syntaxhighlighter .preprocessor
146
+ {
147
+ color: #435A5F !important;
148
+ }
149
+
150
+ .syntaxhighlighter .variable
151
+ {
152
+ color: #898989 !important;
153
+ }
154
+
155
+ .syntaxhighlighter .value
156
+ {
157
+ color: #090 !important;
158
+ }
159
+
160
+ .syntaxhighlighter .functions
161
+ {
162
+ color: #AAAAAA !important;
163
+ font-weight: bold !important;
164
+ }
165
+
166
+ .syntaxhighlighter .constants
167
+ {
168
+ color: #96DAFF !important;
169
+ }
170
+
171
+ .syntaxhighlighter .script
172
+ {
173
+ background-color: #C3C3C3 !important;
174
+ color: #000 !important;
175
+ }
176
+
177
+ .syntaxhighlighter .color1,
178
+ .syntaxhighlighter .color1 a
179
+ {
180
+ color: #FFC074 !important;
181
+ }
182
+
183
+ .syntaxhighlighter .color2,
184
+ .syntaxhighlighter .color2 a
185
+ {
186
+ color: #4A8CDB !important;
187
+ }
188
+
189
+ .syntaxhighlighter .color3,
190
+ .syntaxhighlighter .color3 a
191
+ {
192
+ color: #96DAFF !important;
193
+ }