• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp27
r3wp624
total:651

results window for this page: [start: 28 end: 127]

world-name: r3wp

Group: !AltME ... Discussion about AltME [web-public]
Izkata:
9-Mar-2005
I want to use Worldmaster dividers with some slight changes... SO, 
a way to choose Worldmaster dividers, then edit them for a custom 
one, would be nice
[unknown: 9]:
26-May-2005
OK, so let me recap, you want to be able to re-edit something that 
was posted?
Henrik:
1-Mar-2006
I like the edit/publish methodology inside the filesharing area
Group: RAMBO ... The REBOL bug and enhancement database [web-public]
Anton:
11-Feb-2005
Actually, this looks like a WindowsXP or NTFS problem, not a problem 
of rebol at all, because I can "Run D:\Anton\Dev\Rebol\View\rebol.r...." 
and my text editor (associated with .R files) pops up to edit rebol.r
Anton:
21-May-2005
View 1.2.109 and 1.2.110   no longer have CTX-EDIT, where did that 
code go ?
Gabriele:
21-May-2005
anton: ctx-viewtop/ctx-edit. but, this will be fixed.
Pekr:
27-Oct-2005
ah, I should read first ... dunno if Rambo allows you to edit your 
submissions ...
Gabriele:
27-Oct-2005
You need edit permissions, and that applies to ALL tickets, not just 
yours, AFAIK. So I guess the answer is no.
Anton:
22-Dec-2005
1. click in the field and press Enter
2. press "change" button
3. click in the field and press Enter again.
In both cases, VALUE = "hello".

The reason is because ctx-text/edit-text calls the action block, 
but passes face/DATA  (not face/TEXT).

TEXT and DATA are related only at INIT and are not maintained by 
the access functions.
Group: Script Library ... REBOL.org: Script library and Mailing list archive [web-public]
eFishAnt:
25-Apr-2006
Ryan Cole had done hex-edit.r  found on my hard drive...wasn't in 
Library when I searched on hex and editor
eFishAnt:
25-Apr-2006
aha, it was from IOS Developer/Users/Ryan-Cole/Utilities folder...where 
hex-edit.r was from...rather than the library.
Sunanda:
8-Jul-2008
I thought it might be version related, but one of the VID versions 
I have exhibit the problem:
** Script Error: Cannot use multiply on none! value
** Where: edit-text
** Near: 2 * face/edge/size

http://www.rebol.org/cgi-bin/cgiwrap/rebol/discussion.r?script=calendar.r
BrianH:
4-Sep-2008
How easy is it to edit your scripts after they have been submitted? 
Do you feel comfortable adding the appropriate needs header where 
needed, provided you know enough about REBOL versions to determine? 
Can you flag the appropriate files as problematic?
Sunanda:
22-Jul-2009
Thanks Graham.

Paging for AltME archive.....We only put the basics in place. It 
is certainly improvable.

Meanwhile, you can make great leaps if you are happy to edit the 
end of the URL ....

... eg 16273 is the post number for group 453 of world R3WP. Change 
the 16273 to move quickly:
http://www.rebol.org/aga-display-posts.r?post=r3wp453x16273
Sunanda:
13-Dec-2009
Anyone can add any tag to scripts....Click the [edit tags] link when 
logged on and looking at a script.
   http://www.rebol.org/boiler.r?display=st-edit-tags-help
