xiki 0.5.0a

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 (252) hide show
  1. data/Gemfile +11 -0
  2. data/LICENSE +22 -0
  3. data/README.markdown +83 -0
  4. data/Rakefile +8 -0
  5. data/bin/xiki +46 -0
  6. data/etc/command/xiki_command.rb +203 -0
  7. data/etc/command/xiki_process.rb +52 -0
  8. data/etc/command/xiki_wrapper +2 -0
  9. data/etc/js/menu1.js +55 -0
  10. data/etc/js/xiki.js +259 -0
  11. data/etc/logo.png +0 -0
  12. data/etc/presentations/bootstrap.deck +5 -0
  13. data/etc/presentations/databases.deck +41 -0
  14. data/etc/presentations/diffs.deck +23 -0
  15. data/etc/presentations/documentation.deck +14 -0
  16. data/etc/presentations/effects.deck +5 -0
  17. data/etc/presentations/face.deck +297 -0
  18. data/etc/presentations/files.deck +79 -0
  19. data/etc/presentations/icons.deck +22 -0
  20. data/etc/presentations/images.deck +24 -0
  21. data/etc/presentations/key_shortcuts.deck +16 -0
  22. data/etc/presentations/macros.deck +18 -0
  23. data/etc/presentations/menu_classes.deck +44 -0
  24. data/etc/presentations/menu_directories.deck +30 -0
  25. data/etc/presentations/notes.deck +19 -0
  26. data/etc/presentations/other_languages.deck +55 -0
  27. data/etc/presentations/other_wiki_syntaxes.deck +4 -0
  28. data/etc/presentations/piano.deck +5 -0
  29. data/etc/presentations/potential/diffs.deck +38 -0
  30. data/etc/presentations/potential/evolution.deck +18 -0
  31. data/etc/presentations/potential/intro.deck +711 -0
  32. data/etc/presentations/potential/intro1.deck +711 -0
  33. data/etc/presentations/potential/intro2.deck +97 -0
  34. data/etc/presentations/potential/make_mysql_menu.deck +36 -0
  35. data/etc/presentations/potential/ruby_development.deck +17 -0
  36. data/etc/presentations/potential/ui_prototyping.deck +50 -0
  37. data/etc/presentations/potential/web_dev.deck +4 -0
  38. data/etc/presentations/potential/web_development.deck +10 -0
  39. data/etc/presentations/potential/wiki.deck +45 -0
  40. data/etc/presentations/presentations.deck +24 -0
  41. data/etc/presentations/rails_development.deck +29 -0
  42. data/etc/presentations/search_key_shortcuts.deck +37 -0
  43. data/etc/presentations/simplest_possible_ui.deck +37 -0
  44. data/etc/presentations/svg.deck +5 -0
  45. data/etc/presentations/testing.deck +28 -0
  46. data/etc/presentations/the_end.deck +13 -0
  47. data/etc/presentations/type_something_and_double_click.deck +57 -0
  48. data/etc/presentations/type_the_acronym.deck +144 -0
  49. data/etc/presentations/web_browser.deck +56 -0
  50. data/etc/presentations/xiki_command.deck +20 -0
  51. data/etc/presentations/xiki_url.deck +14 -0
  52. data/etc/shark.icns +0 -0
  53. data/etc/shark_script.icns +0 -0
  54. data/etc/snippets/html.notes +7 -0
  55. data/etc/snippets/notes.notes +20 -0
  56. data/etc/snippets/rb.notes +38 -0
  57. data/etc/templates/menu_template.menu +2 -0
  58. data/etc/templates/menu_template.rb +8 -0
  59. data/etc/templates/template.rb +5 -0
  60. data/etc/themes/Dark_Metal.notes +28 -0
  61. data/etc/themes/Orange_Path.notes +15 -0
  62. data/etc/themes/Shiny_Blue.notes +27 -0
  63. data/etc/themes/Shiny_Green.notes +27 -0
  64. data/etc/wrappers/wrapper.js +17 -0
  65. data/etc/wrappers/wrapper.py +20 -0
  66. data/etc/wrappers/wrapper.rb +25 -0
  67. data/lib/block.rb +72 -0
  68. data/lib/bookmarks.rb +352 -0
  69. data/lib/buffers.rb +170 -0
  70. data/lib/clipboard.rb +333 -0
  71. data/lib/code.rb +860 -0
  72. data/lib/code_tree.rb +476 -0
  73. data/lib/color.rb +274 -0
  74. data/lib/console.rb +557 -0
  75. data/lib/control_lock.rb +9 -0
  76. data/lib/control_tab.rb +176 -0
  77. data/lib/core_ext.rb +31 -0
  78. data/lib/cursor.rb +111 -0
  79. data/lib/deletes.rb +65 -0
  80. data/lib/diff_log.rb +297 -0
  81. data/lib/effects.rb +145 -0
  82. data/lib/environment.rb +5 -0
  83. data/lib/file_tree.rb +1875 -0
  84. data/lib/files.rb +334 -0
  85. data/lib/hide.rb +259 -0
  86. data/lib/history.rb +286 -0
  87. data/lib/image.rb +51 -0
  88. data/lib/incrementer.rb +15 -0
  89. data/lib/insert.rb +7 -0
  90. data/lib/irc.rb +22 -0
  91. data/lib/key_bindings.rb +658 -0
  92. data/lib/keys.rb +754 -0
  93. data/lib/launcher.rb +1351 -0
  94. data/lib/line.rb +429 -0
  95. data/lib/links.rb +6 -0
  96. data/lib/location.rb +175 -0
  97. data/lib/macros.rb +48 -0
  98. data/lib/man.rb +19 -0
  99. data/lib/menu.rb +708 -0
  100. data/lib/merb.rb +259 -0
  101. data/lib/message.rb +5 -0
  102. data/lib/meths.rb +56 -0
  103. data/lib/mode.rb +34 -0
  104. data/lib/move.rb +248 -0
  105. data/lib/notes.rb +1000 -0
  106. data/lib/numbers.rb +45 -0
  107. data/lib/ol.rb +203 -0
  108. data/lib/ol_helper.rb +44 -0
  109. data/lib/overlay.rb +167 -0
  110. data/lib/pause_means_space.rb +68 -0
  111. data/lib/php.rb +22 -0
  112. data/lib/projects.rb +21 -0
  113. data/lib/relinquish_exception.rb +2 -0
  114. data/lib/remote.rb +206 -0
  115. data/lib/requirer.rb +46 -0
  116. data/lib/rest_tree.rb +108 -0
  117. data/lib/ruby.rb +57 -0
  118. data/lib/ruby_console.rb +165 -0
  119. data/lib/search.rb +1572 -0
  120. data/lib/search_term.rb +40 -0
  121. data/lib/snippet.rb +68 -0
  122. data/lib/specs.rb +229 -0
  123. data/lib/styles.rb +274 -0
  124. data/lib/svn.rb +682 -0
  125. data/lib/text_util.rb +110 -0
  126. data/lib/tree.rb +1871 -0
  127. data/lib/tree_cursor.rb +87 -0
  128. data/lib/trouble_shooting.rb +27 -0
  129. data/lib/url_tree.rb +11 -0
  130. data/lib/view.rb +1474 -0
  131. data/lib/window.rb +133 -0
  132. data/lib/xiki.rb +404 -0
  133. data/menus/accounts.rb +5 -0
  134. data/menus/address_book.rb +21 -0
  135. data/menus/agenda.rb +28 -0
  136. data/menus/all.rb +5 -0
  137. data/menus/amazon.rb +16 -0
  138. data/menus/app.rb +16 -0
  139. data/menus/applescript.rb +46 -0
  140. data/menus/as.rb +15 -0
  141. data/menus/bookmarklet.rb +63 -0
  142. data/menus/bootstrap.rb +568 -0
  143. data/menus/browse.rb +13 -0
  144. data/menus/browser.rb +78 -0
  145. data/menus/cassandra_db.rb +36 -0
  146. data/menus/chmod.rb +27 -0
  147. data/menus/classes.rb +5 -0
  148. data/menus/coffee_script.rb +35 -0
  149. data/menus/computer.rb +24 -0
  150. data/menus/contacts.rb +5 -0
  151. data/menus/cookies.rb +25 -0
  152. data/menus/couch.rb +184 -0
  153. data/menus/crop.rb +45 -0
  154. data/menus/css.rb +55 -0
  155. data/menus/current.rb +5 -0
  156. data/menus/db.rb +12 -0
  157. data/menus/deck.rb +219 -0
  158. data/menus/dictionary.rb +9 -0
  159. data/menus/dir.rb +8 -0
  160. data/menus/disk.rb +5 -0
  161. data/menus/do.rb +13 -0
  162. data/menus/docs.rb +58 -0
  163. data/menus/dotsies.rb +107 -0
  164. data/menus/edited.rb +18 -0
  165. data/menus/emacs.rb +17 -0
  166. data/menus/enter.rb +13 -0
  167. data/menus/eval.rb +17 -0
  168. data/menus/executable.rb +16 -0
  169. data/menus/filter.rb +46 -0
  170. data/menus/firefox.rb +607 -0
  171. data/menus/foo.rb +30 -0
  172. data/menus/french.rb +7 -0
  173. data/menus/git.rb +185 -0
  174. data/menus/gito.rb +785 -0
  175. data/menus/google.rb +35 -0
  176. data/menus/google_images.rb +11 -0
  177. data/menus/google_patents.rb +10 -0
  178. data/menus/gutenberg.rb +13 -0
  179. data/menus/head.rb +10 -0
  180. data/menus/headings.rb +39 -0
  181. data/menus/html.rb +61 -0
  182. data/menus/icon.rb +40 -0
  183. data/menus/images.menu +2 -0
  184. data/menus/img.rb +15 -0
  185. data/menus/info.rb +9 -0
  186. data/menus/ip.rb +10 -0
  187. data/menus/iterm.rb +36 -0
  188. data/menus/itunes.rb +78 -0
  189. data/menus/javascript.rb +74 -0
  190. data/menus/layout.rb +18 -0
  191. data/menus/local_storage.rb +67 -0
  192. data/menus/ls.rb +19 -0
  193. data/menus/mac.rb +87 -0
  194. data/menus/maps.rb +18 -0
  195. data/menus/matches.rb +18 -0
  196. data/menus/memcache.rb +117 -0
  197. data/menus/mkdir.rb +23 -0
  198. data/menus/mongo.rb +83 -0
  199. data/menus/mysql.rb +294 -0
  200. data/menus/node.rb +88 -0
  201. data/menus/open.rb +19 -0
  202. data/menus/outline.rb +24 -0
  203. data/menus/piano.rb +746 -0
  204. data/menus/postgres.rb +34 -0
  205. data/menus/pre.rb +5 -0
  206. data/menus/python.rb +39 -0
  207. data/menus/rails.rb +160 -0
  208. data/menus/rake.rb +12 -0
  209. data/menus/redmine.rb +168 -0
  210. data/menus/riak_tree.rb +204 -0
  211. data/menus/rss.rb +15 -0
  212. data/menus/safari.rb +11 -0
  213. data/menus/sass.rb +15 -0
  214. data/menus/say.rb +6 -0
  215. data/menus/scale.rb +49 -0
  216. data/menus/serve.rb +78 -0
  217. data/menus/shuffle.rb +24 -0
  218. data/menus/spanish.rb +7 -0
  219. data/menus/standalone.rb +57 -0
  220. data/menus/tail.rb +41 -0
  221. data/menus/technologies.rb +19 -0
  222. data/menus/themes.rb +32 -0
  223. data/menus/thesaurus.rb +13 -0
  224. data/menus/to.rb +24 -0
  225. data/menus/twitter.rb +57 -0
  226. data/menus/wikipedia.rb +34 -0
  227. data/menus/words.rb +11 -0
  228. data/spec/code_tree_spec.rb +59 -0
  229. data/spec/diff_log_spec.rb +40 -0
  230. data/spec/file_tree_spec.rb +102 -0
  231. data/spec/keys_spec.rb +24 -0
  232. data/spec/line_spec.rb +68 -0
  233. data/spec/menu_spec.rb +50 -0
  234. data/spec/ol_spec.rb +98 -0
  235. data/spec/remote_spec.rb +43 -0
  236. data/spec/search_spec.rb +162 -0
  237. data/spec/text_util_spec.rb +119 -0
  238. data/spec/tree_cursor_spec.rb +91 -0
  239. data/spec/tree_spec.rb +955 -0
  240. data/tests/console_test.rb +11 -0
  241. data/tests/couch_db_test.rb +12 -0
  242. data/tests/diff_log_test.rb +43 -0
  243. data/tests/el_mixin.rb +16 -0
  244. data/tests/git_test.rb +95 -0
  245. data/tests/keys_test.rb +19 -0
  246. data/tests/line_test.rb +38 -0
  247. data/tests/merb_test.rb +11 -0
  248. data/tests/redmine_test.rb +50 -0
  249. data/tests/remote_test.rb +31 -0
  250. data/tests/rest_tree_test.rb +70 -0
  251. data/xiki.gemspec +37 -0
  252. metadata +332 -0
