• 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
r4wp0
r3wp11
total:11

results window for this page: [start: 1 end: 11]

world-name: r3wp

Group: Core ... Discuss core issues [web-public]
Pekr:
27-Dec-2005
in that regard, I wanted to ask Ladislav, about security - is it 
possible to protect system words, even to not be unprotected? :-) 
Imagine rebol would use system/locale for things like system messages 
in order to be translatable, but then someone could change the strings, 
which could be big security risk (user answering to different question)
Pekr:
27-Dec-2005
what about extending secure scheme? to allow e.g. pre-boot, post-boot 
changes etc.? hmm, not sure it has a solution in my particular case, 
e.g. that I would like to hae system/locale translated, but then 
blocked against the changes ...
Pekr:
27-Dec-2005
but that would not solve my case, if RT would do system/locale immutable, 
then I would not be able to change it. I though about protection 
by some kind of key, e.g., but dunno if it might work. at first change 
the key would be provided, for unprotect, the key would be needed 
...
Volker:
27-Dec-2005
protecting system/locale: if user cant run code, user cant change 
it. if user can run code, he does not need to change those strings.
Henrik:
16-May-2006
is system/locale ever used for anything beyond the date requester? 
it would be nice if it were possible to localize date! type
Group: View ... discuss view related issues [web-public]
Pekr:
22-May-2006
take localisation into account (e.g. calendar does not use system/locale), 
and if you will implement set get for styles, it would be good to 
have it kind of rewrite methods .... set-face 'parameter value, not 
just set-face 'value - unnecessary limited :-)
Group: I'm new ... Ask any question, and a helpful person will try to answer. [web-public]
Graham:
4-Jul-2009
>> probe system/locale
make object! [
    months: [
        "January" "February" "March" "April" "May" "June"

        "July" "August" "September" "October" "November" "December"
    ]
    days: [

        "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday" "Sunday"
    ]
]
mhinson:
4-Jul-2009
so does Rebol always reference the system/locale when printing a 
DATE! but only store the inteeger values?  or does it store the date 
in julian format & do more complex stuff to output even things like 
date/year
BrianH:
4-Jul-2009
mhinson, MOLD and FORM never reference system/locale - REBOL syntax 
is English-based.
Group: RT Q&A ... [RT Q&A] Questions and Answers to REBOL Technologies [web-public]
Pekr:
27-Dec-2005
not only that - it could be properly supported by sort/collation 
kind of functionality, as other environments do (mySQL). Rebol even 
does not use its system/locale in its own calendar ;-)
Pekr:
27-Dec-2005
in that regard, I wanted to ask Ladislav, about security - is it 
possible to protect system words, even to not be unprotected? :-) 
Imagine rebol would use system/locale for things like system messages 
in order to be translatable, but then someone could change the strings, 
which could be big security risk (user answering to different question)