canis 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +45 -0
  3. data/CHANGES +52 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +24 -0
  7. data/Rakefile +2 -0
  8. data/canis.gemspec +25 -0
  9. data/examples/alpmenu.rb +46 -0
  10. data/examples/app.sample +19 -0
  11. data/examples/appemail.rb +191 -0
  12. data/examples/atree.rb +105 -0
  13. data/examples/bline.rb +181 -0
  14. data/examples/common/devel.rb +319 -0
  15. data/examples/common/file.rb +93 -0
  16. data/examples/data/README.markdown +9 -0
  17. data/examples/data/brew.txt +38 -0
  18. data/examples/data/color.2 +37 -0
  19. data/examples/data/gemlist.txt +59 -0
  20. data/examples/data/lotr.txt +12 -0
  21. data/examples/data/ports.txt +136 -0
  22. data/examples/data/table.txt +37 -0
  23. data/examples/data/tasks.csv +88 -0
  24. data/examples/data/tasks.txt +27 -0
  25. data/examples/data/todo.txt +16 -0
  26. data/examples/data/todocsv.csv +28 -0
  27. data/examples/data/unix1.txt +21 -0
  28. data/examples/data/unix2.txt +11 -0
  29. data/examples/dbdemo.rb +506 -0
  30. data/examples/dirtree.rb +177 -0
  31. data/examples/newtabbedwindow.rb +100 -0
  32. data/examples/newtesttabp.rb +92 -0
  33. data/examples/tabular.rb +212 -0
  34. data/examples/tasks.rb +179 -0
  35. data/examples/term2.rb +88 -0
  36. data/examples/testbuttons.rb +307 -0
  37. data/examples/testcombo.rb +102 -0
  38. data/examples/testdb.rb +182 -0
  39. data/examples/testfields.rb +208 -0
  40. data/examples/testflowlayout.rb +43 -0
  41. data/examples/testkeypress.rb +98 -0
  42. data/examples/testlistbox.rb +187 -0
  43. data/examples/testlistbox1.rb +199 -0
  44. data/examples/testmessagebox.rb +144 -0
  45. data/examples/testprogress.rb +116 -0
  46. data/examples/testree.rb +107 -0
  47. data/examples/testsplitlayout.rb +53 -0
  48. data/examples/testsplitlayout1.rb +49 -0
  49. data/examples/teststacklayout.rb +48 -0
  50. data/examples/testwsshortcuts.rb +68 -0
  51. data/examples/testwsshortcuts2.rb +129 -0
  52. data/lib/canis.rb +16 -0
  53. data/lib/canis/core/docs/index.txt +104 -0
  54. data/lib/canis/core/docs/list.txt +16 -0
  55. data/lib/canis/core/docs/style_help.yml +34 -0
  56. data/lib/canis/core/docs/tabbedpane.txt +15 -0
  57. data/lib/canis/core/docs/table.txt +31 -0
  58. data/lib/canis/core/docs/textpad.txt +48 -0
  59. data/lib/canis/core/docs/tree.txt +23 -0
  60. data/lib/canis/core/include/.DS_Store +0 -0
  61. data/lib/canis/core/include/action.rb +83 -0
  62. data/lib/canis/core/include/actionmanager.rb +49 -0
  63. data/lib/canis/core/include/appmethods.rb +179 -0
  64. data/lib/canis/core/include/bordertitle.rb +49 -0
  65. data/lib/canis/core/include/canisparser.rb +100 -0
  66. data/lib/canis/core/include/colorparser.rb +437 -0
  67. data/lib/canis/core/include/defaultfilerenderer.rb +64 -0
  68. data/lib/canis/core/include/io.rb +320 -0
  69. data/lib/canis/core/include/layouts/SplitLayout.rb +161 -0
  70. data/lib/canis/core/include/layouts/abstractlayout.rb +213 -0
  71. data/lib/canis/core/include/layouts/flowlayout.rb +104 -0
  72. data/lib/canis/core/include/layouts/stacklayout.rb +109 -0
  73. data/lib/canis/core/include/listbindings.rb +89 -0
  74. data/lib/canis/core/include/listeditable.rb +319 -0
  75. data/lib/canis/core/include/listoperations.rb +61 -0
  76. data/lib/canis/core/include/listselectionmodel.rb +388 -0
  77. data/lib/canis/core/include/multibuffer.rb +173 -0
  78. data/lib/canis/core/include/ractionevent.rb +73 -0
  79. data/lib/canis/core/include/rchangeevent.rb +27 -0
  80. data/lib/canis/core/include/rhistory.rb +95 -0
  81. data/lib/canis/core/include/rinputdataevent.rb +47 -0
  82. data/lib/canis/core/include/textdocument.rb +111 -0
  83. data/lib/canis/core/include/vieditable.rb +175 -0
  84. data/lib/canis/core/include/widgetmenu.rb +66 -0
  85. data/lib/canis/core/system/colormap.rb +165 -0
  86. data/lib/canis/core/system/keydefs.rb +32 -0
  87. data/lib/canis/core/system/ncurses.rb +237 -0
  88. data/lib/canis/core/system/panel.rb +129 -0
  89. data/lib/canis/core/system/window.rb +1081 -0
  90. data/lib/canis/core/util/ansiparser.rb +119 -0
  91. data/lib/canis/core/util/app.rb +696 -0
  92. data/lib/canis/core/util/basestack.rb +412 -0
  93. data/lib/canis/core/util/defaultcolorparser.rb +84 -0
  94. data/lib/canis/core/util/extras/README +5 -0
  95. data/lib/canis/core/util/extras/bottomline.rb +1815 -0
  96. data/lib/canis/core/util/extras/padreader.rb +192 -0
  97. data/lib/canis/core/util/focusmanager.rb +31 -0
  98. data/lib/canis/core/util/helpmanager.rb +160 -0
  99. data/lib/canis/core/util/oldwidgetshortcuts.rb +304 -0
  100. data/lib/canis/core/util/promptmenu.rb +235 -0
  101. data/lib/canis/core/util/rcommandwindow.rb +933 -0
  102. data/lib/canis/core/util/rdialogs.rb +520 -0
  103. data/lib/canis/core/util/textutils.rb +74 -0
  104. data/lib/canis/core/util/viewer.rb +238 -0
  105. data/lib/canis/core/util/widgetshortcuts.rb +508 -0
  106. data/lib/canis/core/widgets/applicationheader.rb +103 -0
  107. data/lib/canis/core/widgets/box.rb +58 -0
  108. data/lib/canis/core/widgets/divider.rb +310 -0
  109. data/lib/canis/core/widgets/extras/README.md +12 -0
  110. data/lib/canis/core/widgets/extras/rtextarea.rb +960 -0
  111. data/lib/canis/core/widgets/extras/stackflow.rb +474 -0
  112. data/lib/canis/core/widgets/keylabelprinter.rb +194 -0
  113. data/lib/canis/core/widgets/listbox.rb +326 -0
  114. data/lib/canis/core/widgets/listfooter.rb +86 -0
  115. data/lib/canis/core/widgets/rcombo.rb +210 -0
  116. data/lib/canis/core/widgets/rcontainer.rb +415 -0
  117. data/lib/canis/core/widgets/rlink.rb +30 -0
  118. data/lib/canis/core/widgets/rmenu.rb +970 -0
  119. data/lib/canis/core/widgets/rmenulink.rb +30 -0
  120. data/lib/canis/core/widgets/rmessagebox.rb +400 -0
  121. data/lib/canis/core/widgets/rprogress.rb +118 -0
  122. data/lib/canis/core/widgets/rtabbedpane.rb +631 -0
  123. data/lib/canis/core/widgets/rtabbedwindow.rb +70 -0
  124. data/lib/canis/core/widgets/rwidget.rb +3634 -0
  125. data/lib/canis/core/widgets/scrollbar.rb +147 -0
  126. data/lib/canis/core/widgets/statusline.rb +113 -0
  127. data/lib/canis/core/widgets/table.rb +1072 -0
  128. data/lib/canis/core/widgets/tabular.rb +264 -0
  129. data/lib/canis/core/widgets/textpad.rb +1674 -0
  130. data/lib/canis/core/widgets/tree.rb +690 -0
  131. data/lib/canis/core/widgets/tree/treecellrenderer.rb +150 -0
  132. data/lib/canis/core/widgets/tree/treemodel.rb +432 -0
  133. data/lib/canis/version.rb +3 -0
  134. metadata +229 -0
