r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Cookbook] For http://www.rebol.net/cookbook/requests.html

Henrik
8-Jul-2005
[48x2]
amazing! I never knew this. I will rewrite it immediately.
how do you set the default pane?
DideC
8-Jul-2005
[50x2]
We learn something each day :)
add "data true" to the default tog
Henrik
8-Jul-2005
[52x3]
works. bleh. >/(
:-)
I vote for getting VID stuff into the dictionary :-)
DideC
8-Jul-2005
[55]
:)
Henrik
8-Jul-2005
[56]
tutorial updated now. 15% code reduction
DideC
8-Jul-2005
[57x5]
Another comment : it's better to remove the offset at the pane creation 
rather than each time you show one. So use :
pane1: layout/offset [
  across
  text "Setting 1" field return
  text "Setting 2" field
] 0x0

...
You forget et remove the 'update-tabs call in the 'show-pane function.
(you did it in the full code, but not before)
The note talk about layout/TIGHT, but you did not use it before !!!!
[unknown: 5]
8-Jul-2005
[62x4]
where does the function show-pane come from?
I never knew of this word "of" - is that documented somewhere?
I see where the show-pane function came from so nevermind that question
its in the document
DideC
8-Jul-2005
[66]
'of : If its documented, I don't remember where!
Chris
8-Jul-2005
[67]
'of sets face/related
Henrik
8-Jul-2005
[68]
hmm... this will mean that the layout/offset is not the same as contents-pane/pane/offset
[unknown: 5]
8-Jul-2005
[69]
Chris do you know where that is documented at?  I though 'with was 
for setting face values.
Chris
8-Jul-2005
[70]
I'm not certain if it is documented, I may have picked it up from 
eg. an IOS reblet.  But if you -- probe svv/facet-words -- you can 
see how it is used...
[unknown: 5]
8-Jul-2005
[71]
thanks Chris
yeksoon
10-Jul-2005
[72]
a little suggestion.


the current cookbook page at , http://www.rebol.net/cookbook/, needs 
to have better tagging for sorting and searching purposes.

Example. An example can be tag to 'view', 'cgi', 'ios'


Or, we can break it up into 'logical chapters in a book'. Example

1. Part I. Rebol Basics
2. Part II. Advanced Rebol
3. Part III. /View Basics
4. Part IV. /View Styles
5. Part V. /IOS
6. List of Examples
Henrik
10-Jul-2005
[73]
I would vote for Easy, Medium, Hard, Guru sections
yeksoon
11-Jul-2005
[74]
rebol.org library already have tagging for the scripts.


Both in terms of levels ["Beginner" "Intermediate" "Advanced"] as 
well as the domain ["cgi" "gui"] etc...


Perhaps there is a way to feed the cookbook examples into rebol.org 
and let the Library be the holding place for future cookbook examples.


There are '3 major' rebol sites (those with rebol in the domain). 
And they are rebol.com, rebol.net, rebol.org.

It is not incredibly clear whether certain docs should be in .org 
or .net. 


Other suggestion to consider is how can we leverage off works done 
in various sites and avoid duplication. Why not let rebol.org be 
the host for cookbooks as well?


I would think new comers will prefer to find both cookbook examples 
and other contributed scripts all in one location. Rebol.org also 
lets you search the mailing list.
Sunanda
11-Jul-2005
[75]
REBOL.org also hosts articles -- and you can tag those for anything 
you want.  Might be a solution:
http://www.rebol.org/cgi-bin/cgiwrap/rebol/art-index.r

{so an article  could be tagged as [cookbook advanced ios] etc)
yeksoon
11-Jul-2005
[76]
sounds good to me.


maybe Carl can comment or give the green light to put the cookbooks 
examples into rebol.org...
Sunanda
11-Jul-2005
[77]
Or poeple could just write some more :-)
Henrik
19-Jul-2005
[78]
If I built a little page to create cookbook entries in wiki style, 
would you use it? It could be useful to have cookbook entries fixed 
quickly this way as I'm too pressed for time to release my tutorials.
Sunanda
19-Jul-2005
[79]
Henrik --- One question: how good is the SEO on your site? Little 
point putting cookbook entries where they are hard for the world 
to find.


One idea: why not write a wiki-formatting to HTML function (you'll 
need it anyway) and donate it to the Library ?.....

.... REBOL.org can then accept cookbook entries and other articles 
in wiki format --- we already accept all other major formats: MakeDoc, 
NicomDoc, eText etc.  And we do have good SEO.
Henrik
19-Jul-2005
[80x2]
sunanda: they are not meant to be published on my site, I simply 
wanted to approve them here before handing them to Carl (which I 
actually have, but he hasn't responded other than "Cool!", but hasn't 
done anything :-)).


I was thinking about a very simple extension to webserv.r which simply 
submits a form to a modified makedoc2.r processor, which generates 
a page, sectioned so that you can edit small parts of it.
my basic thinking is that proper documentation is only possible through 
a wiki
MikeJ
19-Jul-2005
[82]
BeOS had the annotated BeBook:  http://www.beunited.org/bebook/
 It was pretty useful  back when people were really coding for the 
OS.
Ingo
20-Jul-2005
[83]
The name of this group contained the text [web-publish], I changed 
it to the correct [web-public]
Sunanda
3-Jan-2006
[84]
Tom started this group with a reference to
http://www.rebol.net/cookbook/requests.html

It's a set of outstanding requests for cookbook entries -- ie examples 
that people would like to see.

As he says.some have been done independently of the request, and 
published on the REBOLn Altmes or the Mailing List.

It'd be a great collective community New Year's resolution to clear 
some of the cookbook request by the end of the month (and that leaves 
plenty of time to enter the competition too)
Thør
2-Apr-2006
[85]
,
Anton
25-May-2006
[86x2]
mock-duck: season fry add-spices tofu: curdle soy-milk
eat dinner: salt fry enpan butter slice fish: any [all [fish: pick 
choose look fish-shop 1 buy fish] canned-tuna]
Henrik
25-May-2006
[88]
>> type? dinner
== delicous!
Anton
25-May-2006
[89x4]
dinner: reduce [dinner mock-duck dessert]
length? dinner ; == 3
** Script Error: dessert has no value
** Near: dessert
dessert: none ; ok, no dessert tonight
eat dinner
** Script Error: course already eaten
** Near: eat dinner
; damn! wish I could eat that again.
Thør
26-May-2006
[93]
syncing...
Webb Stone
25-Sep-2007
[94]
.
RobertS
31-Mar-2008
[95x2]
the "styles" example found in our %vid-usage.r at rebol.org locks 
up any Rebol that I have ( I only go back a few versions ) without 
halt and unview ... if this is not a cookbook kind of issue, perhaps 
I should post the note elsewhere ... I don't see the problem yet 
( it has been a very long day + a blizzard in Minneapolis)
Just cleaning up the white space after [fit key 255.0.255] seems 
to suffice to get it to run  ( I am saving using TextPad on WinXP 
)
RobertS
22-May-2009
[97:last]
.