Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | ListBox cloudgen block now runs in serial
* Because of threading used, if the user selected another item in the listbox |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | v0.0.2 |
Files: | files | file ages | folders |
SHA3-256: |
4624b9404c6d80104989c1ade184d1c2 |
User & Date: | i5ivem@gmail.com 2010-03-29 13:45:44 |
2013-07-16
| ||
11:38 | Create LICENSE check-in: 76703a34fa user: atomicules@lavabit.com tags: trunk, master | |
2011-08-03
| ||
14:21 |
First tentative steps towards porting to Green Shoes
This one is much closer to working than Shoefiti: Same issues apply: I can almost walk this on through and get it working, just | |
2010-03-29
| ||
13:45 |
ListBox cloudgen block now runs in serial
* Because of threading used, if the user selected another item in the listbox | |
12:36 |
Adding "loading" animation for app and set list
* An attempt to reduce the 'hang' of startup when the app is actually | |
Changes to shoeset.rb.
︙ | ︙ | |||
68 69 70 71 72 73 74 | @photosetlist = flickr.photosets.getList.each do |set| @setlist << set["title"] end @animatelist.stop @loadingsetlist.hide flow do para "Pick a set to generate Tag Cloud: " | | > | | > > > > | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | @photosetlist = flickr.photosets.getList.each do |set| @setlist << set["title"] end @animatelist.stop @loadingsetlist.hide flow do para "Pick a set to generate Tag Cloud: " @listbox = list_box :items => @setlist do |set| if $p.nil? or $p.fraction() == 1.0 #because this is threaded, must check to see if already running @currentset = set.text fluffygen(set) else #if user picks another set, put selected back to original choice if running. #debug(@currentset) @listbox.choose(@currentset) #Set to end end end #flow @tagcloud = flow do #if this is a stack then clearing it goes crazy para "" end #set-up placeholder for tag cloud end |
︙ | ︙ |