Sunanda:
13-Dec-2009
If you add a new script, yoy can add a (say)
  library: [r3: 'tested]
tag, and that will be picked up and used in the tag index.


The problem with updating the tags in the headers of existing scripts 
is that it is long-winded: you need to physically upload a new version.

Better just to retag via the [edit tags] link.
Sunanda:
20-Oct-2010
Just lookin at the source......We do edit line ending to try to get 
them consistent.
Perhaps consistent, but wrong!
Sunanda:
2-Feb-2011
You should be good now......but using the updater to download 169+ 
scripts wlll trigger the problem again.

(Another quick fix is to edit the script to put a wait 10 between 
each read of the library)
Group: View ... discuss view related issues [web-public]
Chris:
2-Jan-2005
enable-fields: func [pane][

    foreach face pane [if face/style = 'field [face/feel: ctx-text/edit]]
]
disable-fields: func [pane][
    unfocus
    foreach face pane [if face/style = 'field [face/feel: none]]
]
view lay: layout [
    field field field guide
    btn "Enable" [enable-fields lay/pane] return
    btn "Disable" [disable-fields lay/pane]
]
DideC:
11-Jan-2005
the flag is set by each function that modified the series. It's in 
ctx-text (insert-char, edit-text for the most).
Ryan:
15-Jan-2005
Dont know, I figured it out largely by examining the ctx-edit object 
(view editor)
Group: I'm new ... Ask any question, and a helpful person will try to answer. [web-public]
Normand:
30-Apr-2005
Thanks for all those suggestions.   I was out for quite a while and 
am very happy of all those remarks. It will help orient my trials&errs. 
 About  objects, dynamic versus static, If I understand it, in Rebol 
it is static?  I never had to use them except to encapsulate the 
whole of an app.  Is there a trick to mimick something dynamic to 
hold changing values?  Maybee a copied block is enough?  I wonder 
because I regularly try to add code to a bibliographic database, 
a kind of a variation on bibtex (never ended, allways in progress), 
And I am not too far from aiming the storage mechanism and wonder 
what I should use to hold something like from 5 to 10 thousand references 
(my actual need is 3.5K)  I used endnotes in the past, but dreamed 
about my own.  It is a lot of work (more than I expected as it is 
my first app).   Up to now I think I will use simply name-value pairs, 
like Carl's cardex.  This kind of data is more like a ragged array, 
the fields and their numbers allways vary, and I may amend their 
list with time.  The idea of using an object would be nice but need 
something where I may add or retract variable names and change their 
values.  By the way, I thank Volker for his edit-tools, that may 
help to add a writing pad.  And his double slider is refreshingly 
new for such and old paradigm as an editor.
Jean-François:
27-Jul-2005
Hello everyone,

I have an EditME me that I'm using to manage a project this summer. 
I would like to use Rebol to logon to my wiki, edit some pages and 
attach files to pages.

Are their any code exemples that I could use to understand how to 
go about this. I need to be able to fill in forms and send them in 
to my wiki. 
many thanks
Sunanda:
14-Sep-2005
Alternatively. try to upload without a Library header.....One'll 
get added, and you can then edit it.


[It'd be good to get one more script in the Library. Right now we 
have 666, and that's an iconic number for some people :-)]
Group: Make-doc ... moving forward [web-public]
Geomol:
10-Jan-2005
One of the goals with the MakeDoc format is, that it's possible to 
easily read with a normal text window, and some people may want to 
edit it with a normal text editor and write the formatting chars 
themselves. XML is not suited for that. XML also has the same start- 
and end-tag problem (that I mentioned above) as HTML.
Sunanda:
11-Jan-2005
To be usable as part of a CGI (for dynamic sites like REBOL.org), 
we'd either need to edit the script to remove* feature* like =include; 
or (better) Makedoc2 could have some refeinements to limit where 
it can read files from.

Without something like that, features like =include are a security 
risk -- they can read anything on the server.
Ammon:
27-Jan-2005
What would really make that MD2 IDE kewl is the ability to directly 
edit the elements in the preview pane.
Ashley:
28-Jan-2005
Great stuff shadwolf! MDP-GUI has a good look and feel to it now. 
A couple of suggestions:


1. The preview pane is out by 40 pixels, page-width: 360 should fix 
it
2. Full-screen (even as an option) would be good
3. Option to use makedoc2.r instead of make-doc-pro.r


Now that the "proof of concept" seems sound I'll be concentrating 
on the VID emitter with a view to making it MDP complient and more 
efficient.

ability to directly edit the elements in the preview pane
 I'm working on that, but its a real pane (pardon the pun).

the rendering is slow because its a huge cheat

 - yes, like you I looked at a "live update" but its just too slowwwww. 
 An intermediate solution might be to have a timer that refreshes 
 the preview every few seconds or so.
James:
31-Jan-2005
So, I could just edit the HTML file and add it afterwards?
Group: Syllable ... The free desktop and server operating system family [web-public]
Anton:
14-Nov-2005
Ah..  I was just ready to give my user feedback on that. :) No matter, 
I still think the install was pretty easy. The only thing was not 
knowing how to edit menu.lst (I found AEDIT, but that was not obvious, 
eg. I tried "ed" "edit" etc first.) But you're going to fix the whole 
issue anyway.
Group: Linux ... [web-public] group for linux REBOL users
Pekr:
1-Aug-2006
I give up, I will edit sqlite driver and disable loging at all ....
btiffin:
13-Apr-2007
I'll have a blog running on peoplecards.ca...and it's blog.r based. 
 I'm just a little confused by 

blog-active: true/false  and the [edit] sequence doesn't seem quite 
right yet. 

This code snippet doesn't seem to redisplay things properly...
	if cgi/save [
		show-blog save-blog cgi/save cgi/date cgi/title cgi/text
	]
Alan:
24-Jun-2007
Graham,have you tried Mandriva ? I just installed VMPlayer on it 
but still need to edit a pl config to get it to work Altme/View install 
fine on the x386 version but the 64 bit version does not
DanielSz:
9-Sep-2007
sorry, you mean edit the mime type configuration file in gnome?
BrianH:
22-May-2008
Most of what I do could in theory be done from the command line (I 
don't edit images much), but the gain or loss in productivity varies.
Group: CGI ... web server issues [web-public]
Pekr:
5-Dec-2005
well, but as for 3) if I only edit my script, overwrite it, the permission 
(after copying it back to ftp) will be preserved. But if I add script, 
it has insufficient permission once again ...
Henrik:
5-Dec-2006
system/options/cgi/remote-addr is not registered, apparently, so 
I can't edit pages.
Group: Dialects ... Questions about how to create dialects [web-public]
btiffin:
15-Sep-2006
Requesting Opinions.  Being a crusty old forther, I really really 
miss the immersive nature of the block editor environment.  Coding 
in forth meant never leaving forth.  Editor, debugger, disk drivers 
etc... all forth commands.  No need to ever have the brain exit forth 
mode.  Now that Rebol is my language of the future, I kinda pine 
for the past.  The wonder and beauty of Rebol keeps being interrupted 
by decisions on what to use to edit that last little bit of script. 
 Notepad, Crimson Editor, Rebol editor? A small annoyance but it 
still disrupts the brain from getting to streaming mode.  So now 
to the question.  My first crack at a forth block editor dialect 
failed miserably.  Dialects need to be LOADable for parse to function. 
 Editing source code makes for unloadable situations.  Do I just 
give up on it and learn to live in the third millenium?  Write a 
utility that doesn't use dialects (which seems to unRebol the solution)? 
 I thought I'd ask you guys, just in case there is a light shining 
in front of me that I can't see.  Thanks in advance.
Anton:
15-Sep-2006
Well, I've never gone Forth, and I'm not sure what a block editor 
is, but maybe you can benefit from some console commands. I almost 
always use Crimson Editor. I have an EDIT command which launches 
Crimson Editor, and I navigate the filesystem in the rebol console 
using dir-utils.r, which supplies unix-like filesystem commands; 
CD, LS, MV etc.
http://anton.wildit.net.au/rebol/os/windows/edit.r
http://anton.wildit.net.au/rebol/library/dir-utils.r
Volker:
15-Sep-2006
I am not sure where your focus is.
Editor-dialect: put the edited code in strings, like
[ #1 {io-code} #2 {gui}]

Patch the inbuild editor to load and store there, instead iof storing 
to files.

And from the console a simple "ed #2" would edit it. but still in 
a seperate window.

Console: Or is it about that seperate window, do you want inside 
that rebol-console-window? More work, but rem-edit does that, maybe 
its author would help with fixing.
Fork:
9-Jan-2010
Obviously people who do code golf come to it from different perspectives, 
I think Rebol's key here is just to engage by giving lively and flexible 
solutions which pique interest.  I intentionally didn't clone the 
deranged "winner" of the roman numeral contest because he'd thrown 
out the program logic, it was no longer source code.  I can edit, 
debug, and insert probe messages into mine easily.
Group: Web ... Everything web development related [web-public]
Volker:
4-Feb-2005
Found a tool for css and firefox. Opens an editor in the sidebar 
with css for the main-page. and updates main-page on the fly on edit. 
https://addons.update.mozilla.org/extensions/moreinfo.php?application=firefox&version=1.0&os=MacOSX&category=DeveloperTools&numpg=10&id=179>EditCSS
Pekr:
4-Feb-2005
mod_rewrite? Never used something like that ... so shold I edit httpd.conf?
Group: !RebGUI ... A lightweight alternative to VID [web-public]
Louis:
3-Mar-2005
Definitions of widget on the Web:


    A standardized on-screen representation of a control that may be 
    manipulated by the user. Scroll bars, buttons, and text boxes are 
    all examples of widgets.
    www.redhat.com/docs/glossary/


    A set of clickable, graphical element in a user interface. This includes 
    buttons, radios, checkboxes, and scroll bars. Widgets vary in appearance 
    and dimension from platform to platform.
    www.gerbilbox.com/newzilla/glossary.php


    n. 1. A meta-thing. Used to stand for a real object in didactic examples 
    (especially database tutorials). Legend has it that the original 
    widgets were holders for buggy whips. "But suppose the parts list 
    for a widget has 52 entries...." 2. [poss. evoking `window gadget'] 
    A user interface object in {X} graphical user interfaces.

    www.worldwideschool.org/library/books/tech/computers/TheHackersDictionaryofComputerJargon/chap55.html


    (n.) In a window system, a reusable user interface component such 
    as a button, scrollbar, control area, text edit area, and so on. 
    When an X Toolkit Intrinsics function creates a widget, it is returned 
    as an opaque data handle and assigned to a variable called a widget 
    identifier. See also OLIT.
    docs.sun.com/db/doc/805-4368/6j450e610


    – A graphical user interface programming object (button, scrollbar, 
    radio button, etc.) for the X Window System. (Also, see X Window 
    System.)
    www.newtolinux.org.uk/glossary.shtml
Ashley:
5-Mar-2005
First stab at a list of required base widgets

	area
	bar
	box
	button
	check
	droplist - text display + drop-down list
	editlist - edit box + drop-down list
	field
	groupbox - encloses a group of gadgets in a titled border
	icon
	image
	list – single column
	listview – multi-column
	progress
	radio
	scrollbar

 spliter – a “spliter window” which affects the width / height and 
 position of other gadgets
	tab -  arranges multiple gadgets into logical groups
	text
	slider
	treeview

 updown – scrollbar minus the bar (used with a field to increment 
 / decrement numbers, etc)
	menu
	popup-menu - context menu
	status – status bar with one or more “segments”
	toolbar


The aim is to have as few widgets as neccessary to build the majority 
of required GUI's. Take a look at the applications you use on a day 
to day basis, what widgets do they use? Are they in the list above? 
How are they named? Are there any widgets in the above list we can 
do without? (not that *someone* won't need it, just that it isn't 
common enough to be part of the base widget set).
shadwolf:
5-Mar-2005
for droplist the edit field must have an auto completion according 
to entries in the dropped list
Ashley:
20-Mar-2005
Latest release available at: http://www.dobeash.com/files/RebGUI-015.zip

Highlights include:

	- New LED widget
	- Tweaked check, splitter and tab-panel widgets
	- Basic edit feel added to area and field widgets
	- Resizing is now fully recursive
	- Added a light-weight request-file function for Win32/SDK use
	- Numerous minor improvements and fixes
	- Documentation update (the Display User's Guide in particular)
Ashley:
24-Mar-2005
Less than a dozen widgets to go!

	droplist	edit box / text display + drop-down list
	list		single column
	listview	multi-column
	radio
	treeview

 updown	scrollbar minus the bar (used with a field to increment / 
 decrement numbers, etc)
	menu
	popup-menu	context menu
	status		status bar with one or more “segments”


If you're working on any of these, drop a message here so we don't 
double up on efforts. ;)
Ashley:
27-Mar-2005
Pekr: the edit feel is pretty basic at the moment (doesn't support 
highlighting or cut / paste). The Ctrl+BackSpace and Ctrl+Del are 
"delete to end" and "delete to beginning" respectively, which almost 
all editors support without the need for highlighting ... now the 
key mappings are another issue. ;)

Graham: You need to add the following to %tour.r:

	#include %gfx-colors.r
	#include %request-file.r
	#include %gui.r
	#include %widgets.r
	#include %display.r


and comment out the "do %gui.r" in %tour.r and the "do %widgets.r" 
and "do %display.r" lines in %gui.r. I'll make this less painful 
in the next release.


Brian: See Sunanda's response or just comment out the redefine of 
'show in %gui.r
Ashley:
3-Apr-2005
Latest build available at: http://www.dobeash.com/files/RebGUI-018.zip

Highlights include:

	- New pwd-field widget
	- Updated tab-panel & radio-group widgets
	- Timer widget removed
	- Added Ctrl+Left & Ctrl+Right (word left / right) to edit feel
	- Display User's Guide updated to reflect previous changes
	- Menu widget and tabbing deferred until 0.1.9


Note that face edge, font, para and feel now default to none. Use 
default-* objects if your widgets need these attributes (this brings 
these attributes in line with the RebGUI philosophy of "absent unless 
specified"; and removes all the attribute: none assignments).
Group: !Uniserve ... Creating Uniserve processes [web-public]
Oldes:
30-Jan-2007
And if you are using the Uniserve from the link above, you should 
know, that it's just a shapshot from doc's folder so you have to 
for example edit some files - for example the default prefs of the 
HTTPd as they are leading into files which don't exists.
Oldes:
30-Jan-2007
just go to services/HTTPd.r file and edit the prefs
Group: Cookbook ... For http://www.rebol.net/cookbook/requests.html [web-public]
Graham:
7-Jul-2005
that's why I have made logging in obligatory to edit pages
Henrik:
19-Jul-2005
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.
Group: Hardware ... Computer Hardware Issues [web-public]
Louis:
28-May-2006
Is that fast enough to edit video?
[unknown: 9]:
29-May-2006
Even a slow computer can edit video just fine.  It depends on what 
medium you work on.  For example, if work in Raw, everything is really 
fast.  When you finally move to a format (AVI, .MOV, .MPG, etc.) 
that is when stuff takes a LONG time.  You need lots of video space.
Group: Syncing ... Syncing technologies [web-public]
Pekr:
4-Jan-2006
I would like to have answered:


1) what technique to use for "timestamping" - do we continue with 
timestamps against one central time, or do we use hashes, or sequencing 
numbers, or mixture of mentioned techniqueues? We might look how 
others do it ...


2) better support for possible conflicts - imagine following scenario 
- you have some reblet, e.g. Contacts - one person starts editing 
it, then another person starts editing it too. First one syncs (saves 
changes), then second one does the same - changes of first ones are 
lost. How to aproach this - introduce some kind of resources locking? 
(not real locking, but we are message based, so could be queued)


It could work as follows - person 1 wants to edit some record. Edit 
button posts request-for-lock. Lock is assigned. I other person tries 
to edit, it will not obtain lock. We could even introduce protocol 
level support, so that the person is informed, who has the lock, 
and how long. The trouble usually comes, when person goes off-line 
after the edit started - we need to remove dead-locks, so by default, 
I would lock for 20 minutes e.g. and the lock would have to be renewed, 
if person 1 wants to work longer with the given document ...


another scenario is, when you actually start editing something which 
might require locking, but you start already being off-line. We could 
create lock-request, just not synced yet. Once you go on-line, you 
simply check seqno, if the lock is possible, and the given record 
not modified. But what if it was modified in the meantime? e.g. you 
might be working with stock system and someone else in the office 
sells few units, for which you may start writing offer for to another 
customer. Tough scenario - would like to know your opinion. Maybe 
some things simply need to be done on-line only?


3) I needed small file-sync scenario - could use IOS, but IOS can't 
sync and "forget". Simply idea is to have different kind of syncing 
techniques, so e.g. for file transfer you have dir to sync, if correctly 
synced, log it, forget it, delete it on client and or server (or 
not, it depends)


as for IOS, local storage could be encrypted (or not), imported into 
RebDB (no single better solution so far introduced for rebol), sync-per-record 
or record-set could remain (record=document). RebDB on Serve would 
speed things up significantly too ...


another possibility is to think outside the IOS terms, in more general 
way - simply thinking about world of objects, being in various states, 
with various life-time around internet and on-line or off-line devices. 
I think that maybe we could find some simpler solution than SyncML 
and the likes ...


another point - such techniques should be transport independent, 
so I would not like to hear that it needs this or that ;-)