@@ -0,0 +1,97 @@
1
+ > Xiki Introduction
2
+
3
+ - me: Craig Muth
4
+ - topic: Xiki
5
+
6
+
7
+ > Xiki Introduction
8
+
9
+ - me: Craig Muth
10
+ - topic: Xiki
11
+
12
+ http://xiki.org
13
+
14
+
15
+ > Xiki Introduction
16
+
17
+ - me: Craig Muth
18
+ - topic: Xiki
19
+
20
+ http://xiki.org
21
+ - join the mailing list
22
+
23
+
24
+ > Intro
25
+
26
+ Xiki = eXecutable + wiki
27
+
28
+
29
+ > Intro
30
+
31
+ Xiki = eXecutable + wiki
32
+
33
+ - What Is A Wiki?:
34
+
35
+
36
+ > Intro
37
+
38
+ Xiki = eXecutable + wiki
39
+
40
+ - what is a wiki?:
41
+ - global namespace
42
+
43
+
44
+ > Intro
45
+
46
+ Xiki = eXecutable + wiki
47
+
48
+ - what is a wiki?:
49
+ - global namespace
50
+ - simple text syntaxes
51
+
52
+
53
+ > Intro
54
+
55
+ Xiki = eXecutable + wiki
56
+
57
+ Xiki = text commands + global namespace
58
+
59
+
60
+ > Examples
61
+
62
+ ip
63
+ $ ls -l
64
+ fit
65
+
66
+
67
+ > Intro
68
+
69
+ Xiki += menus
70
+
71
+
72
+
73
+ > Intro
74
+
75
+ Xiki += menus
76
+
77
+ - So you can make general-purpuse user interfaces
78
+
79
+
80
+ > Examples
81
+
82
+ computer
83
+ rails1
84
+ face
85
+
86
+
87
+ > Everything is text
88
+
89
+ face/
90
+
91
+
92
+ > Everything is text
93
+
94
+ - indented 2 spaces!
95
+
96
+ face/
97
+
@@ -0,0 +1,36 @@
1
+ > Summary
2
+ - Make simple menu
3
+
4
+
5
+ > Summary
6
+ - Make simple menu
7
+ - to access external tool
8
+
9
+
10
+ > Summary
11
+ - Make simple menu
12
+ - to access external tool
13
+ - mysql
14
+
15
+
16
+ > List tables
17
+
18
+
19
+ >
20
+ - TODO
21
+ - finish
22
+
23
+
24
+ > Hints
25
+ >> List tables
26
+ tably
27
+
28
+ /Users/craig/menus/
29
+ - tably.rb
30
+ | class Tably
31
+ | def self.menu name=nil
32
+ | return `mysql dev -u root -e "show tables"` if ! name
33
+ | `mysql dev -u root -e "select * from #{name}"`
34
+ | end
35
+ | end
36
+
@@ -0,0 +1,17 @@
1
+ > Show eval'ing code
2
+
3
+
4
+ > Show navigating files
5
+
6
+
7
+ > Show running shell commands
8
+
9
+ - using as+upper
10
+ - do with manual rspec class for small project
11
+
12
+
13
+ > Output log
14
+
15
+ Ol.line
16
+
17
+
@@ -0,0 +1,50 @@
1
+ > Type the interface
2
+
3
+ - When your UI is just text
4
+ - you can type the UI
5
+
6
+
7
+ > Examples
8
+
9
+ - Create an email UI...
10
+
11
+ email/
12
+
13
+
14
+ > Stand-alone js component
15
+
16
+ @standalone/
17
+ - Inbox/
18
+ - 4:02pm Steve, Hello/
19
+ - 10:31am Sam, Late for work/
20
+ - 10:03am Sam, Late for breakfast/
21
+ - Sent/
22
+ - 10:07am Sam, Get a poptart/
23
+ - Compose/
24
+
25
+
26
+ > Node.js server
27
+
28
+ @serve/
29
+ - San Francisco/
30
+ - 415/
31
+ - 310/
32
+ - 510/
33
+ - Mountain View/
34
+ - 408/
35
+ - 650/
36
+
37
+
38
+ > Code
39
+ - Add code later
40
+
41
+ area codes/
42
+ - San Francisco/
43
+ - 94117/
44
+ - 94116/
45
+ - 94109/
46
+ - Mountain View/
47
+ - 94041/
48
+ - 94042/
49
+
50
+
@@ -0,0 +1,4 @@
1
+ > already covered in main presentation?
2
+ dom
3
+
4
+
@@ -0,0 +1,10 @@
1
+ > Explore
2
+
3
+ web development/
4
+
5
+
6
+ > Blink
7
+
8
+ js/$('p').blink()
9
+
10
+
@@ -0,0 +1,45 @@
1
+ > Wiki syntax
2
+
3
+ - Format happens as you type
4
+
5
+
6
+ > Wiki syntax
7
+
8
+ - Format happens as you type
9
+ - wysiwyg wiki
10
+
11
+
12
+ > Syntaxes
13
+
14
+ >> Subheadings
15
+
16
+ - bullets
17
+ - bullets
18
+
19
+ Highlighting ~words~
20
+
21
+
22
+ > Syntaxes
23
+
24
+ - exclamation at end!
25
+
26
+ - label: hey
27
+
28
+ google/
29
+ - label) hey
30
+
31
+
32
+ > "Pretend like it's there"
33
+
34
+ - like wiki's
35
+
36
+
37
+ > "Pretend like it's there"
38
+
39
+ - creating files and dirs
40
+
41
+
42
+ > "Pretend like it's there"
43
+
44
+ - creating db records and tables
45
+
@@ -0,0 +1,24 @@
1
+ > Make slides
2
+
3
+ - /tmp/
4
+ - fake_presentation.notes
5
+
6
+ - Create some slides...
7
+
8
+
9
+ > Make slides
10
+
11
+ - /tmp/
12
+ - fake_presentation.notes
13
+
14
+ - key shortcuts: left and right arrow keys
15
+
16
+
17
+ > Make bullets appear
18
+
19
+ - /tmp/
20
+ - fake_presentation.notes
21
+
22
+ - Create a few slides
23
+ - with subtle differences
24
+
@@ -0,0 +1,29 @@
1
+ > Generate app
2
+
3
+ - Make app, generate scaffold, view page...
4
+
5
+ /tmp/rails1/
6
+ @rails
7
+
8
+
9
+ > Edit files
10
+
11
+ - Show files...
12
+
13
+
14
+ > Re-play requests
15
+
16
+ - key: enter+last+visit
17
+
18
+ visits/turtles/swim?a=aa&b=bb
19
+
20
+ - replays request in browser
21
+
22
+
23
+ > Re-play requests
24
+
25
+ visits/turtles/swim?a=aa&b=bb
26
+
27
+ - generate a test from the request
28
+
29
+
@@ -0,0 +1,37 @@
1
+ > Overview
2
+
3
+ - Keyboard shortcuts to do during searches
4
+
5
+ search+delete
6
+
7
+
8
+ > Moving stuff around
9
+
10
+ search+value
11
+ search+pull
12
+ search+enter
13
+
14
+
15
+ > Remembering for later
16
+
17
+ search+have+todo
18
+ search+have+nav
19
+
20
+
21
+ > Searching
22
+
23
+ search+bookmark
24
+ search+todo
25
+ search+just+diffs
26
+ just+todo
27
+
28
+
29
+ > Selection
30
+
31
+ search+word
32
+ search+usurp
33
+ search+yank
34
+ search++
35
+ search+-
36
+
37
+
@@ -0,0 +1,37 @@
1
+ > Intro
2
+
3
+ Xiki Screencast
4
+ - Topic: Simplest possible user interface
5
+
6
+
7
+ > Intro
8
+
9
+ Xiki Screencast
10
+ - Topic: Simplest possible user interface
11
+
12
+ http://xiki.org
13
+ - Like a shell terminal but better
14
+
15
+
16
+ > Example
17
+
18
+
19
+
20
+ > End
21
+
22
+
23
+
24
+ > Hints
25
+ >> Example
26
+
27
+ class Clam
28
+ def self.hi
29
+ "heyy"
30
+ end
31
+ end
32
+
33
+ Clam/
34
+ - .hi/
35
+
36
+
37
+
@@ -0,0 +1,5 @@
1
+ > Demo
2
+
3
+ svg
4
+
5
+
@@ -0,0 +1,28 @@
1
+ > One-liner
2
+
3
+ - Run in left bar:
4
+ Foo.add(1, 2).should == 3
5
+
6
+ >>
7
+ class Foo
8
+ def self.add a, b
9
+ 3
10
+ end
11
+ end
12
+
13
+
14
+ > Run in-place
15
+
16
+ - key: do+as+test
17
+
18
+
19
+ > Tests menus
20
+
21
+ - explore, run, navigate...
22
+
23
+
24
+ > Add to the left bar
25
+
26
+ - key: as+todo
27
+
28
+
@@ -0,0 +1,13 @@
1
+ > The End
2
+
3
+ - follow: twitter.com/xiki
4
+ - will tweet about screencasts
5
+
6
+ - If you liked presentation
7
+ - Add comments on meetup.com page
8
+
9
+ - Pair
10
+ - Willing to meet and pair with anyone
11
+
12
+ - Looking for other venus to present Xiki
13
+ - Know of any?