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

World: r3wp

[All] except covered in other channels

Volker
3-Jun-2006
[2231]
skype.
Robert
4-Jun-2006
[2232x2]
skype can only handle 1:1 video conferencing and I din't find a good 
app-sharing module yet.
I have finde some stuff:
- MS Research portrait (not tested)

- ivisit (seems to be a cool approach, P2P based, interesting app-sharing 
concept: just define an area of your screen to share)
- feestoon (skype plugin, not yet tested)
- good old netmeeting
Chris
14-Jul-2006
[2234x2]
Anyone fluent in Python here?  (respond privately pls)
Need a second pair of eyes to review some code...
Graham
14-Jul-2006
[2236x2]
Max is ...
Terry might still be
Gregg
15-Jul-2006
[2238]
I think Tim Johnson is, he's on the ML.
Josh
1-Aug-2006
[2239]
Anyone done any work on rebol and LDAP?  Only stuff I've seen is 
the first couple hits on google such as http://softinnov.org/rebol/ldap.shtml
that haven't been updated in a long while
[unknown: 9]
2-Aug-2006
[2240]
What do you want to know?  WE support LDAP and RADIUS in Qtask.
Maarten
2-Aug-2006
[2241x2]
LDAP and RADIUS? as authN method? Implemented in REBOL? That would 
be interesting...
Where did you say the source was published ;-) ?
[unknown: 9]
2-Aug-2006
[2243]
: ) We have not published that source, but I'm cool with it being 
published.  It is not fully tested yet, in fact it will be tested 
very soon.  You have to pound on Edgar to get him to post the source.
Pekr
2-Aug-2006
[2244]
LDAP? Holly cow! :-)
[unknown: 9]
2-Aug-2006
[2245]
Yes, Qtask Enterprise is designed to be dropped right into a server 
farm and start working.  We are working on WebDAV soon as well.
Josh
2-Aug-2006
[2246]
Just wanting to see how much work it would be to authenicate to an 
LDAP in an application
Josh
3-Aug-2006
[2247]
So it's good to hear that you have developed a REBOL LDAP interface 
for QTask
james_nak
3-Aug-2006
[2248]
If there is anyone like myself who just scratched their head and 
said what in the blazes is LDAP? http://raleigh.pm.org/ldap-talk.html
 is a nicely done   page. Of course now I want it!
MikeL
3-Aug-2006
[2249]
The softinnov link to the LDAP solution above might be the wrong 
one ... I think you want to look at http://softinnov.org/rebol/ntlm.shtml
instead i.e. how does a rebol script authenticate in the microsoft 
nltm world ... which uses ActiveDirectory.   NTLM has been rebranded 
as Integrated Windows Authentication.   

These links may also be useful 

http://en.wikipedia.org/wiki/LDAP
http://en.wikipedia.org/wiki/NTLM


My view is that without easy NTLM support we will be very handicapped 
using rebol scripts ....


If running a REBOL script as CGI under IIS, the user information 
is available in the script after IIS has taken care of the challenge. 
 Such support is not available (AFAIK) in Xitami and many other servers.
Ladislav
4-Sep-2006
[2250]
The REBOL ML "refused" to accept my contribution twice, is there 
anything wrong with it?
Graham
4-Sep-2006
[2251x2]
are you still subscribed?
try re-subscribing
Ladislav
4-Sep-2006
[2253x2]
Current account flags for 'lmecir@...' on 'rebol':

	ECHOPOST
yet it bounces my posts
Graham
4-Sep-2006
[2255]
tomc is the mailing list man
Ladislav
4-Sep-2006
[2256]
there was a ML group, but  I don't see it, has it been deleted?
Graham
4-Sep-2006
[2257x2]
hmm.
Can't see it either.
Gabriele
4-Sep-2006
[2259x2]
ladislav, what error does it give you back?
ah, i see the messages went thru. so maybe it was a temporary problem.
Ladislav
4-Sep-2006
[2261]
aha, so you see the messages?
Graham
4-Sep-2006
[2262x2]
me too
must be your email playing up again Ladislav .. it did this a couple 
of years ago as I remember
Ladislav
4-Sep-2006
[2264]
this is different, I got mails like this:

This is the Postfix program at host mail.rebol.net.

I'm sorry to have to inform you that your message could not be
be delivered to one or more recipients. It's attached below.

For further assistance, please send mail to <postmaster>

If you do so, please include this problem report. You can
delete your own text from the attached returned message.

			The Postfix program
Pekr
4-Sep-2006
[2265x2]
hmm, there might be some misconfiguration on your provider's side, 
and hence your mail being regarded a spam for e.g.?
But I can see your messages on ml, so ...
Ladislav
4-Sep-2006
[2267]
fine, I hope you will post your preferences, then :-)
Pekr
4-Sep-2006
[2268x3]
preferences to what? :-)
well,it is just that sometimes it happens, that mail server can be 
misconfigured, but it is not your case apparently, or my mozilla 
would mark your emails as possible spam ...
everything looks fine here ...
Ladislav
4-Sep-2006
[2271x3]
preferences to what? :-)
 - I meant your preferences to the FOUND? subject
found? select reduce [1 none] 1

and

    switch/default 1 reduce [1 none] [2]
(I hope you received that post)
Pekr
4-Sep-2006
[2274x5]
yes, twice :-)
found? select 1 reduce [1 none] .... should be found? select reduce 
[1 none] 1 probably?
I like 'found? as-is, but it is true, that I sometimes thought, that 
it would perform 'find for me too .... found? find series value - 
simply that 'find is redundant here ....
but that is just my non-native english perspective, which came to 
my mind few times, without actually thinking more deeply about consequences 
...
as to found? select ... dunno if it is valid thinking - you are not 
searching the series, altough reading the expression "in english" 
might suggest it - you are performing found? on the result of select 
function call ....
Ladislav
4-Sep-2006
[2279]
right, Pekr, I mentioned the SELECT issue because it is "at the heart" 
of the SWITCH problem
Oldes
4-Sep-2006
[2280]
Using found? select .. can be problem anyway as the selected value 
can be 'none (you found 'none) :-)) I'm not using found? much often 
i prefere none? and not none? (found? is a shortcut anyway)