So, anyone?
Group: Tech News ... Interesting technology [web-public]
Maxim:
21-Apr-2006
but at least you could use Ultra edit on the mac to code it  ;-)
Louis:
18-May-2006
I also want to save the data so I can edit it and fill out the form 
again later.
Henrik:
18-May-2006
openoffice 2.0 has a free XForms implementation. it can save PDF's 
like this so you can edit them like a real form. I haven't worked 
with it deeply, but I think you can save data from them in a database.
Henrik:
18-May-2006
edit them like a real form
 => edit them like a real form in adobe reader
[unknown: 9]:
21-Jun-2006
Yes.  I posted the complete contents of my edit buffer (Word), and 
deleted it and restarted.  Not that anything was important, but it 
may have read oddly (even for my posts).
Group: SQLite ... C library embeddable DB [web-public].
Terry:
4-May-2006
 wtcSQLite allows you to add/edit/delete indexes, fields, tables, 
 triggers, views, data, and manage multiple database aliases without 
 knowing any SQL at all. 
http://www.zend.com/php5/contest/contest.php?id=74&single=1

(it's phpmyadmin for sqlite)
Louis:
16-Nov-2006
What am I doing wrong here:

rebol []
do %sqlite.r
do %rebgui.r

if not exists? %id.txt [write %id.txt 1]

db: %indodex.db
either not exists? db [
    CONNECT/create/flat/direct/format db

    SQL "create table base (id, Nama, Alamat, Telefon, Handfon, Fax, 
    Email, Tgl_Nikah, Nota)"

    SQL "create table birthdays (id, Nama, Jenis, Hubungan, Tgl_Lahir, 
    Agama, Nota)"
][
    CONNECT/flat/direct/format db
]
unless value? 'ctx-rebgui [
	either exists? %rebgui-ctx.r [do %rebgui-ctx.r] [do %rebgui.r]
]
set-colors
tab-size: 120x55
fonts: reduce [font-sans-serif font-fixed font-serif "verdana"]
do show-cc: make function! [] [
display "IndoDex Ver. 1.0.1" [
    tab-panel #HW data [
        "Add" [

            label "Title:" priority: drop-list 30 #W "Pak" data ["Pak" "Ibu" 
            "Sdr." "Sdri." "Drs." "Dr." "Tuan" "Nyonya"] 20x5
            return
            label "Nama:" nama: field 
            return
            label "Alamat:" alamat: area 50x30
            return
            label "Telefon" telefon: field
            return
            label "Handfon" handfon: field
            return
            label "Fax:" fax: field
            return
            label "E-Mail:" email: field
            return
            label "Nota:" nota: area 50x30
            return
            button "Save" [
                (id: to-integer read %id.txt)

                SQL/flat/direct {insert into base values (id, Nama, Alamat, Telefon, 
                Handfon, Fax, Email, Tgl_Nikah, Nota)}
                (write %id.txt id)
                show-text ex-status "Saved"]
        ]
        "Edit" [
            
	]
	"Search" [
	]
    ]
]
]
do-events
Group: Postscript ... Emitting Postscript from REBOL [web-public]
Graham:
18-Apr-2006
I have a button "Edit" which imperfectly shows you the dialect source 
( strings lose their quote marks).  Not formatted though.  And save 
which is supposed to re-render any changes doesn't work .. because 
the data needs to be converted from text to a block, and without 
the quote marks for the text, it dies.  Too late for me to find a 
fix.
Anton:
18-Apr-2006
Yeah, "Edit data" just forms the data, mold it instead.
Graham:
18-Apr-2006
you can edit and save, and it redraws it.
Graham:
24-Apr-2006
If you use the "edit data" button, and change the word "justify" 
to "left", and save, the text reappears without the full justification.
Henrik:
24-Feb-2008
so I think there should be an option to leave that out, or by default 
not have it. I'm guessing most people want to generate and print 
PS file, rather than read and edit them by hand.
Geomol:
24-Feb-2008
To do anything about it, we need to be able to reproduce that error, 
and see if we can figure out, that might solve it. A way to test 
different things is to edit the ps-files by hand.
Group: Plugin-2 ... Browser Plugins [web-public]
BrianH:
4-May-2006
Sure, if you want. I'll edit the security entry I already put there.
Pekr:
15-Jun-2006
If we could configure plug-in some-way, those behind proxy would 
at least normally edit their user.r and do some tweakings, not so 
with proxy ....
Volker:
19-Jun-2006
Have you noted there are two tags, and you have to edit both? or 
does not eventhe install-page work?
Dockimbel:
13-Oct-2006
.r files are treated as CGI script by default in Cheyenne. To change 
that, you have to edit the httpd.cfg file and change the following 
line :
Group: !Liquid ... any questions about liquid dataflow core. [web-public]
Maxim:
16-Feb-2007
what we can do is manage code and edit the code on the fly... which 
is what I will be doing as my first liquidator module.
Maxim:
8-Dec-2008
elixir, itself is about 90% done.  file i/o is done, GUI framework 
finiwhed,  CLI 100% operational, all I needed was to finish the data 
query language to be able to create/list/edit/delete stuff in the 
data cloud more easily...
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public]
Maxim:
22-Feb-2007
I put 0% of time on site layout, once its done.  I just edit content 
and make the page.  its like editing make doc, but in html format... 
also, the tags are not standard html type tags  they nest directely 
 <p! text <b! is bold <i! and italic>>>