@@ -0,0 +1,93 @@
1
+ # ----------------------------------------------------------------------------- #
2
+ # File: file.rb
3
+ # Description: some common file related methods which can be used across
4
+ # file manager demos, since we seems to have a lot of them :)
5
+ # Author: jkepler http://github.com/mare-imbrium/canis/
6
+ # Date: 2011-11-15 - 19:54
7
+ # License: Same as Ruby's License (http://www.ruby-lang.org/LICENSE.txt)
8
+ # Last update: 2014-07-10 14:49
9
+ # ----------------------------------------------------------------------------- #
10
+ # NOTE after calling shell_out you now need to call Window.refresh_all if you have
11
+ # pads on the screen which are getting left black
12
+
13
+ require 'canis/core/include/appmethods'
14
+ module Canis
15
+ def file_edit fp #=@current_list.filepath
16
+ #$log.debug " edit #{fp}"
17
+ editor = ENV['EDITOR'] || 'vi'
18
+ vimp = %x[which #{editor}].chomp
19
+ shell_out "#{vimp} #{fp}"
20
+ Window.refresh_all
21
+ end
22
+
23
+ # TODO we need to move these to some common file so differnt programs and demos
24
+ # can use them on pressing space or enter.
25
+ def file_page fp #=@current_list.filepath
26
+ unless File.exists? fp
27
+ pwd = %x[pwd]
28
+ alert "No such file. My pwd is #{pwd} "
29
+ return
30
+ end
31
+ ft=%x[file #{fp}]
32
+ if ft.index("text")
33
+ pager = ENV['PAGER'] || 'less'
34
+ vimp = %x[which #{pager}].chomp
35
+ shell_out "#{vimp} #{fp}"
36
+ Window.refresh_all
37
+ elsif ft.index(/zip/i)
38
+ shell_out "tar tvf #{fp} | less"
39
+ Window.refresh_all
40
+ elsif ft.index(/directory/i)
41
+ shell_out "ls -lh #{fp} | less"
42
+ Window.refresh_all
43
+ else
44
+ alert "#{fp} is not text, not paging "
45
+ #use_on_file "als", fp # only zip or archive
46
+ end
47
+ end
48
+ def file_listing path, config={}
49
+ listing = config[:mode] || :SHORT
50
+ ret = []
51
+ if File.exists? path
52
+ files = Dir.new(path).entries
53
+ files.delete(".")
54
+ return files if listing == :SHORT
55
+
56
+ files.each do |f|
57
+ if listing == :LONG
58
+ pf = File.join(path, f)
59
+ if File.exists? pf
60
+ $log.info " File (#{f}) found "
61
+ else
62
+ $log.info " File (#{f}) NOT found "
63
+ end
64
+ stat = File.stat(pf)
65
+ ff = "%10s %s %s" % [readable_file_size(stat.size,1), date_format(stat.mtime), f]
66
+ ret << ff
67
+ end
68
+ end
69
+ end
70
+ return ret
71
+ end
72
+ ## code related to long listing of files
73
+ GIGA_SIZE = 1073741824.0
74
+ MEGA_SIZE = 1048576.0
75
+ KILO_SIZE = 1024.0
76
+
77
+ # Return the file size with a readable style.
78
+ def readable_file_size(size, precision)
79
+ case
80
+ #when size == 1 : "1 B"
81
+ when size < KILO_SIZE then "%d B" % size
82
+ when size < MEGA_SIZE then "%.#{precision}f K" % (size / KILO_SIZE)
83
+ when size < GIGA_SIZE then "%.#{precision}f M" % (size / MEGA_SIZE)
84
+ else "%.#{precision}f G" % (size / GIGA_SIZE)
85
+ end
86
+ end
87
+ ## format date for file given stat
88
+ def date_format t
89
+ t.strftime "%Y/%m/%d"
90
+ end
91
+
92
+ end # module
93
+ include Canis
@@ -0,0 +1,9 @@
1
+ I've put some data here to use in programs as text for textareas, textviews or lists.
2
+
3
+ brew.txt - single list, use in listboxes
4
+ color.2 - ANSI formatted text, use in formatted textview
5
+ gemlist.txt - single column list
6
+ lotr.txt - running text for text views
7
+ ports.txt - 3 column list, use in tables, tabular
8
+ unix1.txt - running text
9
+ unix2.txt - running text
@@ -0,0 +1,38 @@
1
+ ack
2
+ aqua-less
3
+ atool
4
+ bash-completion
5
+ calcurse
6
+ cmake
7
+ coreutils
8
+ curl
9
+ elinks
10
+ findutils
11
+ gawk
12
+ gettext
13
+ git
14
+ gnu-sed
15
+ grep
16
+ htop
17
+ jed
18
+ libevent
19
+ moreutils
20
+ most
21
+ msmtp
22
+ multitail
23
+ mysql
24
+ oniguruma
25
+ pcre
26
+ pidof
27
+ pigz
28
+ pkg-config
29
+ pv
30
+ readline
31
+ rlwrap
32
+ s-lang
33
+ sqlite
34
+ tal
35
+ task
36
+ tig
37
+ tmux
38
+ wget
@@ -0,0 +1,37 @@
1
+ Showing all items...
2
+ (8b0dbf) #enh view with table, text, list, tree, fields hash
3
+ (3ef256) #fix clearing/hiding widget
4
+ (df584b) %menu list place cursor firstchar match
5
+ (749828) %menu RT_ARROW if none go left
6
+ (ed1515) %vimsplit when adding, put grabbar cmd in system_commands
7
+ (b3102b) %listbox reduce repaint, only if change, or selection
8
+ (344ad2) %form dn_arrow to lower field, rt_arrow to right field
9
+ (35bed1) %tabularwidget ask_select and ask_unselect
10
+ (7c24e7) check other widgets for color changes
11
+ (f864fe) check for #UTF-8 errors where match method used #fix
12
+ (4bef44) testdir returns path wrong if i use ../ #fix
13
+ (2171c9) %TabularWidget example scrollbar showing white space at end #fix
14
+ (ed7b0a) search in tabular does not take offset of header into account #fix
15
+ (fc95e4) #enh widgets can have %keylabels, so mode gets taken care of auto
16
+ (c538e9) app_header assumes root_window, shd take window width into acount
17
+ (e22c8e) menu in dbdemo one column short (ony after F4 closes) #fix
18
+ (83dfff) additional footer text in text view area #hold
19
+ (891157) maybe selected and focussed should be shown same so no confusion
20
+ (dd5f96) calculate color_pair once, and not so many times #fix
21
+ (2406f8) listcellrenderer is horribly complicated - simplify
22
+ (f42383) reduce #repaint in #textarea and #tree
23
+ (543b53) dock through div by zero if row Ncurses.Lines-1 #fix
24
+ (c48a48) The view in #dbdemo should allow sorting on header. and maybe select one row
25
+ (85461c) common routine tabular(headings,content)
26
+ (9b3501) sort on tabularwidget with resultset sometimes gives error ofcomparison
27
+ (31f476) put comopnent traversal into traversal module
28
+ (5be1c4) popuplist: space in single selection should select?
29
+ (330928) system shell etc menu items should be available somehow ifwe want
30
+ (3663dc) install mysql and gem and test resultset with that too
31
+ (745c3f) remove multiform
32
+ 
33
+ ==================== TODAY ====================
34
+ (d56b4d) alert dialog overflow on data, shd have increased in size #fix #today
35
+ 
36
+ ==================== URGENT ====================
37
+ (140d16) #fix %testvimsplit not sizing STACK correctly #urgent
@@ -0,0 +1,59 @@
1
+ activesupport (3.1.0, 3.0.10)
2
+ arrayfields (4.7.4)
3
+ bond (0.4.1)
4
+ bugzyrb (0.3.8)
5
+ bundler (1.0.18)
6
+ cheat (1.3.0)
7
+ chronic (0.6.4, 0.3.0)
8
+ colored (1.2)
9
+ dooby (0.3.1)
10
+ fattr (2.2.0)
11
+ ffi (1.0.9)
12
+ ffi-locale (1.0.1)
13
+ ffi-ncurses (0.4.0)
14
+ gem-man (0.3.0)
15
+ gemcutter (0.7.0)
16
+ gemedit (1.0.1)
17
+ git (1.2.5)
18
+ gmail (0.4.0)
19
+ gmail_xoauth (0.3.0)
20
+ growl (1.0.3)
21
+ highline (1.6.2, 1.6.1)
22
+ hoe (2.12.3)
23
+ i18n (0.6.0)
24
+ interactive_editor (0.0.10)
25
+ jeweler (1.6.4)
26
+ json_pure (1.6.1)
27
+ lightning (0.4.0)
28
+ live_console (0.2.1)
29
+ mail (2.3.0)
30
+ main (4.7.7, 4.2.0)
31
+ map (4.3.0)
32
+ maruku (0.6.0)
33
+ mime (0.1)
34
+ mime-types (1.16)
35
+ multi_json (1.0.3)
36
+ ncurses (1.2.4)
37
+ nokogiri (1.5.0)
38
+ oauth (0.4.5)
39
+ optiflag (0.7)
40
+ polyglot (0.3.2)
41
+ qwandry (0.1.4)
42
+ rake (0.9.2, 0.8.7)
43
+ random_data (1.5.2)
44
+ rubyforge (2.0.4)
45
+ rubygems-update (1.8.10)
46
+ sequel (3.27.0)
47
+ snipplr (0.0.9)
48
+ spoon (0.0.1)
49
+ sqlite3 (1.3.4)
50
+ sqlite3-ruby (1.3.3)
51
+ subcommand (1.0.6)
52
+ syntax (1.0.0)
53
+ terminal-table (1.4.2)
54
+ thor (0.14.6)
55
+ todorb (1.2.3)
56
+ treetop (1.4.10)
57
+ tzinfo (0.3.29)
58
+ vmail (2.3.2)
59
+ yard (0.7.2)
@@ -0,0 +1,12 @@
1
+ I amar prestar aen. The world is changed. Han matho ne nen. I feel it in the water. Han mathon ned cae. I feel it in the earth. A han noston ned gwilith. I smell it in the air. Much that once was is lost, for none now live who remember it.
2
+
3
+ It began with the forging of the Great Rings. Three were given to the Elves, immortal, wisest and fairest of all beings. Seven to the Dwarf-Lords, great miners and craftsmen of the mountain halls. And nine, nine rings were gifted to the race of Men, who above all else desire power. For within these rings was bound the strength and the will to govern each race. But they were all of them deceived, for another ring was made. Deep in the land of Mordor, in the Fires of Mount Doom, the Dark Lord Sauron forged in secret a master ring to control all others, and into this ring he poured his cruelty, his malice and his will to dominate all life. One ring to rule them all.
4
+
5
+ One by one, the free lands of Middle-Earth fell to the power of the Ring, but there were some who resisted. A last alliance of Men and Elves marched against the armies of Mordor, and on the very slopes of Mount Doom, they fought for the freedom of Middle-Earth. Victory was near, but the power of the ring could not be undone.
6
+ It was in this moment, when all hope had faded, that Isildur, son of the king, took up his father's sword.
7
+
8
+ Sauron, the enemy of the free peoples of Middle-Earth, was defeated. The Ring passed to Isildur, who had this once chance to destroy evil forever. But the hearts of Men are easily corrupted. And the ring of power has a will of its own. It betrayed Isildur, to his death. And some things that should not have been forgotten were lost. History became legend, legend became myth. And for two and a half thousand years, the ring passed out of all knowledge. Until, when chance came, it ensnared a new bearer.
9
+
10
+ The Ring came to the creature Gollum, who took it deep into the tunnels of the Misty Mountains. And there it consumed him. The ring brought to Gollum unnatural long life. For five hundred years it poisoned his mind, and in the gloom of Gollum's cave, it waited. Darkness crept back into the forests of the world. Rumor grew of a shadow in the East, whispers of a nameless fear, and the Ring of Power percieved its time had now come. It abandoned Gollum. But something happened then that the Ring did not intend. It was picked up by the most unlikely creature imaginable: a Hobbit, Bilbo Baggins, of the Shire.
11
+
12
+ For the time will soon come when hobbits will shape the fortunes of all.
@@ -0,0 +1,136 @@
1
+ alpine @2.00 mail/alpine
2
+ apr @1.4.5 devel/apr
3
+ apr-util @1.3.12 devel/apr-util
4
+ autoconf @2.68 devel/autoconf
5
+ automake @1.11.1 devel/automake
6
+ bash @4.2.10 shells/bash
7
+ bash-completion @1.3 sysutils/bash-completion
8
+ bison @2.5 devel/bison
9
+ boost @1.47.0 devel/boost
10
+ boost-jam @3.1.18 devel/boost-jam
11
+ bzip2 @1.0.6 archivers/bzip2
12
+ coreutils @8.14 sysutils/coreutils
13
+ cppunit @1.12.1 devel/cppunit
14
+ ctags @5.8 devel/ctags
15
+ curl @7.22.0 net/curl
16
+ curl-ca-bundle @7.22.0 net/curl-ca-bundle
17
+ cyrus-sasl2 @2.1.23 security/cyrus-sasl2
18
+ db46 @4.6.21 databases/db46
19
+ dirac @1.0.2 multimedia/dirac
20
+ elvis @2.2_0 editors/elvis
21
+ expat @2.0.1 textproc/expat
22
+ expat @2.0.1 textproc/expat
23
+ faac @1.28 audio/faac
24
+ faad2 @2.7 audio/faad2
25
+ ffmpeg @0.7.6 multimedia/ffmpeg
26
+ file @5.09 sysutils/file
27
+ findutils @4.4.2 sysutils/findutils
28
+ flex @2.5.35 devel/flex
29
+ gawk @4.0.0 lang/gawk
30
+ gdbm @1.9.1 databases/gdbm
31
+ gettext @0.18.1.1 devel/gettext
32
+ gettext @0.18.1.1 devel/gettext
33
+ git-core @1.7.7 devel/git-core
34
+ glib2 @2.28.8 devel/glib2
35
+ gmake @3.82 devel/gmake
36
+ gmp @5.0.2 devel/gmp
37
+ gnupg @1.4.11 mail/gnupg
38
+ gperf @3.0.4 devel/gperf
39
+ gperf @3.0.4 devel/gperf
40
+ grep @2.9 sysutils/grep
41
+ groff @1.21 sysutils/groff
42
+ gsed @4.2.1 textproc/gsed
43
+ gzip @1.4 archivers/gzip
44
+ help2man @1.40.4 textproc/help2man
45
+ icu @4.8.1 devel/icu
46
+ irssi @0.8.15 irc/irssi
47
+ joe @3.7 editors/joe
48
+ lame @3.99 audio/lame
49
+ lame @3.99 audio/lame
50
+ libao @1.1.0 audio/libao
51
+ libiconv @1.14 textproc/libiconv
52
+ libiconv @1.14 textproc/libiconv
53
+ libid3tag @0.15.1b audio/libid3tag
54
+ libidn @1.22 mail/libidn
55
+ libmad @0.15.1b audio/libmad
56
+ libmp3splt @0.5.7a audio/libmp3splt
57
+ libogg @1.3.0 multimedia/libogg
58
+ liboil @0.3.17 devel/liboil
59
+ libpng @1.4.8 graphics/libpng
60
+ libsdl @1.2.14 devel/libsdl
61
+ libtheora @1.1.1 multimedia/libtheora
62
+ libtool @2.4.2 devel/libtool
63
+ libusb @1.0.8 devel/libusb
64
+ libvorbis @1.3.2 audio/libvorbis
65
+ libxml2 @2.7.8 textproc/libxml2
66
+ links @2.3 www/links
67
+ lzmautils @4.32.7 archivers/lzmautils
68
+ m4 @1.4.16 devel/m4
69
+ macutil @2.0b3 sysutils/macutil
70
+ mc @4.7.5.2 sysutils/mc
71
+ mp3splt @2.2.6a audio/mp3splt
72
+ mp3wrap @0.5 audio/mp3wrap
73
+ mp4v2 @1.9.1 multimedia/mp4v2
74
+ mpack @1.6 mail/mpack
75
+ mpg321 @0.2.10 audio/mpg321
76
+ ncftp @3.2.5 net/ncftp
77
+ ncurses @5.9 devel/ncurses
78
+ ncurses @5.9 devel/ncurses
79
+ ncursesw @5.8 devel/ncursesw
80
+ ncursesw @5.8 devel/ncursesw
81
+ neon @0.29.6 www/neon
82
+ netcat @1.10 net/netcat
83
+ openldap @2.4.21 databases/openldap
84
+ openssl @1.0.0e devel/openssl
85
+ p5-compress-raw-bzip2 @2.37.0 perl/p5-compress-raw-bzip2
86
+ p5-compress-raw-zlib @2.35.0 perl/p5-compress-raw-zlib
87
+ p5-crypt-ssleay @0.580.0 perl/p5-crypt-ssleay
88
+ p5-error @0.170.160 perl/p5-error
89
+ p5-html-parser @3.680.0 perl/p5-html-parser
90
+ p5-html-tagset @3.200.0 perl/p5-html-tagset
91
+ p5-io-compress @2.35.0 perl/p5-io-compress
92
+ p5-libwww-perl @6.20.0 perl/p5-libwww-perl
93
+ p5-locale-gettext @1.50.0 perl/p5-locale-gettext
94
+ p5-svn-simple @0.280.0 perl/p5-svn-simple
95
+ p5-term-readkey @2.300.0 perl/p5-term-readkey
96
+ p5-uri @1.580.0 perl/p5-uri
97
+ pcre @8.12 devel/pcre
98
+ perl5 @5.12.3 lang/perl5
99
+ perl5.8 @5.8.9 lang/perl5.8
100
+ pkgconfig @0.26 devel/pkgconfig
101
+ popt @1.16 devel/popt
102
+ pv @1.2.0 sysutils/pv
103
+ readline @6.2.000 devel/readline
104
+ rsync @3.0.8 net/rsync
105
+ schroedinger @1.0.10 multimedia/schroedinger
106
+ serf @0.7.2 www/serf
107
+ slang2 @2.2.3 lang/slang2
108
+ source-highlight @3.1.4 textproc/source-highlight
109
+ sqlite3 @3.7.8 databases/sqlite3
110
+ subversion @1.7.0 devel/subversion
111
+ subversion-perlbindings @1.7.0 devel/subversion-perlbindings
112
+ surfraw @2.2.1 net/surfraw
113
+ vim @7.3.286 editors/vim
114
+ wget @1.13.4 net/wget
115
+ x264 @20110628 multimedia/x264
116
+ xorg-bigreqsproto @1.1.1 x11/xorg-bigreqsproto
117
+ xorg-inputproto @2.0.2 x11/xorg-inputproto
118
+ xorg-kbproto @1.0.5 x11/xorg-kbproto
119
+ xorg-libX11 @1.4.4 x11/xorg-libX11
120
+ xorg-libXau @1.0.6 x11/xorg-libXau
121
+ xorg-libXdmcp @1.1.0 x11/xorg-libXdmcp
122
+ xorg-libXext @1.3.0 x11/xorg-libXext
123
+ xorg-libXrandr @1.3.2 x11/xorg-libXrandr
124
+ xorg-randrproto @1.3.2 x11/xorg-randrproto
125
+ xorg-renderproto @0.11.1 x11/xorg-renderproto
126
+ xorg-util-macros @1.15.0 x11/xorg-util-macros
127
+ xorg-xcmiscproto @1.2.1 x11/xorg-xcmiscproto
128
+ xorg-xextproto @7.2.0 x11/xorg-xextproto
129
+ xorg-xf86bigfontproto @1.2.0 x11/xorg-xf86bigfontproto
130
+ xorg-xproto @7.0.22 x11/xorg-xproto
131
+ xorg-xtrans @1.2.6 x11/xorg-xtrans
132
+ xrender @0.9.6 x11/xrender
133
+ XviD @1.3.2 multimedia/XviD
134
+ xz @5.0.3 archivers/xz
135
+ yasm @1.1.0 lang/yasm
136
+ zlib @1.2.5 archivers/zlib
@@ -0,0 +1,37 @@
1
+ 69|C-u not available for textpad and view. how to|P2|open
2
+ 85|combo symbol when label, see newmessagebox|P2|open
3
+ 86|combo let caller suggest width and use if longer than longest item|P2|open
4
+ 88|keep working on wsshortcuts as in testws..2.rb|P2|open
5
+ 89|messagebox, see about background for zterm-256 as in header|P2|open
6
+ 97|binding to KEY_ENTER doesn't work, have to bid to 13|P2|open
7
+ 98|if list not binding ENTER then dont consume it|P2|open
8
+ 22|widget hide (visible false) does not hide|P3|open
9
+ 65|clean up window.rb prv_printstring etc|P3|open
10
+ 74|list and others should just calculate longest in list|P3|open
11
+ 79|cleanup button getpaint etc|P3|open
12
+ 80|use @focusable in form to simplify|P3|open
13
+ 87|praps global setting lists etc use SPC for scroll or selection|P3|open
14
+ 92|messagebox: if text longer than display then can we split|P3|open
15
+ 95|window.refresh required after alert of messagebox closes|P3|open
16
+ 99|button option to set mnemo for keys without alt|P3|open
17
+ 10|combo keys|P4|open
18
+ 17|selected_item of list broken|P4|open
19
+ 20|cannot bind_key using Alt key and another. |P4|open
20
+ 27|#fix testvimsplit not sizing STACK correctly|P4|open
21
+ 32| #tree many empty methods in #treemodel|P4|open
22
+ 37|simplify #vimsplit calculation|P4|open
23
+ 52|%label set_label may have to calculate at repaint esp in app|P4|open
24
+ 55|Have a module Expandable for those that are multiline|P4|open
25
+ 56|DRY up titles and borders|P4|open
26
+ 60|fields width, display_len is for input area, not label plus input|P4|open
27
+ 61|test2.rb color change not affecting text objects|P4|open
28
+ 70|confusion between renderer and color_parser|P4|open
29
+ 75|textpad to allow append << at some stage|P4|open
30
+ 93|messagebox conform and choice whith single key getch|P4|open
31
+ 8|container keep repainting all|P5|open
32
+ 26|App to have a layout abject |P5|open
33
+ 39|tabularwidget truncate needed left_margin|P5|open
34
+ 42|append_to_kill, yank not working in %listbox|P5|open
35
+ 49|resultsetview needs way to specify key fields|P5|open
36
+ 50|sort on tabularwidget with resultset error sometimes|P5|open
37
+ 96|configure confirm quit etc through a file|P5|open
@@ -0,0 +1,88 @@
1
+ 1|clo|bug|X3|messagebox label print overlaps left border
2
+ 2|clo|enh|P4|Field: methods not chainable
3
+ 3|clo|bug|P3|button crash if mnemo not in text
4
+ 4|clo|enh|P3|link mnemo should not have Alt
5
+ 8|ope|bug|P5|container keep repainting all
6
+ 9|clo|enh|P3|menu bar keys
7
+ 10|ope|enh|P4|combo keys
8
+ 11|clo|bug|X3|hand written DSL defs dont fire prop handler
9
+ 12|clo|bug|X4|textview on_enter
10
+ 13|clo|enh|P3|traversal of listboxes
11
+ 14|clo|enh|P3|check keys Alt-Sh-O, Alt-[. Add some missing
12
+ 15|clo|bug|P3|2 keys simulaneously with Alt-O or Alt-[
13
+ 16|clo|enh|P3|put key combins in arrays and match
14
+ 17|ope|bug|P4|selected_item of list broken
15
+ 18|clo|enh|P3|valid_range for Field
16
+ 19|clo|bug|X2|tree can print beyond right margin
17
+ 20|ope|bug|P4|cannot bind_key using Alt key and another.
18
+ 21|sta|enh|P2|make code from App common so reusable in other examples
19
+ 22|ope|bug|P3|widget hide (visible false) does not hide
20
+ 23|clo|bug|P3|listbox color changes not reflecting in cell_renderer
21
+ 24|clo|bug|P3|Table: delete row should reflect focussed_index.
22
+ 25|clo|enh|X3|#cleanup add_cols rows_panned #urgent
23
+ 26|ope|fea|P5|App to have a layout abject
24
+ 27|ope|bug|P4|#fix testvimsplit not sizing STACK correctly
25
+ 28|clo|enh|P1|FieldValidationException should rollback change,
26
+ 29|clo|enh|X1|return self from dsl_prop and dsl_accessor,
27
+ 30|can|bug|P3|on_leave has validations that should be separated,
28
+ 31|clo|enh|X1|#listbox data more accessible from LB class,
29
+ 32|ope|enh|P4| #tree many empty methods in #treemodel
30
+ 33|clo|enh|X3|display_menu shd furhter glob on tab
31
+ 34|clo|enh|X3|display_menu large list need scrolling
32
+ 35|clo|bug|X3|alert message getting truncated after 2 lines
33
+ 36|clo|fea|X3|use j k h l for navigation if unused by a button of widget
34
+ 37|ope|enh|P4|simplify #vimsplit calculation
35
+ 38|clo|bug|X3|#tabbedpane when fire, state of old tab discrep
36
+ 39|ope|bug|P5|tabularwidget truncate needed left_margin
37
+ 40|clo|bug|X3|%textarea C-e goes to last char, not one after that
38
+ 41|clo|bug|X3|M-2 did not work in textarea
39
+ 42|ope|bug|P5|append_to_kill, yank not working in %listbox
40
+ 43|clo|bug|X1|rt arrow and backspace issue ask(), dbdemo save #urgent
41
+ 44|clo|bug|P1|need to hide window after ask(), dbdemo save
42
+ 45|clo|bug|X3|directory list, after pressing Enter on ../ focus on header
43
+ 46|clo|enh|X3|textview repaints all even when no scrolling
44
+ 47|ope|enh|P4|vieditable and io.rb need to create statuswindow and take input
45
+ 48|clo|bug|X3|say not working after ask hides window
46
+ 49|ope|enh|P5|resultsetview needs way to specify key fields
47
+ 50|ope|bug|P5|sort on tabularwidget with resultset error sometimes
48
+ 51|clo|bug|X2|TabbedPane's TabbedButtons rely on window being 0,0
49
+ 52|ope|bug|P4|%label set_label may have to calculate at repaint esp in app
50
+ 53|clo|bug|X3|%App. if shortcut used outside stack or flow, dont attach form or set
51
+ 54|clo|bug|X3|inside newtabbedpane button mnemonic and underline not happening #fix
52
+ 55|ope|enh|P4|Have a module Expandable for those that are multiline
53
+ 56|ope|enh|P4|DRY up titles and borders
54
+ 57|clo|enh|X2|dont put default for color and bg in init of Wid or field
55
+ 58|clo|enh|X2|Fields display_length should be width or made alias
56
+ 60|ope|enh|P4|fields width, display_len is for input area, not label plus input
57
+ 61|ope|bug|P4|test2.rb color change not affecting text objects
58
+ 62|clo|bug|X2|when using chunks, movement crashes C-e etc
59
+ 63|clo|bug|X2|chunks in textview, when scrolling earlier lines shown
60
+ 64|clo|enh|X2|abstract chunk and parse into Format class
61
+ 65|ope|enh|P3|clean up window.rb prv_printstring etc
62
+ 66|clo|bug|X2|colorparser needs to carryover, and :reset
63
+ 67|clo|enh|X3|several places doing attrib conversion in window, use get_attrib
64
+ 68|clo|bug|X4|move chunk parsing from window.rb to chunk as in textview
65
+ 69|ope|bug|P2|C-u not available for textpad and view. how to
66
+ 70|ope|enh|P4|confusion between renderer and color_parser
67
+ 71|clo|enh|X1|redo combo with basiclist or new popup
68
+ 72|clo|enh|X2|redo label simplify, one line only
69
+ 73|clo|bug|X2|rbasiclist needs to reduce selected symbol
70
+ 74|ope|enh|P3|list and others should just calculate longest in list
71
+ 75|ope|enh|P4|textpad to allow append << at some stage
72
+ 76|clo|enh|X3|appmethods.rb may need to go into lib/common or somewhere else
73
+ 77|clo|enh|X2|switch messagebox old and new and change rdialog
74
+ 78|clo|enh|X1|switch tabbedpane classes and update examples
75
+ 79|ope|enh|P3|cleanup button getpaint etc
76
+ 80|ope|enh|P3|use @focusable in form to simplify
77
+ 81|clo|bug|X2|field label mnemonic not being set
78
+ 82|ope|bug|P2|new messagebox need default_button option
79
+ 83|clo|enh|X2|check statusline usage, should use formatted only
80
+ 84|clo|bug|X2|dbdemo M-z not doing anything
81
+ 85|ope|bug|P2|combo symbol when label, see newmessagebox
82
+ 86|ope|bug|P2|combo let caller suggest width and use if longer than longest item
83
+ 87|ope|enh|P3|praps global setting lists etc use SPC for scroll or selection
84
+ 88|ope|enh|P2|keep working on wsshortcuts as in testws..2.rb
85
+ 89|ope|bug|P2|messagebox, see about background for zterm-256 as in header
86
+ 90|clo|bug|X2|messagebox: message sets width, even if user has specified
87
+ 91|clo|enh|X2|messagebox: default row col cannot be 0,0
88
+ 92|ope|enh|P3|messagebox: if text longer than display then can we split