[REBOL] Re: css vs View (VID) compositing? (was) Re: Re: page-breaks in html or pdf?

2003-12-06 Thread A J Martin
pekr wrote: > huh, didn't know it is possible to "style" tag? I thought that is why there is tag available? Styling the tag gave better page breaks than styling . Andrew J Martin Speaking in tongues and performing miracles. ICQ: 26227169 http://www.rebol.it/Valley/ http://valley.orcon.net.nz/

[REBOL] Re: Storing/loading object functions

2003-12-06 Thread Volker Nitsch
Am Samstag 06 Dezember 2003 19:20 schrieb Konstantin Knizhnik: > GI> Hi Konstantin, > > KK>> I am developer of object oriented database for dynamic languages > KK>> (www.garret.ru/~knizhnik/dybase.html) > KK>> Currently it supports PHP, Python and Ruby. Now I am going to develop > KK>> Rebol API f

[REBOL] Storing/loading object functions

2003-12-06 Thread Konstantin Knizhnik
GI> Hi Konstantin, KK>> I am developer of object oriented database for dynamic languages KK>> (www.garret.ru/~knizhnik/dybase.html) KK>> Currently it supports PHP, Python and Ruby. Now I am going to develop KK>> Rebol API for DyBASE. GI> That's great! I think someone mentioned DyBase here not

[REBOL] Re: Creation of object with unknown structure

2003-12-06 Thread Gregg Irwin
Hi Konstantin, KK> I am developer of object oriented database for dynamic languages KK> (www.garret.ru/~knizhnik/dybase.html) KK> Currently it supports PHP, Python and Ruby. Now I am going to develop KK> Rebol API for DyBASE. That's great! I think someone mentioned DyBase here not too long ago.

[REBOL] Re: Creation of object with unknown structure

2003-12-06 Thread Konstantin Knizhnik
Hello Christian, Thank you very much! "to-set-word" - is what I have missed. And "prepare" function is exactly what I need. Saturday, December 6, 2003, 6:37:09 PM, you wrote: >> I am developer of object oriented database for dynamic languages >> (www.garret.ru/~knizhnik/dybase.html) >> Curre

[REBOL] Re: Creation of object with unknown structure

2003-12-06 Thread Christian Langreiter
> I am developer of object oriented database for dynamic languages > (www.garret.ru/~knizhnik/dybase.html) > Currently it supports PHP, Python and Ruby. Now I am going to develop > Rebol API for DyBASE. that's very, very cool! > I read Rebol manual but some questions are still not clear for me.

[REBOL] Re: css vs View (VID) compositing? (was) Re: Re: page-breaks in html or pdf?

2003-12-06 Thread Jason Cunliffe
> > OTOH - studying css docs for one day I have to say that it is way more > > complicated than View. Maybe just a question of becoming used to > > different concept? What do others think? CSS has the huge advantage of being widely used and documented - books tutorials communities. Alas, most of

[REBOL] Re: css vs View (VID) compositing? (was) Re: Re: page-breaks in html or pdf?

2003-12-06 Thread Ashley Trüter
> OTOH - studying css docs for one day I have to say that it is way more > complicated than View. Maybe just a question of becoming used to > different concept? What do others think? I think that by definition anything that has to describe a print target (eg. CSS, PDF, SGML, etc) will be more co

[REBOL] css vs View (VID) compositing? (was) Re: Re: page-breaks in html or pdf?

2003-12-06 Thread Petr Krenzelok
A J Martin wrote: >I have my scripts insert this HTML (using CSS): > > > > huh, didn't know it is possible to "style" tag? I thought that is why there is tag available? >It's placed at the start of each "page" after the first "page", using a >Rebol script fragment like: >Fir

[REBOL] Creation of object with unknown structure

2003-12-06 Thread Konstantin Knizhnik
Hello, I am developer of object oriented database for dynamic languages (www.garret.ru/~knizhnik/dybase.html) Currently it supports PHP, Python and Ruby. Now I am going to develop Rebol API for DyBASE. I read Rebol manual but some questions are still not clear for me. Can some Rebol guru suggest

[REBOL] Re: Text width in VID

2003-12-06 Thread Carl Read
On 06-Dec-03, Henrik Mikael Kristensen wrote: > I'm also toying with size adaptable buttons, which size themselves > to the text, so it doesn't wrap, and allow for resizing the main > window with the buttons without screwing up the text and for > resizing the column in a listview and make sure, t

[REBOL] Re: Text width in VID (Was: Re: Compressing image data (bugs?))

2003-12-06 Thread Ashley Trüter
> Still, are there easier ways? I don't know about easier, but I use code like the following: get-text-size: function [fontsize [integer!]][t][ layout [t: text font-size fontsize ""] size-text t ] to determine the size of a base "element" and then stylize/master all my

[REBOL] Text width in VID (Was: Re: Compressing image data (bugs?))

2003-12-06 Thread Henrik Mikael Kristensen
Carl Read wrote: > Also, if you're dealing with an image created by REBOL, you could use > save/png to create a compressed binary of the image. ie... That's very clever. Keep the ideas coming! ;-) I'm also toying with size adaptable buttons, which size themselves to the text, so it doesn't wrap