Maxim:
22-Feb-2007
easier to edit, since I don't have to track the damned end tag all 
the time... this being said, normal html is still valid within the 
files... so its a 1/2 way between html and rebol code.
Maxim:
22-Feb-2007
they are all part of the standard apache distro... but you have so 
edit the config file to enable them
Dockimbel:
26-Feb-2007
I just intalled the windows version, it works very well. I just had 
to edit the stunnel.conf file to uncomment the HTTPS config options.
Dockimbel:
26-Feb-2007
Then Start => Programs => STunnel => Edit stunnel.conf : uncomment 
the [https] section, then save it.
Chris:
23-Apr-2007
For example, from this url: http://foo.com/pages/edit/1-- I get 
the Request_Uri value "/pages/edit/1" then parse it -- ["pages" "edit" 
"1"] -- here I have a controller, and action and an id.  It is a 
more enduring approach than http://foo.com/cgi-bin/qm.r?controller=pages&action=edit&id=1
Dockimbel:
1-Jun-2007
That's because the DEBUG mode is activated by default in these beta 
releases. To get ride of it, just edit the httpd.cfg file , find 
the webapp "/testapp" option block and remove the 'debug keyword 
 (then restart the server).
Graham:
2-Jun-2007
Or, do I edit cheyenne.r to do that?
Dockimbel:
6-Jul-2007
Pekr, you have an issue with your localhost DNS resolution. You should 
check that your hosts file is not messed up. If you can fix the localhost 
problem, here's a workaround, in Cheyenne archive, edit the mods/mod-fastcgi.r 
file, find the fastcgi://localhost:9999 expression and replace it 
by : fastcgi://127.0.0.1:9999, that should work.
Dockimbel:
12-Jul-2007
To enable the PHP support: edit the %httpd.cfg config file, uncomment 
the indicated section and change the path to the php-cgi binary, 
that's all. The new mod-extapp will launch and kill PHP for you.
Dockimbel:
24-Jul-2007
The web control panel purpose is to provide an embedded UI for managing 
Cheyenne configuration. Once done, you shouldn't need to edit the 
httpd.cfg file anymore.
Group: DevCon2007 ... DevCon 2007 [web-public]
Gabriele:
24-Apr-2007
i think i will be bringing my camera, and i can shoot some videos, 
not sure i'll have the time to edit and publish them immediately 
though. i hope the organization didn't forget about creating videos 
:)
Group: Games ... talk about using REBOL for games [web-public]
ICarii:
5-Jun-2007
just edit the tileset :)
Janko:
2-Jan-2009
rebol would be very interesting  choice for this because it can "do" 
and process it's own code at runtime and it would make for a *dream 
combination* of making games that you can code and edit at runtime 
without restarting!
Janko:
22-Jan-2010
Very interesting. I was burned too few times with GUI based tools 
with no simple representation taht you could programatically or by 
hand edit also.
Group: !CureCode ... web-based bugtracking tool [web-public]
MikeL:
18-Jun-2007
Hi Doc,    Very nice. And fast!        From first look here are some 
questions:

