bauxite 0.6.18 → 0.6.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (205) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +21 -21
  3. data/README.md +293 -293
  4. data/Rakefile +128 -128
  5. data/bin/bauxite +27 -27
  6. data/doc/Bauxite.html +6 -9
  7. data/doc/Bauxite/Action.html +298 -315
  8. data/doc/Bauxite/ActionModule.html +23 -26
  9. data/doc/Bauxite/Application.html +36 -38
  10. data/doc/Bauxite/Context.html +303 -303
  11. data/doc/Bauxite/Errors.html +6 -9
  12. data/doc/Bauxite/Errors/AssertionError.html +6 -9
  13. data/doc/Bauxite/Errors/FileNotFoundError.html +6 -9
  14. data/doc/Bauxite/Errors/FormatError.html +6 -9
  15. data/doc/Bauxite/Loggers.html +6 -9
  16. data/doc/Bauxite/Loggers/CompositeLogger.html +29 -32
  17. data/doc/Bauxite/Loggers/EchoLogger.html +10 -13
  18. data/doc/Bauxite/Loggers/FileLogger.html +25 -28
  19. data/doc/Bauxite/Loggers/HtmlLogger.html +99 -102
  20. data/doc/Bauxite/Loggers/NullLogger.html +16 -19
  21. data/doc/Bauxite/Loggers/ReportLogger.html +43 -46
  22. data/doc/Bauxite/Loggers/TerminalLogger.html +76 -79
  23. data/doc/Bauxite/Loggers/XtermLogger.html +28 -31
  24. data/doc/Bauxite/Parser.html +87 -89
  25. data/doc/Bauxite/ParserModule.html +19 -22
  26. data/doc/Bauxite/Selector.html +99 -105
  27. data/doc/Bauxite/SelectorModule.html +27 -30
  28. data/doc/README_md.html +117 -103
  29. data/doc/created.rid +58 -58
  30. data/doc/fonts.css +167 -167
  31. data/doc/fonts/Lato-Light.ttf +0 -0
  32. data/doc/fonts/Lato-LightItalic.ttf +0 -0
  33. data/doc/fonts/Lato-Regular.ttf +0 -0
  34. data/doc/fonts/Lato-RegularItalic.ttf +0 -0
  35. data/doc/fonts/SourceCodePro-Bold.ttf +0 -0
  36. data/doc/fonts/SourceCodePro-Regular.ttf +0 -0
  37. data/doc/images/add.png +0 -0
  38. data/doc/images/arrow_up.png +0 -0
  39. data/doc/images/brick.png +0 -0
  40. data/doc/images/brick_link.png +0 -0
  41. data/doc/images/bug.png +0 -0
  42. data/doc/images/bullet_black.png +0 -0
  43. data/doc/images/bullet_toggle_minus.png +0 -0
  44. data/doc/images/bullet_toggle_plus.png +0 -0
  45. data/doc/images/date.png +0 -0
  46. data/doc/images/delete.png +0 -0
  47. data/doc/images/find.png +0 -0
  48. data/doc/images/loadingAnimation.gif +0 -0
  49. data/doc/images/macFFBgHack.png +0 -0
  50. data/doc/images/package.png +0 -0
  51. data/doc/images/page_green.png +0 -0
  52. data/doc/images/page_white_text.png +0 -0
  53. data/doc/images/page_white_width.png +0 -0
  54. data/doc/images/plugin.png +0 -0
  55. data/doc/images/ruby.png +0 -0
  56. data/doc/images/tag_blue.png +0 -0
  57. data/doc/images/tag_green.png +0 -0
  58. data/doc/images/transparent.png +0 -0
  59. data/doc/images/wrench.png +0 -0
  60. data/doc/images/wrench_orange.png +0 -0
  61. data/doc/images/zoom.png +0 -0
  62. data/doc/index.html +117 -103
  63. data/doc/js/darkfish.js +32 -11
  64. data/doc/js/jquery.js +0 -0
  65. data/doc/js/navigation.js +0 -0
  66. data/doc/js/search.js +0 -0
  67. data/doc/js/search_index.js +1 -1
  68. data/doc/js/searcher.js +0 -0
  69. data/doc/rdoc.css +580 -580
  70. data/doc/table_of_contents.html +69 -72
  71. data/lib/bauxite.rb +28 -28
  72. data/lib/bauxite/actions/alias.rb +51 -51
  73. data/lib/bauxite/actions/assert.rb +49 -49
  74. data/lib/bauxite/actions/asserth.rb +60 -60
  75. data/lib/bauxite/actions/assertm.rb +49 -49
  76. data/lib/bauxite/actions/assertv.rb +40 -40
  77. data/lib/bauxite/actions/assertw.rb +47 -47
  78. data/lib/bauxite/actions/break.rb +39 -39
  79. data/lib/bauxite/actions/capture.rb +61 -61
  80. data/lib/bauxite/actions/click.rb +36 -36
  81. data/lib/bauxite/actions/debug.rb +103 -103
  82. data/lib/bauxite/actions/doif.rb +43 -43
  83. data/lib/bauxite/actions/dounless.rb +43 -43
  84. data/lib/bauxite/actions/echo.rb +36 -36
  85. data/lib/bauxite/actions/exec.rb +46 -46
  86. data/lib/bauxite/actions/exit.rb +35 -35
  87. data/lib/bauxite/actions/failif.rb +52 -52
  88. data/lib/bauxite/actions/js.rb +41 -41
  89. data/lib/bauxite/actions/load.rb +49 -49
  90. data/lib/bauxite/actions/open.rb +35 -35
  91. data/lib/bauxite/actions/params.rb +40 -40
  92. data/lib/bauxite/actions/replace.rb +37 -37
  93. data/lib/bauxite/actions/reset.rb +38 -38
  94. data/lib/bauxite/actions/return.rb +68 -68
  95. data/lib/bauxite/actions/ruby.rb +58 -58
  96. data/lib/bauxite/actions/select.rb +48 -48
  97. data/lib/bauxite/actions/set.rb +39 -39
  98. data/lib/bauxite/actions/setif.rb +44 -44
  99. data/lib/bauxite/actions/source.rb +44 -44
  100. data/lib/bauxite/actions/store.rb +38 -38
  101. data/lib/bauxite/actions/submit.rb +37 -37
  102. data/lib/bauxite/actions/test.rb +67 -67
  103. data/lib/bauxite/actions/tryload.rb +71 -71
  104. data/lib/bauxite/actions/wait.rb +38 -38
  105. data/lib/bauxite/actions/write.rb +44 -44
  106. data/lib/bauxite/application.rb +349 -349
  107. data/lib/bauxite/core/action.rb +199 -199
  108. data/lib/bauxite/core/context.rb +791 -791
  109. data/lib/bauxite/core/errors.rb +41 -41
  110. data/lib/bauxite/core/logger.rb +169 -169
  111. data/lib/bauxite/core/parser.rb +85 -85
  112. data/lib/bauxite/core/selector.rb +152 -152
  113. data/lib/bauxite/loggers/composite.rb +91 -91
  114. data/lib/bauxite/loggers/echo.rb +36 -36
  115. data/lib/bauxite/loggers/file.rb +68 -68
  116. data/lib/bauxite/loggers/html.rb +154 -154
  117. data/lib/bauxite/loggers/terminal.rb +134 -134
  118. data/lib/bauxite/loggers/xterm.rb +101 -101
  119. data/lib/bauxite/parsers/csv.rb +43 -43
  120. data/lib/bauxite/parsers/default.rb +42 -42
  121. data/lib/bauxite/parsers/html.rb +79 -79
  122. data/lib/bauxite/selectors/attr.rb +39 -39
  123. data/lib/bauxite/selectors/frame.rb +60 -60
  124. data/lib/bauxite/selectors/json.rb +88 -88
  125. data/lib/bauxite/selectors/sid.rb +38 -38
  126. data/lib/bauxite/selectors/smart.rb +80 -80
  127. data/lib/bauxite/selectors/window.rb +77 -77
  128. data/test/alert.bxt +3 -3
  129. data/test/alert/page.html +4 -4
  130. data/test/alias.bxt +9 -9
  131. data/test/asserth.bxt +2 -2
  132. data/test/assertv.bxt +1 -1
  133. data/test/assertw.bxt +7 -7
  134. data/test/broken.bxt.manual +0 -0
  135. data/test/bug_load_path.bxt.manual +0 -0
  136. data/test/bug_load_path/broken.bxt.manual +0 -0
  137. data/test/bug_load_path/test.bxt +0 -0
  138. data/test/capture.bxt.manual +20 -20
  139. data/test/capture/my_test.bxt +1 -1
  140. data/test/capture/page.html +6 -6
  141. data/test/capture_on_error.bxt.manual +3 -3
  142. data/test/capture_on_error/my_test.bxt +1 -1
  143. data/test/capture_on_error/page.html +2 -2
  144. data/test/debug.bxt.manual +0 -0
  145. data/test/default_selector.bxt.manual +7 -7
  146. data/test/default_selector/page.html +10 -10
  147. data/test/default_selector_var.bxt +1 -1
  148. data/test/delay.bxt +2 -2
  149. data/test/delay/page.html +4 -4
  150. data/test/doif.bxt +6 -6
  151. data/test/dounless.bxt +6 -6
  152. data/test/exec.bxt +6 -6
  153. data/test/exit.bxt +3 -3
  154. data/test/exit/test.bxt +3 -3
  155. data/test/extension.bxt.manual +4 -4
  156. data/test/extension/custom.rb +12 -12
  157. data/test/extension/page.html +4 -4
  158. data/test/failif.bxt +7 -7
  159. data/test/failif/page.html +5 -5
  160. data/test/format.bxt +17 -17
  161. data/test/format/page.html +6 -6
  162. data/test/frame.bxt +6 -6
  163. data/test/frame/child_frame.html +6 -6
  164. data/test/frame/grandchild_frame.html +4 -4
  165. data/test/frame/page.html +4 -4
  166. data/test/js.bxt +4 -4
  167. data/test/json.bxt +19 -19
  168. data/test/json/array.json +3 -3
  169. data/test/json/object.json +13 -13
  170. data/test/load.bxt +18 -18
  171. data/test/load/child.bxt +12 -12
  172. data/test/parsers.bxt +1 -1
  173. data/test/parsers.csv +7 -7
  174. data/test/parsers.html +32 -32
  175. data/test/parsers/page.html +6 -6
  176. data/test/return.bxt +1 -1
  177. data/test/return/f1.bxt +1 -1
  178. data/test/return/f2.bxt +1 -1
  179. data/test/return/f3.bxt +1 -1
  180. data/test/return/f4.bxt +2 -2
  181. data/test/ruby.bxt +1 -1
  182. data/test/ruby/custom.rb +5 -5
  183. data/test/select.bxt +9 -9
  184. data/test/select/page.html +8 -8
  185. data/test/selectors.bxt +7 -7
  186. data/test/selectors/page.html +6 -6
  187. data/test/set_builtin.bxt +5 -0
  188. data/test/set_builtin/page.html +5 -0
  189. data/test/setif.bxt +3 -3
  190. data/test/smart_selector.bxt +17 -17
  191. data/test/smart_selector/page.html +17 -17
  192. data/test/stdin.bxt +0 -0
  193. data/test/submit.bxt +4 -4
  194. data/test/submit/page.html +6 -6
  195. data/test/submit/page2.html +4 -4
  196. data/test/test.bxt.manual +6 -6
  197. data/test/test/test1.bxt +2 -2
  198. data/test/test/test2.bxt +3 -3
  199. data/test/test/test3.bxt +2 -2
  200. data/test/test/test4.bxt +1 -1
  201. data/test/test/test5.bxt +1 -1
  202. data/test/window.bxt +14 -14
  203. data/test/window/page.html +5 -5
  204. data/test/window/popup.html +4 -4
  205. metadata +5 -3
