shoes 3.0.1
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.
- data/.gitignore +12 -0
- data/CHANGELOG +29 -0
- data/COPYING +30 -0
- data/README.md +76 -0
- data/README.old +117 -0
- data/Rakefile +130 -0
- data/Rakefile.bk +651 -0
- data/app.yaml +7 -0
- data/bin/main.skel +104 -0
- data/bugs/issue-012e9468ddc7b0cb7e1503413a8a11c4f8707b67.yaml +21 -0
- data/bugs/issue-0711ff8b67baa63586f11d0096fee9dd4436bf58.yaml +23 -0
- data/bugs/issue-07f87998d93eb401e22395c11085676389b935c4.yaml +22 -0
- data/bugs/issue-0bff2d80008803cbc7efbcdacdc60ef2163664d2.yaml +22 -0
- data/bugs/issue-0c66f223d19efbca7b692f3b91961f407ad7abec.yaml +24 -0
- data/bugs/issue-183bc3c7a8f575aff2b24e0bf22aa0dfcc8e4fc2.yaml +29 -0
- data/bugs/issue-1bad1e60a04cb3adb6a8f3ded128af2e16b56ffe.yaml +18 -0
- data/bugs/issue-1f1d43f76bf4de79d7f94adbae6dd506a9d81633.yaml +41 -0
- data/bugs/issue-320924117cadb045cc91f2a6fca922b4d81d4bb5.yaml +20 -0
- data/bugs/issue-33e5c8355fbf65252ea9e939714651df8bd8cb3b.yaml +25 -0
- data/bugs/issue-36f7c8262a72bcd5e28cfa4ed29328b8237ea79b.yaml +20 -0
- data/bugs/issue-39bf04ee50c3bef67b89b8e9beb28657805587ce.yaml +18 -0
- data/bugs/issue-3e28ba7754f73d02ef416eef989af707a8c00f01.yaml +23 -0
- data/bugs/issue-3f638cc03f41f9c3fdf217355321f1563f8fee45.yaml +22 -0
- data/bugs/issue-41e48e14f1ef4f6deb69be68165d7dd3ffd99156.yaml +22 -0
- data/bugs/issue-4c9408166a2aa5dd333bbb05520deebf4ded08e0.yaml +22 -0
- data/bugs/issue-55c687e108ecd5aeb8e0d0aeb4294984f84acd3e.yaml +18 -0
- data/bugs/issue-5811d34692cc292717a58ec1df1f8948cf30d826.yaml +28 -0
- data/bugs/issue-5a7c1f59a0526f9cea7fb366867cf1e6ed8ef69d.yaml +22 -0
- data/bugs/issue-688a2c2566bef6a03efa57a4ae1f7cfa8fc74444.yaml +21 -0
- data/bugs/issue-78b16c7988ade2ef96e716fa8cb9a004bd4ced65.yaml +33 -0
- data/bugs/issue-804ee49f9800154eddf0650690c7a9bb5626253f.yaml +27 -0
- data/bugs/issue-807dd1c610b2e941a5d454e26b2eac27e89a0ab4.yaml +22 -0
- data/bugs/issue-822ee33ec11ebd25f90ea86e8438de7891e63aee.yaml +18 -0
- data/bugs/issue-82ff7152cebb8a1cb065b864cb4fe22de2328146.yaml +29 -0
- data/bugs/issue-856afbdcdd4970ad54b8ce4a6c017fbaab45f49d.yaml +31 -0
- data/bugs/issue-8d49e32fb21522651c67490adb4d80076dbb14e1.yaml +24 -0
- data/bugs/issue-91583359653a9d530c1e32be72d874d847a306e7.yaml +21 -0
- data/bugs/issue-af41a5229613172764e7d3c98431172db337053d.yaml +20 -0
- data/bugs/issue-bd9856b3788dd429c998a5af1b2aae8221cb80b7.yaml +28 -0
- data/bugs/issue-be22aef5c564fb7b5e9938343136a9cd6a2edb7b.yaml +22 -0
- data/bugs/issue-bf8697523c77c326e7e35fc82cf3dd739ae92310.yaml +27 -0
- data/bugs/issue-cdd4b4795f34d6ff46e56ece10f8216a4a5456b2.yaml +25 -0
- data/bugs/issue-d9bfb5581d745ef9deb3b9b2e08ef74d1cd43082.yaml +20 -0
- data/bugs/issue-e0ce2f687cc096f35715d28b0af88589f4ab6cc6.yaml +18 -0
- data/bugs/issue-e4b0aca4a10a574b333aeaecaaf221dbc5ed22c6.yaml +38 -0
- data/bugs/issue-f263746594b95ba778455730478ee8df60ee639d.yaml +22 -0
- data/bugs/project.yaml +72 -0
- data/builddeps.sh +102 -0
- data/fonts/Coolvetica.ttf +0 -0
- data/fonts/Lacuna.ttf +0 -0
- data/gemlib/shoes.rb +1 -0
- data/lib/shoes.rb +548 -0
- data/lib/shoes/cache.rb +54 -0
- data/lib/shoes/chipmunk.rb +35 -0
- data/lib/shoes/data.rb +39 -0
- data/lib/shoes/help.rb +468 -0
- data/lib/shoes/image.rb +25 -0
- data/lib/shoes/inspect.rb +128 -0
- data/lib/shoes/log.rb +48 -0
- data/lib/shoes/minitar.rb +986 -0
- data/lib/shoes/override.rb +38 -0
- data/lib/shoes/pack.rb +543 -0
- data/lib/shoes/search.rb +46 -0
- data/lib/shoes/setup.rb +329 -0
- data/lib/shoes/shy.rb +131 -0
- data/lib/shoes/shybuilder.rb +44 -0
- data/lib/shoes/version.rb +3 -0
- data/make/darwin/deps.vlc +12 -0
- data/make/darwin/dylibs.shoes +22 -0
- data/make/darwin/dylibs.video +11 -0
- data/make/darwin/env.rb +81 -0
- data/make/darwin/tasks.rb +105 -0
- data/make/linux/env.rb +65 -0
- data/make/linux/tasks.rb +61 -0
- data/make/make.rb +85 -0
- data/make/mingw/dlls +19 -0
- data/make/mingw/env.rb +69 -0
- data/make/mingw/tasks.rb +70 -0
- data/make/rakefile_common.rb +8 -0
- data/manual-snapshots/class-book.png +0 -0
- data/manual-snapshots/expert-definr.png +0 -0
- data/manual-snapshots/expert-funnies.png +0 -0
- data/manual-snapshots/expert-irb.png +0 -0
- data/manual-snapshots/expert-minesweeper.png +0 -0
- data/manual-snapshots/expert-othello.png +0 -0
- data/manual-snapshots/expert-pong.png +0 -0
- data/manual-snapshots/expert-tankspank.png +0 -0
- data/manual-snapshots/good-arc.png +0 -0
- data/manual-snapshots/good-clock.png +0 -0
- data/manual-snapshots/good-follow.png +0 -0
- data/manual-snapshots/good-reminder.png +0 -0
- data/manual-snapshots/good-vjot.png +0 -0
- data/manual-snapshots/simple-accordion.png +0 -0
- data/manual-snapshots/simple-anim-shapes.png +0 -0
- data/manual-snapshots/simple-anim-text.png +0 -0
- data/manual-snapshots/simple-arc.png +0 -0
- data/manual-snapshots/simple-bounce.png +0 -0
- data/manual-snapshots/simple-calc.png +0 -0
- data/manual-snapshots/simple-chipmunk.png +0 -0
- data/manual-snapshots/simple-control-sizes.png +0 -0
- data/manual-snapshots/simple-curve.png +0 -0
- data/manual-snapshots/simple-dialogs.png +0 -0
- data/manual-snapshots/simple-downloader.png +0 -0
- data/manual-snapshots/simple-draw.png +0 -0
- data/manual-snapshots/simple-editor.png +0 -0
- data/manual-snapshots/simple-form.png +0 -0
- data/manual-snapshots/simple-mask.png +0 -0
- data/manual-snapshots/simple-menu.png +0 -0
- data/manual-snapshots/simple-menu1.png +0 -0
- data/manual-snapshots/simple-rubygems.png +0 -0
- data/manual-snapshots/simple-slide.png +0 -0
- data/manual-snapshots/simple-sphere.png +0 -0
- data/manual-snapshots/simple-sqlite3.png +0 -0
- data/manual-snapshots/simple-timer.png +0 -0
- data/manual-snapshots/simple-video.png +0 -0
- data/platform/mac/Info.plist +55 -0
- data/platform/mac/build-deps.sh +658 -0
- data/platform/mac/command-manual.rb +1 -0
- data/platform/mac/deps-osx.patch +159 -0
- data/platform/mac/dmg_ds_store +0 -0
- data/platform/mac/pangorc +2 -0
- data/platform/mac/pkg-dmg +1447 -0
- data/platform/mac/shoes +31 -0
- data/platform/mac/shoes-launch +7 -0
- data/platform/mac/stub.m +178 -0
- data/platform/mac/version.plist +14 -0
- data/platform/msw/base.nsi +644 -0
- data/platform/msw/installer-1.bmp +0 -0
- data/platform/msw/installer-2.bmp +0 -0
- data/platform/msw/shoes.exe.manifest +17 -0
- data/platform/msw/shoes.ico +0 -0
- data/platform/msw/stub-inject.c +59 -0
- data/platform/msw/stub.c +271 -0
- data/platform/msw/stub32.h +14 -0
- data/platform/msw/stub32.rc +16 -0
- data/platform/nix/INSTALL +56 -0
- data/platform/nix/Makefile +144 -0
- data/platform/nix/shoes.launch +20 -0
- data/platform/skel.rb +27 -0
- data/rakefile_darwin.rb +7 -0
- data/rakefile_linux.rb +3 -0
- data/rakefile_mingw.rb +7 -0
- data/samples/class-book.rb +43 -0
- data/samples/class-book.yaml +387 -0
- data/samples/expert-definr.rb +23 -0
- data/samples/expert-funnies.rb +51 -0
- data/samples/expert-irb.rb +112 -0
- data/samples/expert-minesweeper.rb +267 -0
- data/samples/expert-othello.rb +319 -0
- data/samples/expert-pong.rb +62 -0
- data/samples/expert-tankspank.rb +385 -0
- data/samples/good-arc.rb +37 -0
- data/samples/good-clock.rb +51 -0
- data/samples/good-follow.rb +26 -0
- data/samples/good-reminder.rb +174 -0
- data/samples/good-vjot.rb +56 -0
- data/samples/simple-accordion.rb +75 -0
- data/samples/simple-anim-shapes.rb +17 -0
- data/samples/simple-anim-text.rb +13 -0
- data/samples/simple-arc.rb +23 -0
- data/samples/simple-bounce.rb +24 -0
- data/samples/simple-calc.rb +70 -0
- data/samples/simple-chipmunk.rb +26 -0
- data/samples/simple-control-sizes.rb +24 -0
- data/samples/simple-curve.rb +26 -0
- data/samples/simple-dialogs.rb +29 -0
- data/samples/simple-downloader.rb +27 -0
- data/samples/simple-draw.rb +13 -0
- data/samples/simple-editor.rb +28 -0
- data/samples/simple-form.rb +28 -0
- data/samples/simple-form.shy +0 -0
- data/samples/simple-mask.rb +21 -0
- data/samples/simple-menu.rb +31 -0
- data/samples/simple-menu1.rb +35 -0
- data/samples/simple-rubygems.rb +29 -0
- data/samples/simple-slide.rb +45 -0
- data/samples/simple-sphere.rb +28 -0
- data/samples/simple-sqlite3.rb +13 -0
- data/samples/simple-timer.rb +13 -0
- data/samples/simple-video.rb +13 -0
- data/shoes.gemspec +21 -0
- data/shoes/app.c +591 -0
- data/shoes/app.h +110 -0
- data/shoes/appwin32.h +13 -0
- data/shoes/appwin32.rc +28 -0
- data/shoes/canvas.c +2202 -0
- data/shoes/canvas.h +682 -0
- data/shoes/code.h +14 -0
- data/shoes/config.h +232 -0
- data/shoes/effects.c +243 -0
- data/shoes/effects.h +7 -0
- data/shoes/http.h +44 -0
- data/shoes/http/common.h +86 -0
- data/shoes/http/curl.c +259 -0
- data/shoes/http/nsurl.m +274 -0
- data/shoes/http/windownload.c +114 -0
- data/shoes/http/winhttp.c +216 -0
- data/shoes/http/winhttp.h +19 -0
- data/shoes/image.c +1020 -0
- data/shoes/internal.c +46 -0
- data/shoes/internal.h +63 -0
- data/shoes/native.h +110 -0
- data/shoes/native/cocoa.h +105 -0
- data/shoes/native/cocoa.m +1557 -0
- data/shoes/native/gtk.c +1257 -0
- data/shoes/native/windows.c +2392 -0
- data/shoes/ruby.c +5221 -0
- data/shoes/ruby.h +299 -0
- data/shoes/world.c +243 -0
- data/shoes/world.h +63 -0
- data/static/Shoes.icns +0 -0
- data/static/avatar.png +0 -0
- data/static/code_highlighter.js +188 -0
- data/static/code_highlighter_ruby.js +26 -0
- data/static/icon-debug.png +0 -0
- data/static/icon-error.png +0 -0
- data/static/icon-info.png +0 -0
- data/static/icon-warn.png +0 -0
- data/static/listbox_button1.png +0 -0
- data/static/listbox_button2.png +0 -0
- data/static/man-app.png +0 -0
- data/static/man-builds.png +0 -0
- data/static/man-builds1.png +0 -0
- data/static/man-editor-notepad.png +0 -0
- data/static/man-editor-osx.png +0 -0
- data/static/man-ele-background.png +0 -0
- data/static/man-ele-border.png +0 -0
- data/static/man-ele-button.png +0 -0
- data/static/man-ele-check.png +0 -0
- data/static/man-ele-editbox.png +0 -0
- data/static/man-ele-editline.png +0 -0
- data/static/man-ele-image.png +0 -0
- data/static/man-ele-listbox.png +0 -0
- data/static/man-ele-progress.png +0 -0
- data/static/man-ele-radio.png +0 -0
- data/static/man-ele-shape.png +0 -0
- data/static/man-ele-textblock.png +0 -0
- data/static/man-ele-video.png +0 -0
- data/static/man-intro-dmg.png +0 -0
- data/static/man-intro-exe.png +0 -0
- data/static/man-look-tiger.png +0 -0
- data/static/man-look-ubuntu.png +0 -0
- data/static/man-look-vista.png +0 -0
- data/static/man-run-osx.png +0 -0
- data/static/man-run-vista.png +0 -0
- data/static/man-run-xp.png +0 -0
- data/static/man-shot1.png +0 -0
- data/static/manual-en.txt +3531 -0
- data/static/manual-ja.txt +2825 -0
- data/static/manual.css +167 -0
- data/static/menu-corner1.png +0 -0
- data/static/menu-corner2.png +0 -0
- data/static/menu-gray.png +0 -0
- data/static/menu-left.png +0 -0
- data/static/menu-right.png +0 -0
- data/static/menu-top.png +0 -0
- data/static/shoes-dmg.jpg +0 -0
- data/static/shoes-icon-blue.png +0 -0
- data/static/shoes-icon.png +0 -0
- data/static/shoes-manual-apps.gif +0 -0
- data/static/shoes_main_window.png +0 -0
- data/static/stripe.png +0 -0
- data/static/stubs/blank.exe +0 -0
- data/static/stubs/blank.hfz +0 -0
- data/static/stubs/blank.run +375 -0
- data/static/stubs/cocoa-install +0 -0
- data/static/stubs/sh-install +49 -0
- data/static/stubs/shoes-stub-inject.exe +0 -0
- data/static/stubs/shoes-stub.exe +0 -0
- data/static/tutor-back.png +0 -0
- data/test/shoes_test.rb +8 -0
- data/test/test_helper.rb +25 -0
- data/use-deps +12 -0
- data/use-tmp-dep +8 -0
- metadata +509 -0
data/app.yaml
ADDED
data/bin/main.skel
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
//
|
2
|
+
// main.c
|
3
|
+
// The generic launcher for Shoes.
|
4
|
+
//
|
5
|
+
#include <stdio.h>
|
6
|
+
#include "shoes/app.h"
|
7
|
+
#include "shoes/ruby.h"
|
8
|
+
#include "shoes/config.h"
|
9
|
+
#include "shoes/world.h"
|
10
|
+
#include "shoes/internal.h"
|
11
|
+
|
12
|
+
#ifdef __APPLE__
|
13
|
+
#include <crt_externs.h>
|
14
|
+
#endif
|
15
|
+
|
16
|
+
#ifdef SHOES_WIN32
|
17
|
+
int WINAPI
|
18
|
+
WinMain(HINSTANCE inst, HINSTANCE inst2, LPSTR arg, int style)
|
19
|
+
#else
|
20
|
+
int
|
21
|
+
main(argc, argv)
|
22
|
+
int argc;
|
23
|
+
char *argv[];
|
24
|
+
#endif
|
25
|
+
{
|
26
|
+
shoes_code code;
|
27
|
+
char *path = NULL;
|
28
|
+
#ifdef __APPLE__
|
29
|
+
char **env = *_NSGetEnviron();
|
30
|
+
#endif
|
31
|
+
#ifdef SHOES_WIN32
|
32
|
+
int argc;
|
33
|
+
char **argv;
|
34
|
+
argc = shoes_win32_cmdvector(GetCommandLine(), &argv);
|
35
|
+
#endif
|
36
|
+
%DEFAULTS%
|
37
|
+
|
38
|
+
#ifdef SHOES_WIN32
|
39
|
+
path = SHOE_ALLOC_N(char, SHOES_BUFSIZE);
|
40
|
+
GetModuleFileName(NULL, (LPSTR)path, SHOES_BUFSIZE);
|
41
|
+
#ifdef RUBY_1_9
|
42
|
+
rb_w32_sysinit(&argc, &argv);
|
43
|
+
#else
|
44
|
+
NtInitialize(&argc, &argv);
|
45
|
+
#endif
|
46
|
+
#else
|
47
|
+
path = argv[0];
|
48
|
+
#endif
|
49
|
+
if (argc > 1 && strcmp(argv[1], "--ruby") == 0)
|
50
|
+
{
|
51
|
+
char bootup[SHOES_BUFSIZE];
|
52
|
+
int len = shoes_snprintf(bootup,
|
53
|
+
SHOES_BUFSIZE,
|
54
|
+
"begin;"
|
55
|
+
"DIR = File.expand_path(File.dirname(%%q<%s>));"
|
56
|
+
"$:.replace([DIR+'/ruby/lib/'+PLATFORM, DIR+'/ruby/lib', DIR+'/lib', '.']);"
|
57
|
+
"require 'shoes/cache';"
|
58
|
+
"DIR;"
|
59
|
+
"rescue Object => e;"
|
60
|
+
"puts(e.message);"
|
61
|
+
"end",
|
62
|
+
path);
|
63
|
+
|
64
|
+
if (len < 0 || len >= SHOES_BUFSIZE)
|
65
|
+
return 0;
|
66
|
+
|
67
|
+
argc--;
|
68
|
+
argv[1] = argv[0];
|
69
|
+
argv = &argv[1];
|
70
|
+
{
|
71
|
+
RUBY_INIT_STACK
|
72
|
+
ruby_init();
|
73
|
+
rb_eval_string(bootup);
|
74
|
+
#ifdef RUBY_1_9
|
75
|
+
return ruby_run_node(ruby_options(argc, argv));
|
76
|
+
#else
|
77
|
+
ruby_options(argc, argv);
|
78
|
+
ruby_run();
|
79
|
+
return 0;
|
80
|
+
#endif
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
#ifdef SHOES_WIN32
|
85
|
+
code = shoes_init(inst, style);
|
86
|
+
#else
|
87
|
+
code = shoes_init();
|
88
|
+
#endif
|
89
|
+
if (code != SHOES_OK)
|
90
|
+
goto done;
|
91
|
+
|
92
|
+
shoes_set_argv(argc - 1, &argv[1]);
|
93
|
+
code = shoes_start(path, "/");
|
94
|
+
if (code != SHOES_OK)
|
95
|
+
goto done;
|
96
|
+
|
97
|
+
done:
|
98
|
+
#ifdef SHOES_WIN32
|
99
|
+
if (path != NULL)
|
100
|
+
SHOE_FREE(path);
|
101
|
+
#endif
|
102
|
+
shoes_final();
|
103
|
+
return 0;
|
104
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: SVG support (or convertor)
|
3
|
+
desc: |-
|
4
|
+
Since many people may want to draw shapes first in Inkscape or Illustrator,
|
5
|
+
provide a way to at least convert these images into a Shoes script. Or,
|
6
|
+
alternatively, link in an SVG library for loading directly into a shape.
|
7
|
+
type: :feature
|
8
|
+
component: shoes
|
9
|
+
release: Murder
|
10
|
+
reporter: _why <why@whytheluckystiff.net>
|
11
|
+
status: :unstarted
|
12
|
+
disposition:
|
13
|
+
creation_time: 2008-12-04 16:18:41.989286 Z
|
14
|
+
references: []
|
15
|
+
|
16
|
+
id: 012e9468ddc7b0cb7e1503413a8a11c4f8707b67
|
17
|
+
log_events:
|
18
|
+
- - 2008-12-04 16:18:43.103428 Z
|
19
|
+
- _why <why@whytheluckystiff.net>
|
20
|
+
- created
|
21
|
+
- ""
|
@@ -0,0 +1,23 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Give text a `rotate` method and style.
|
3
|
+
desc: |
|
4
|
+
Like images, I'd like text blocks to have a `rotate` method. And the ability to rotate when styled like so:
|
5
|
+
para "Sideways", :rotate => 90
|
6
|
+
|
7
|
+
One thing to consider is how this naming is confusing as gradients are effected by an `angle` style.
|
8
|
+
|
9
|
+
type: :feature
|
10
|
+
component: shoes
|
11
|
+
release: Murder
|
12
|
+
reporter: _why <why@whytheluckystiff.net>
|
13
|
+
status: :unstarted
|
14
|
+
disposition:
|
15
|
+
creation_time: 2008-04-07 17:28:11.357040 Z
|
16
|
+
references: []
|
17
|
+
|
18
|
+
id: 0711ff8b67baa63586f11d0096fee9dd4436bf58
|
19
|
+
log_events:
|
20
|
+
- - 2008-04-07 17:28:14.254446 Z
|
21
|
+
- _why <why@whytheluckystiff.net>
|
22
|
+
- created
|
23
|
+
- ""
|
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Link `leave` event is faulty
|
3
|
+
desc: Often hovering off a link doesn't happen if you leave through the top edge.
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Raisins
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :closed
|
9
|
+
disposition: :fixed
|
10
|
+
creation_time: 2008-12-04 22:16:29.970426 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 07f87998d93eb401e22395c11085676389b935c4
|
14
|
+
log_events:
|
15
|
+
- - 2008-12-04 22:16:30.828537 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-12-05 22:03:25.969892 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- closed with disposition fixed
|
22
|
+
- Generally, this is much better, there are more general hover things to solve in the next release.
|
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: locked edit fields
|
3
|
+
desc: Add a means for disabling all native controls.
|
4
|
+
type: :feature
|
5
|
+
component: shoes
|
6
|
+
release: Raisins
|
7
|
+
reporter: "Phlip <phlip2005@gmail.com> "
|
8
|
+
status: :closed
|
9
|
+
disposition: :fixed
|
10
|
+
creation_time: 2008-07-03 18:49:43.142384 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 0bff2d80008803cbc7efbcdacdc60ef2163664d2
|
14
|
+
log_events:
|
15
|
+
- - 2008-07-03 18:49:44.772771 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-11-26 17:19:26.418235 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- closed with disposition fixed
|
22
|
+
- All native controls now have :disable and :readonly options.
|
@@ -0,0 +1,24 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Add ask_open_folder and ask_save_folder.
|
3
|
+
desc: |-
|
4
|
+
Ed Heil asks, "Is it possible to query the user for a *directory* to open, as
|
5
|
+
opposed to a file?" - [shoes-list:3038]
|
6
|
+
type: :feature
|
7
|
+
component: shoes
|
8
|
+
release: Raisins
|
9
|
+
reporter: _why <why@whytheluckystiff.net>
|
10
|
+
status: :closed
|
11
|
+
disposition: :fixed
|
12
|
+
creation_time: 2008-07-01 21:00:07.017988 Z
|
13
|
+
references: []
|
14
|
+
|
15
|
+
id: 0c66f223d19efbca7b692f3b91961f407ad7abec
|
16
|
+
log_events:
|
17
|
+
- - 2008-07-01 21:00:12.261106 Z
|
18
|
+
- _why <why@whytheluckystiff.net>
|
19
|
+
- created
|
20
|
+
- ""
|
21
|
+
- - 2008-09-16 18:43:23.591040 Z
|
22
|
+
- _why <why@whytheluckystiff.net>
|
23
|
+
- closed issue with disposition fixed
|
24
|
+
- added on july 1st, in commit c33a26dc
|
@@ -0,0 +1,29 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Negative stack heights inside pages misbehave
|
3
|
+
desc: |+
|
4
|
+
|
5
|
+
Once a working stack (with flows and stacks inside) with negative height code is inserted inside a page, good rendering stops.
|
6
|
+
|
7
|
+
No workaround found yet. Tried: - put everything inside a stack :height => 1.0, :width => 1.0 - put everything inside a stack :height => 300, :width => 500 (no relative dimensions)
|
8
|
+
|
9
|
+
Using our negative height stack inside those cases doesnt work either.
|
10
|
+
|
11
|
+
type: :feature
|
12
|
+
component: shoes
|
13
|
+
release: Murder
|
14
|
+
reporter: pedromg <pedro@tquadrado.com>
|
15
|
+
status: :unstarted
|
16
|
+
disposition:
|
17
|
+
creation_time: 2008-04-02 18:36:24.687796 Z
|
18
|
+
references: []
|
19
|
+
|
20
|
+
id: 183bc3c7a8f575aff2b24e0bf22aa0dfcc8e4fc2
|
21
|
+
log_events:
|
22
|
+
- - 2008-04-02 18:36:26.135340 Z
|
23
|
+
- _why <why@whytheluckystiff.net>
|
24
|
+
- created
|
25
|
+
- ""
|
26
|
+
- - 2008-12-05 22:04:45.990114 Z
|
27
|
+
- _why <why@whytheluckystiff.net>
|
28
|
+
- assigned to release Murder from Raisins
|
29
|
+
- Moving to Murder, since further nested stack problems will be cared for in that release.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Invisible controls
|
3
|
+
desc: Allow controls to be invisible, to allow more detailed styling.
|
4
|
+
type: :feature
|
5
|
+
component: shoes
|
6
|
+
release: Murder
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2008-11-26 22:24:12.476132 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 1bad1e60a04cb3adb6a8f3ded128af2e16b56ffe
|
14
|
+
log_events:
|
15
|
+
- - 2008-11-26 22:24:14.046117 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
@@ -0,0 +1,41 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Scrolling windows and fixed height slot have a white background -- what about transparent?
|
3
|
+
desc: |
|
4
|
+
Fixed height containers, at current, unavoidably have a background. _why has hardcoded that background to "white" until the problem can be worked out.
|
5
|
+
Here is the test code:
|
6
|
+
|
7
|
+
Shoes.app do
|
8
|
+
background green
|
9
|
+
stack :width => 100 do
|
10
|
+
border black
|
11
|
+
para "Stack #1", :stroke => red
|
12
|
+
end
|
13
|
+
stack :width => 100, :height => 100 do
|
14
|
+
border black
|
15
|
+
para "Stack #2", :stroke => red
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
Stack #1 is transparent, Stack #2 is white.
|
20
|
+
|
21
|
+
You can deviate from the default with an explicit "background" command, but transparency stops being an option.
|
22
|
+
|
23
|
+
type: :feature
|
24
|
+
component: shoes
|
25
|
+
release: Feinstein
|
26
|
+
reporter: Jesse Thompson <jesset@gmail.com>
|
27
|
+
status: :closed
|
28
|
+
disposition: :fixed
|
29
|
+
creation_time: 2008-04-02 18:38:42.719794 Z
|
30
|
+
references: []
|
31
|
+
|
32
|
+
id: 1f1d43f76bf4de79d7f94adbae6dd506a9d81633
|
33
|
+
log_events:
|
34
|
+
- - 2008-04-02 18:38:43.949694 Z
|
35
|
+
- _why <why@whytheluckystiff.net>
|
36
|
+
- created
|
37
|
+
- ""
|
38
|
+
- - 2008-05-22 05:56:10.004328 Z
|
39
|
+
- _why <why@whytheluckystiff.net>
|
40
|
+
- closed issue with disposition fixed
|
41
|
+
- Transparent scroll windows are working on all three platforms now. The trickiest of these was GTK, which required me to switch to a GtkFixed widget and use clipping on the cairo surface.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: I18n - German
|
3
|
+
desc: |-
|
4
|
+
After a short discussion on #shoes a first draft for the German I18n file and a place to add new ideas, translations and so on :)
|
5
|
+
http://pastie.caboo.se/private/wca7ajxvht3lf7bukpkega
|
6
|
+
type: :feature
|
7
|
+
component: shoes
|
8
|
+
release: Feinstein
|
9
|
+
reporter: beb
|
10
|
+
status: :unstarted
|
11
|
+
disposition:
|
12
|
+
creation_time: 2008-04-02 16:32:02.853986 Z
|
13
|
+
references: []
|
14
|
+
|
15
|
+
id: 320924117cadb045cc91f2a6fca922b4d81d4bb5
|
16
|
+
log_events:
|
17
|
+
- - 2008-04-02 16:32:04.024904 Z
|
18
|
+
- _why <why@whytheluckystiff.net>
|
19
|
+
- created
|
20
|
+
- ""
|
@@ -0,0 +1,25 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: An `upload` method
|
3
|
+
desc: |-
|
4
|
+
Analogous to the `download` method. I had proposed an `upload_form` method
|
5
|
+
as well, but the shoes list made a good point that I could just duck type
|
6
|
+
whether a String, IO or Hash is sent to upload.
|
7
|
+
|
8
|
+
A very simple form of it would be to POST a file to a URL.
|
9
|
+
|
10
|
+
upload "/tmp/body.post", :to => "http://www.stevex.net/dump.php"
|
11
|
+
type: :feature
|
12
|
+
component: shoes
|
13
|
+
release: Murder
|
14
|
+
reporter: _why <why@whytheluckystiff.net>
|
15
|
+
status: :unstarted
|
16
|
+
disposition:
|
17
|
+
creation_time: 2008-12-03 16:29:00.027254 Z
|
18
|
+
references: []
|
19
|
+
|
20
|
+
id: 33e5c8355fbf65252ea9e939714651df8bd8cb3b
|
21
|
+
log_events:
|
22
|
+
- - 2008-12-03 16:29:01.861643 Z
|
23
|
+
- _why <why@whytheluckystiff.net>
|
24
|
+
- created
|
25
|
+
- ""
|
@@ -0,0 +1,20 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Image :data => "...bytes..."
|
3
|
+
desc: |-
|
4
|
+
Load an image from a string using the :data option. Suggested by Devyn Cairns.
|
5
|
+
<http://article.gmane.org/gmane.comp.lib.shoes/2231>
|
6
|
+
type: :feature
|
7
|
+
component: shoes
|
8
|
+
release: Murder
|
9
|
+
reporter: _why <why@whytheluckystiff.net>
|
10
|
+
status: :unstarted
|
11
|
+
disposition:
|
12
|
+
creation_time: 2008-11-26 16:01:04.792438 Z
|
13
|
+
references: []
|
14
|
+
|
15
|
+
id: 36f7c8262a72bcd5e28cfa4ed29328b8237ea79b
|
16
|
+
log_events:
|
17
|
+
- - 2008-11-26 16:01:07.588291 Z
|
18
|
+
- _why <why@whytheluckystiff.net>
|
19
|
+
- created
|
20
|
+
- ""
|
@@ -0,0 +1,18 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Linux i686 makeself needs better linkage
|
3
|
+
desc: Look at making this distro totally self-contained so it runs on x64 as well.
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Murder
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :unstarted
|
9
|
+
disposition:
|
10
|
+
creation_time: 2008-12-04 22:15:47.118363 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 39bf04ee50c3bef67b89b8e9beb28657805587ce
|
14
|
+
log_events:
|
15
|
+
- - 2008-12-04 22:15:48.424325 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
@@ -0,0 +1,23 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: Flip horizontal / vertical and matrix transformations
|
3
|
+
desc: |-
|
4
|
+
More transformations. <http://www.cairographics.org/matrix_transform/>
|
5
|
+
|
6
|
+
@pic = image "static/shoes-logo.png"
|
7
|
+
@pic.flip :left
|
8
|
+
@pic.matrix 1.0, 0, 0, 1.0, 0, 0
|
9
|
+
type: :feature
|
10
|
+
component: shoes
|
11
|
+
release: Murder
|
12
|
+
reporter: _why <why@whytheluckystiff.net>
|
13
|
+
status: :unstarted
|
14
|
+
disposition:
|
15
|
+
creation_time: 2008-12-03 16:15:35.751572 Z
|
16
|
+
references: []
|
17
|
+
|
18
|
+
id: 3e28ba7754f73d02ef416eef989af707a8c00f01
|
19
|
+
log_events:
|
20
|
+
- - 2008-12-03 16:15:37.313769 Z
|
21
|
+
- _why <why@whytheluckystiff.net>
|
22
|
+
- created
|
23
|
+
- ""
|
@@ -0,0 +1,22 @@
|
|
1
|
+
--- !ditz.rubyforge.org,2008-03-06/issue
|
2
|
+
title: allow install location to be picked in the windows installer
|
3
|
+
desc: allow both the /D switch and a screen to pick the install location.
|
4
|
+
type: :bugfix
|
5
|
+
component: shoes
|
6
|
+
release: Raisins
|
7
|
+
reporter: _why <why@whytheluckystiff.net>
|
8
|
+
status: :closed
|
9
|
+
disposition: :fixed
|
10
|
+
creation_time: 2008-07-11 13:10:04.709686 Z
|
11
|
+
references: []
|
12
|
+
|
13
|
+
id: 3f638cc03f41f9c3fdf217355321f1563f8fee45
|
14
|
+
log_events:
|
15
|
+
- - 2008-07-11 13:10:05.801485 Z
|
16
|
+
- _why <why@whytheluckystiff.net>
|
17
|
+
- created
|
18
|
+
- ""
|
19
|
+
- - 2008-11-26 17:28:54.555657 Z
|
20
|
+
- _why <why@whytheluckystiff.net>
|
21
|
+
- closed with disposition fixed
|
22
|
+
- Done.
|