1. Is it possible that an option is don't allow comment editting 
or delete since this is the full audit path for resolution?

2. Can it add journal items to record who changed what when they 
use "Edit Ticket"?
Dockimbel:
18-Jun-2007
Hi MikeL, thanks for your feedback.


1: Only the author of a comment can edit/delete its comment, no one 
else can. See http://softinnov.org:8000/curecode/ticket.rsp?id=10005#comments


2: Definitely a useful feature that I would like to add asap. (added 
as a feature request in CureCode project).
BrianH:
21-Jan-2009
Not even that. It would be sufficient to do two things:

- Do a server-side redirect to a get page when you go into edit mode 
on a ticket or comment update.

- If doing a post and the session has timed out, create a new session 
and save the data to it temporarily and take the person to a login 
page. After the relogin, take them back to the page with their edits 
prefilled in. Then let them save (or perhaps save on the way).
BrianH:
9-Feb-2009
Getting the redirect loop on edit bug again. Clicking on a ticket 
from the View Tickets list takes me to:
- http://curecode.org/rebol3/edit-ticket.rsp?id=607&cursor=1
which takes me to

- http://curecode.org/rebol3/set-project.rsp?prj-id=2&ref=edit-ticket.rsp%3Fid%3D607%26cursor%3D1
and back again, endlessly.
PeterWood:
19-Feb-2009
I entered a bug report into the Rebol3 tracker and it got duplicated 
- #645 & #646. I don't think I clicked "submit ticket" twice though 
I may have accidentally double-clicked on it.