data/doc/created.rid CHANGED
@@ -1,58 +1,58 @@
1
- Tue, 01 Sep 2015 00:05:18 +0100
2
- README.md Sun, 28 Dec 2014 14:09:54 +0000
3
- lib/bauxite/selectors/smart.rb Wed, 26 Mar 2014 16:39:30 +0000
4
- lib/bauxite/selectors/json.rb Sun, 28 Dec 2014 14:09:54 +0000
5
- lib/bauxite/selectors/attr.rb Wed, 26 Mar 2014 16:39:30 +0000
6
- lib/bauxite/selectors/frame.rb Wed, 26 Mar 2014 16:39:30 +0000
7
- lib/bauxite/selectors/sid.rb Wed, 26 Mar 2014 16:39:30 +0000
8
- lib/bauxite/selectors/window.rb Wed, 26 Mar 2014 16:39:30 +0000
9
- lib/bauxite/parsers/csv.rb Wed, 26 Mar 2014 16:39:30 +0000
10
- lib/bauxite/parsers/default.rb Wed, 26 Mar 2014 16:39:30 +0000
11
- lib/bauxite/parsers/html.rb Wed, 26 Mar 2014 16:39:30 +0000
12
- lib/bauxite/loggers/xterm.rb Wed, 26 Mar 2014 16:39:30 +0000
13
- lib/bauxite/loggers/html.rb Wed, 26 Mar 2014 16:39:30 +0000
14
- lib/bauxite/loggers/terminal.rb Wed, 26 Mar 2014 16:39:30 +0000
15
- lib/bauxite/loggers/echo.rb Wed, 26 Mar 2014 16:39:30 +0000
16
- lib/bauxite/loggers/composite.rb Wed, 26 Mar 2014 16:39:30 +0000
17
- lib/bauxite/loggers/file.rb Thu, 25 Dec 2014 14:39:11 +0000
18
- lib/bauxite/actions/assertv.rb Wed, 26 Mar 2014 16:39:30 +0000
19
- lib/bauxite/actions/ruby.rb Wed, 26 Mar 2014 16:39:30 +0000
20
- lib/bauxite/actions/load.rb Wed, 26 Mar 2014 16:39:30 +0000
21
- lib/bauxite/actions/return.rb Wed, 26 Mar 2014 16:39:30 +0000
22
- lib/bauxite/actions/set.rb Wed, 26 Mar 2014 16:39:30 +0000
23
- lib/bauxite/actions/alias.rb Wed, 26 Mar 2014 16:39:30 +0000
24
- lib/bauxite/actions/write.rb Wed, 26 Mar 2014 16:39:30 +0000
25
- lib/bauxite/actions/dounless.rb Thu, 05 Jun 2014 20:39:48 +0100
26
- lib/bauxite/actions/select.rb Wed, 26 Mar 2014 16:39:30 +0000
27
- lib/bauxite/actions/failif.rb Sun, 28 Dec 2014 14:09:54 +0000
28
- lib/bauxite/actions/doif.rb Wed, 26 Mar 2014 16:39:30 +0000
29
- lib/bauxite/actions/setif.rb Wed, 26 Mar 2014 16:39:30 +0000
30
- lib/bauxite/actions/wait.rb Wed, 26 Mar 2014 16:39:30 +0000
31
- lib/bauxite/actions/exec.rb Wed, 25 Jun 2014 18:46:25 +0100
32
- lib/bauxite/actions/replace.rb Wed, 26 Mar 2014 16:39:30 +0000
33
- lib/bauxite/actions/store.rb Wed, 26 Mar 2014 16:39:30 +0000
34
- lib/bauxite/actions/debug.rb Wed, 26 Mar 2014 16:39:30 +0000
35
- lib/bauxite/actions/asserth.rb Wed, 26 Mar 2014 16:39:30 +0000
36
- lib/bauxite/actions/click.rb Wed, 26 Mar 2014 16:39:30 +0000
37
- lib/bauxite/actions/js.rb Wed, 26 Mar 2014 16:39:30 +0000
38
- lib/bauxite/actions/capture.rb Wed, 26 Mar 2014 16:39:30 +0000
39
- lib/bauxite/actions/assertm.rb Mon, 05 May 2014 15:29:04 +0100
40
- lib/bauxite/actions/params.rb Wed, 26 Mar 2014 16:39:30 +0000
41
- lib/bauxite/actions/assert.rb Wed, 26 Mar 2014 16:39:30 +0000
42
- lib/bauxite/actions/open.rb Wed, 26 Mar 2014 16:39:30 +0000
43
- lib/bauxite/actions/assertw.rb Wed, 26 Mar 2014 16:39:30 +0000
44
- lib/bauxite/actions/echo.rb Wed, 26 Mar 2014 16:39:30 +0000
45
- lib/bauxite/actions/break.rb Wed, 26 Mar 2014 16:39:30 +0000
46
- lib/bauxite/actions/test.rb Thu, 01 May 2014 17:56:24 +0100
47
- lib/bauxite/actions/reset.rb Thu, 29 May 2014 18:35:09 +0100
48
- lib/bauxite/actions/submit.rb Wed, 26 Mar 2014 16:39:30 +0000
49
- lib/bauxite/actions/tryload.rb Wed, 26 Mar 2014 16:39:30 +0000
50
- lib/bauxite/actions/source.rb Wed, 26 Mar 2014 16:39:30 +0000
51
- lib/bauxite/actions/exit.rb Thu, 29 May 2014 18:43:04 +0100
52
- lib/bauxite/application.rb Wed, 26 Mar 2014 16:39:30 +0000
53
- lib/bauxite/core/logger.rb Wed, 31 Dec 2014 21:31:46 +0000
54
- lib/bauxite/core/errors.rb Wed, 26 Mar 2014 16:39:30 +0000
55
- lib/bauxite/core/selector.rb Wed, 26 Mar 2014 16:39:30 +0000
56
- lib/bauxite/core/action.rb Wed, 26 Mar 2014 16:39:30 +0000
57
- lib/bauxite/core/context.rb Thu, 29 May 2014 18:41:43 +0100
58
- lib/bauxite/core/parser.rb Wed, 26 Mar 2014 16:39:30 +0000
1
+ Thu, 08 Oct 2015 18:57:21 +0100
2
+ README.md Tue, 06 Oct 2015 19:39:40 +0100
3
+ lib/bauxite/actions/alias.rb Tue, 06 Oct 2015 19:39:40 +0100
4
+ lib/bauxite/actions/assert.rb Tue, 06 Oct 2015 19:39:40 +0100
5
+ lib/bauxite/actions/asserth.rb Tue, 06 Oct 2015 19:39:40 +0100
6
+ lib/bauxite/actions/assertm.rb Tue, 06 Oct 2015 19:39:40 +0100
7
+ lib/bauxite/actions/assertv.rb Tue, 06 Oct 2015 19:39:40 +0100
8
+ lib/bauxite/actions/assertw.rb Tue, 06 Oct 2015 19:39:40 +0100
9
+ lib/bauxite/actions/break.rb Tue, 06 Oct 2015 19:39:40 +0100
10
+ lib/bauxite/actions/capture.rb Tue, 06 Oct 2015 19:39:40 +0100
11
+ lib/bauxite/actions/click.rb Tue, 06 Oct 2015 19:39:40 +0100
12
+ lib/bauxite/actions/debug.rb Tue, 06 Oct 2015 19:39:40 +0100
13
+ lib/bauxite/actions/doif.rb Tue, 06 Oct 2015 19:39:40 +0100
14
+ lib/bauxite/actions/dounless.rb Tue, 06 Oct 2015 19:39:40 +0100
15
+ lib/bauxite/actions/echo.rb Tue, 06 Oct 2015 19:39:40 +0100
16
+ lib/bauxite/actions/exec.rb Tue, 06 Oct 2015 19:39:40 +0100
17
+ lib/bauxite/actions/exit.rb Tue, 06 Oct 2015 19:39:40 +0100
18
+ lib/bauxite/actions/failif.rb Tue, 06 Oct 2015 19:39:40 +0100
19
+ lib/bauxite/actions/js.rb Tue, 06 Oct 2015 19:39:40 +0100
20
+ lib/bauxite/actions/load.rb Tue, 06 Oct 2015 19:39:40 +0100
21
+ lib/bauxite/actions/open.rb Tue, 06 Oct 2015 19:39:40 +0100
22
+ lib/bauxite/actions/params.rb Tue, 06 Oct 2015 19:39:40 +0100
23
+ lib/bauxite/actions/replace.rb Tue, 06 Oct 2015 19:39:40 +0100
24
+ lib/bauxite/actions/reset.rb Tue, 06 Oct 2015 19:39:40 +0100
25
+ lib/bauxite/actions/return.rb Tue, 06 Oct 2015 19:39:40 +0100
26
+ lib/bauxite/actions/ruby.rb Tue, 06 Oct 2015 19:39:40 +0100
27
+ lib/bauxite/actions/select.rb Tue, 06 Oct 2015 19:39:40 +0100
28
+ lib/bauxite/actions/set.rb Tue, 06 Oct 2015 19:39:40 +0100
29
+ lib/bauxite/actions/setif.rb Tue, 06 Oct 2015 19:39:40 +0100
30
+ lib/bauxite/actions/source.rb Tue, 06 Oct 2015 19:39:40 +0100
31
+ lib/bauxite/actions/store.rb Tue, 06 Oct 2015 19:39:40 +0100
32
+ lib/bauxite/actions/submit.rb Tue, 06 Oct 2015 19:39:40 +0100
33
+ lib/bauxite/actions/test.rb Tue, 06 Oct 2015 19:39:40 +0100
34
+ lib/bauxite/actions/tryload.rb Tue, 06 Oct 2015 19:39:40 +0100
35
+ lib/bauxite/actions/wait.rb Tue, 06 Oct 2015 19:39:40 +0100
36
+ lib/bauxite/actions/write.rb Tue, 06 Oct 2015 19:39:40 +0100
37
+ lib/bauxite/application.rb Tue, 06 Oct 2015 19:39:40 +0100
38
+ lib/bauxite/core/action.rb Tue, 06 Oct 2015 19:39:40 +0100
39
+ lib/bauxite/core/context.rb Thu, 08 Oct 2015 18:52:13 +0100
40
+ lib/bauxite/core/errors.rb Tue, 06 Oct 2015 19:39:40 +0100
41
+ lib/bauxite/core/logger.rb Tue, 06 Oct 2015 19:39:40 +0100
42
+ lib/bauxite/core/parser.rb Tue, 06 Oct 2015 19:39:40 +0100
43
+ lib/bauxite/core/selector.rb Tue, 06 Oct 2015 19:39:40 +0100
44
+ lib/bauxite/loggers/composite.rb Tue, 06 Oct 2015 19:39:40 +0100
45
+ lib/bauxite/loggers/echo.rb Tue, 06 Oct 2015 19:39:40 +0100
46
+ lib/bauxite/loggers/file.rb Tue, 06 Oct 2015 19:39:40 +0100
47
+ lib/bauxite/loggers/html.rb Thu, 08 Oct 2015 18:54:56 +0100
48
+ lib/bauxite/loggers/terminal.rb Tue, 06 Oct 2015 19:39:40 +0100
49
+ lib/bauxite/loggers/xterm.rb Tue, 06 Oct 2015 19:39:40 +0100
50
+ lib/bauxite/parsers/csv.rb Tue, 06 Oct 2015 19:39:40 +0100
51
+ lib/bauxite/parsers/default.rb Tue, 06 Oct 2015 19:39:40 +0100
52
+ lib/bauxite/parsers/html.rb Tue, 06 Oct 2015 19:39:40 +0100
53
+ lib/bauxite/selectors/attr.rb Tue, 06 Oct 2015 19:39:40 +0100
54
+ lib/bauxite/selectors/frame.rb Tue, 06 Oct 2015 19:39:40 +0100
55
+ lib/bauxite/selectors/json.rb Tue, 06 Oct 2015 19:39:40 +0100
56
+ lib/bauxite/selectors/sid.rb Tue, 06 Oct 2015 19:39:40 +0100
57
+ lib/bauxite/selectors/smart.rb Tue, 06 Oct 2015 19:39:40 +0100
58
+ lib/bauxite/selectors/window.rb Tue, 06 Oct 2015 19:39:40 +0100
data/doc/fonts.css CHANGED
@@ -1,167 +1,167 @@
1
- /*
2
- * Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/),
3
- * with Reserved Font Name "Source". All Rights Reserved. Source is a
4
- * trademark of Adobe Systems Incorporated in the United States and/or other
5
- * countries.
6
- *
7
- * This Font Software is licensed under the SIL Open Font License, Version
8
- * 1.1.
9
- *
10
- * This license is copied below, and is also available with a FAQ at:
11
- * http://scripts.sil.org/OFL
12
- */
13
-
14
- @font-face {
15
- font-family: "Source Code Pro";
16
- font-style: normal;
17
- font-weight: 400;
18
- src: local("Source Code Pro"),
19
- local("SourceCodePro-Regular"),
20
- url("fonts/SourceCodePro-Regular.ttf") format("truetype");
21
- }
22
-
23
- @font-face {
24
- font-family: "Source Code Pro";
25
- font-style: normal;
26
- font-weight: 700;
27
- src: local("Source Code Pro Bold"),
28
- local("SourceCodePro-Bold"),
29
- url("fonts/SourceCodePro-Bold.ttf") format("truetype");
30
- }
31
-
32
- /*
33
- * Copyright (c) 2010, Łukasz Dziedzic (dziedzic@typoland.com),
34
- * with Reserved Font Name Lato.
35
- *
36
- * This Font Software is licensed under the SIL Open Font License, Version
37
- * 1.1.
38
- *
39
- * This license is copied below, and is also available with a FAQ at:
40
- * http://scripts.sil.org/OFL
41
- */
42
-
43
- @font-face {
44
- font-family: "Lato";
45
- font-style: normal;
46
- font-weight: 300;
47
- src: local("Lato Light"),
48
- local("Lato-Light"),
49
- url("fonts/Lato-Light.ttf") format("truetype");
50
- }
51
-
52
- @font-face {
53
- font-family: "Lato";
54
- font-style: italic;
55
- font-weight: 300;
56
- src: local("Lato Light Italic"),
57
- local("Lato-LightItalic"),
58
- url("fonts/Lato-LightItalic.ttf") format("truetype");
59
- }
60
-
61
- @font-face {
62
- font-family: "Lato";
63
- font-style: normal;
64
- font-weight: 700;
65
- src: local("Lato Regular"),
66
- local("Lato-Regular"),
67
- url("fonts/Lato-Regular.ttf") format("truetype");
68
- }
69
-
70
- @font-face {
71
- font-family: "Lato";
72
- font-style: italic;
73
- font-weight: 700;
74
- src: local("Lato Italic"),
75
- local("Lato-Italic"),
76
- url("fonts/Lato-RegularItalic.ttf") format("truetype");
77
- }
78
-
79
- /*
80
- * -----------------------------------------------------------
81
- * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
82
- * -----------------------------------------------------------
83
- *
84
- * PREAMBLE
85
- * The goals of the Open Font License (OFL) are to stimulate worldwide
86
- * development of collaborative font projects, to support the font creation
87
- * efforts of academic and linguistic communities, and to provide a free and
88
- * open framework in which fonts may be shared and improved in partnership
89
- * with others.
90
- *
91
- * The OFL allows the licensed fonts to be used, studied, modified and
92
- * redistributed freely as long as they are not sold by themselves. The
93
- * fonts, including any derivative works, can be bundled, embedded,
94
- * redistributed and/or sold with any software provided that any reserved
95
- * names are not used by derivative works. The fonts and derivatives,
96
- * however, cannot be released under any other type of license. The
97
- * requirement for fonts to remain under this license does not apply
98
- * to any document created using the fonts or their derivatives.
99
- *
100
- * DEFINITIONS
101
- * "Font Software" refers to the set of files released by the Copyright
102
- * Holder(s) under this license and clearly marked as such. This may
103
- * include source files, build scripts and documentation.
104
- *
105
- * "Reserved Font Name" refers to any names specified as such after the
106
- * copyright statement(s).
107
- *
108
- * "Original Version" refers to the collection of Font Software components as
109
- * distributed by the Copyright Holder(s).
110
- *
111
- * "Modified Version" refers to any derivative made by adding to, deleting,
112
- * or substituting -- in part or in whole -- any of the components of the
113
- * Original Version, by changing formats or by porting the Font Software to a
114
- * new environment.
115
- *
116
- * "Author" refers to any designer, engineer, programmer, technical
117
- * writer or other person who contributed to the Font Software.
118
- *
119
- * PERMISSION & CONDITIONS
120
- * Permission is hereby granted, free of charge, to any person obtaining
121
- * a copy of the Font Software, to use, study, copy, merge, embed, modify,
122
- * redistribute, and sell modified and unmodified copies of the Font
123
- * Software, subject to the following conditions:
124
- *
125
- * 1) Neither the Font Software nor any of its individual components,
126
- * in Original or Modified Versions, may be sold by itself.
127
- *
128
- * 2) Original or Modified Versions of the Font Software may be bundled,
129
- * redistributed and/or sold with any software, provided that each copy
130
- * contains the above copyright notice and this license. These can be
131
- * included either as stand-alone text files, human-readable headers or
132
- * in the appropriate machine-readable metadata fields within text or
133
- * binary files as long as those fields can be easily viewed by the user.
134
- *
135
- * 3) No Modified Version of the Font Software may use the Reserved Font
136
- * Name(s) unless explicit written permission is granted by the corresponding
137
- * Copyright Holder. This restriction only applies to the primary font name as
138
- * presented to the users.
139
- *
140
- * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
141
- * Software shall not be used to promote, endorse or advertise any
142
- * Modified Version, except to acknowledge the contribution(s) of the
143
- * Copyright Holder(s) and the Author(s) or with their explicit written
144
- * permission.
145
- *
146
- * 5) The Font Software, modified or unmodified, in part or in whole,
147
- * must be distributed entirely under this license, and must not be
148
- * distributed under any other license. The requirement for fonts to
149
- * remain under this license does not apply to any document created
150
- * using the Font Software.
151
- *
152
- * TERMINATION
153
- * This license becomes null and void if any of the above conditions are
154
- * not met.
155
- *
156
- * DISCLAIMER
157
- * THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
158
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
159
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
160
- * OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
161
- * COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
162
- * INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
163
- * DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
164
- * FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
165
- * OTHER DEALINGS IN THE FONT SOFTWARE.
166
- */
167
-
1
+ /*
2
+ * Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/),
3
+ * with Reserved Font Name "Source". All Rights Reserved. Source is a
4
+ * trademark of Adobe Systems Incorporated in the United States and/or other
5
+ * countries.
6
+ *
7
+ * This Font Software is licensed under the SIL Open Font License, Version
8
+ * 1.1.
9
+ *
10
+ * This license is copied below, and is also available with a FAQ at:
11
+ * http://scripts.sil.org/OFL
12
+ */
13
+
14
+ @font-face {
15
+ font-family: "Source Code Pro";
16
+ font-style: normal;
17
+ font-weight: 400;
18
+ src: local("Source Code Pro"),
19
+ local("SourceCodePro-Regular"),
20
+ url("fonts/SourceCodePro-Regular.ttf") format("truetype");
21
+ }
22
+
23
+ @font-face {
24
+ font-family: "Source Code Pro";
25
+ font-style: normal;
26
+ font-weight: 700;
27
+ src: local("Source Code Pro Bold"),
28
+ local("SourceCodePro-Bold"),
29
+ url("fonts/SourceCodePro-Bold.ttf") format("truetype");
30
+ }
31
+
32
+ /*
33
+ * Copyright (c) 2010, Łukasz Dziedzic (dziedzic@typoland.com),
34
+ * with Reserved Font Name Lato.
35
+ *
36
+ * This Font Software is licensed under the SIL Open Font License, Version
37
+ * 1.1.
38
+ *
39
+ * This license is copied below, and is also available with a FAQ at:
40
+ * http://scripts.sil.org/OFL
41
+ */
42
+
43
+ @font-face {
44
+ font-family: "Lato";
45
+ font-style: normal;
46
+ font-weight: 300;
47
+ src: local("Lato Light"),
48
+ local("Lato-Light"),
49
+ url("fonts/Lato-Light.ttf") format("truetype");
50
+ }
51
+
52
+ @font-face {
53
+ font-family: "Lato";
54
+ font-style: italic;
55
+ font-weight: 300;
56
+ src: local("Lato Light Italic"),
57
+ local("Lato-LightItalic"),
58
+ url("fonts/Lato-LightItalic.ttf") format("truetype");
59
+ }
60
+
61
+ @font-face {
62
+ font-family: "Lato";
63
+ font-style: normal;
64
+ font-weight: 700;
65
+ src: local("Lato Regular"),
66
+ local("Lato-Regular"),
67
+ url("fonts/Lato-Regular.ttf") format("truetype");
68
+ }
69
+
70
+ @font-face {
71
+ font-family: "Lato";
72
+ font-style: italic;
73
+ font-weight: 700;
74
+ src: local("Lato Italic"),
75
+ local("Lato-Italic"),
76
+ url("fonts/Lato-RegularItalic.ttf") format("truetype");
77
+ }
78
+
79
+ /*
80
+ * -----------------------------------------------------------
81
+ * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
82
+ * -----------------------------------------------------------
83
+ *
84
+ * PREAMBLE
85
+ * The goals of the Open Font License (OFL) are to stimulate worldwide
86
+ * development of collaborative font projects, to support the font creation
87
+ * efforts of academic and linguistic communities, and to provide a free and
88
+ * open framework in which fonts may be shared and improved in partnership
89
+ * with others.
90
+ *
91
+ * The OFL allows the licensed fonts to be used, studied, modified and
92
+ * redistributed freely as long as they are not sold by themselves. The
93
+ * fonts, including any derivative works, can be bundled, embedded,
94
+ * redistributed and/or sold with any software provided that any reserved
95
+ * names are not used by derivative works. The fonts and derivatives,
96
+ * however, cannot be released under any other type of license. The
97
+ * requirement for fonts to remain under this license does not apply
98
+ * to any document created using the fonts or their derivatives.
99
+ *
100
+ * DEFINITIONS
101
+ * "Font Software" refers to the set of files released by the Copyright
102
+ * Holder(s) under this license and clearly marked as such. This may
103
+ * include source files, build scripts and documentation.
104
+ *
105
+ * "Reserved Font Name" refers to any names specified as such after the
106
+ * copyright statement(s).
107
+ *
108
+ * "Original Version" refers to the collection of Font Software components as
109
+ * distributed by the Copyright Holder(s).
110
+ *
111
+ * "Modified Version" refers to any derivative made by adding to, deleting,
112
+ * or substituting -- in part or in whole -- any of the components of the
113
+ * Original Version, by changing formats or by porting the Font Software to a
114
+ * new environment.
115
+ *
116
+ * "Author" refers to any designer, engineer, programmer, technical
117
+ * writer or other person who contributed to the Font Software.
118
+ *
119
+ * PERMISSION & CONDITIONS
120
+ * Permission is hereby granted, free of charge, to any person obtaining
121
+ * a copy of the Font Software, to use, study, copy, merge, embed, modify,
122
+ * redistribute, and sell modified and unmodified copies of the Font
123
+ * Software, subject to the following conditions:
124
+ *
125
+ * 1) Neither the Font Software nor any of its individual components,
126
+ * in Original or Modified Versions, may be sold by itself.
127
+ *
128
+ * 2) Original or Modified Versions of the Font Software may be bundled,
129
+ * redistributed and/or sold with any software, provided that each copy
130
+ * contains the above copyright notice and this license. These can be
131
+ * included either as stand-alone text files, human-readable headers or
132
+ * in the appropriate machine-readable metadata fields within text or
133
+ * binary files as long as those fields can be easily viewed by the user.
134
+ *
135
+ * 3) No Modified Version of the Font Software may use the Reserved Font
136
+ * Name(s) unless explicit written permission is granted by the corresponding
137
+ * Copyright Holder. This restriction only applies to the primary font name as
138
+ * presented to the users.
139
+ *
140
+ * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
141
+ * Software shall not be used to promote, endorse or advertise any
142
+ * Modified Version, except to acknowledge the contribution(s) of the
143
+ * Copyright Holder(s) and the Author(s) or with their explicit written
144
+ * permission.
145
+ *
146
+ * 5) The Font Software, modified or unmodified, in part or in whole,
147
+ * must be distributed entirely under this license, and must not be
148
+ * distributed under any other license. The requirement for fonts to
149
+ * remain under this license does not apply to any document created
150
+ * using the Font Software.
151
+ *
152
+ * TERMINATION
153
+ * This license becomes null and void if any of the above conditions are
154
+ * not met.
155
+ *
156
+ * DISCLAIMER
157
+ * THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
158
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
159
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
160
+ * OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
161
+ * COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
162
+ * INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
163
+ * DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
164
+ * FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
165
+ * OTHER DEALINGS IN THE FONT SOFTWARE.
166
+ */
167
+