I tried to delete #645 and followed the sequence "edit ticket"->"delete 
ticket"->"confirm ticket" but it wasn't deleted.
Dockimbel:
12-Apr-2009
BrianH, on 21-Jan 11:16 PM you said : "Do a server-side redirect 
to a get page when you go into edit mode on a ticket or comment update."


I'm not sure to understand the "server-side redirect to a get page" 
part. When you click on a ticket ID or comment [Edit] button, you 
enter in edit mode using a GET request. What would a redirect improve 
here? Is it related to the browser Back button and client cache management?
Dockimbel:
24-May-2009
Currently the changelog for the new version is :

	o FEAT: "User" column added to tickets list page.
	o FEAT: Search text feature extended to comments.	
	o FIX:	"By Submitter" filter now working correctly.	
	o LOOK: Textarea edit fields enlarged to maximum width.
Group: DevCon2008 (post-chatter) ... DevCon2008 [web-public]
Reichart:
17-Dec-2008
Nick, I'm throwing my questions into a wiki, which will eventually 
become the Wiki to tell people everything they need to know to jump 
into the DevCon.

This is a public syndicated version of the Wiki


https://www.qtask.com/qwiki.cgi?mode=previewSynd&uuid=89Q6MQ8PFN5YU27HNSV87LWB22QT


If you want to edit the Wiki, you simply need to be a member of the 
REBOL SIG project in Qtask.


If anyone wants in, just shoot me a message with the email address 
you want me to use.  There are already about 70+ people in the project.


Here is the link to the editable Wiki  https://www.qtask.com/quilt.fcgi#qwiki-8382?project=198
Reichart:
22-Dec-2008
We really need a place we can send everyone.  I'm going to vote a 
public Wiki, but if no one steps forward with that...then I will 
simply take the art I made, make a Wik on Qtask out of that, and 
sydicate it (make it public).

Anyone in the REBOL DevCon project in Qtask can edit it...
1 / 651[1] 234567