Howdy- I'm wondering if there is a neat and clever way to utilize the functionality of Apache::ASP in an offline capacity... This isn't as hair-brained a...
4
John D. Leonard II
john.leonard@...
Dec 9, 2001 12:32 pm
... Your response just blew me away! I can appreciate most of the nuances that you describe, however, most of it was well beyond my skill level. I think that...
5
John D. Leonard II
john.leonard@...
Dec 9, 2001 12:37 pm
John: The beauty of Apache::ASP is that it is all written in "perl". I often implement the off-line functionality that you describe through a "cron" job and a...
6
Dariusz Pietrzak
dariush@...
Dec 9, 2001 12:46 pm
... how about 'asp' script, i think it's included in Apache::ASP distribution eyck@ghost:~$ asp Usage: asp [-hsdb] [-o directory] file1 @arguments file2...
7
Joshua Chamas
joshua@...
Dec 9, 2001 8:20 pm
... Exactly... the asp script is at ./cgi/asp in the distribution. -- Josh ... To unsubscribe, e-mail: asp-unsubscribe@... For additional commands,...
8
Joshua Chamas
joshua@...
Dec 9, 2001 8:30 pm
... Let me get back to you on this. I'll experiment some on what might be the best way to develop simple applets like this for reusability. Admittedly what I...
9
Joshua Chamas
joshua@...
Dec 9, 2001 8:36 pm
... I am not sure whether Apache::ASP is thread safe, but probably would not take much work to get it that way. I have not set up mod_perl 2.0 and cannot...
10
John D. Leonard II
john.leonard@...
Dec 11, 2001 2:04 pm
All: Attached is an example Apache::ASP applet that generates the following strings: Home >> Membersonly >> Minutes based on an input REQUEST_URI. Each of the...
11
Dariusz Pietrzak
dariush@...
Dec 11, 2001 6:39 pm
Ehlo, I need help with tracking down this error, it occurs randomly - everything works fine.. then I get 'internal server...' with error mentioned above.....
12
Joshua Chamas
joshua@...
Dec 12, 2001 1:58 am
... Hey Dariusz, Sounds like the kind of bug that would occur to a DSO build of mod_perl + apache, use of Apache::StatINC or use of Apache::Reload. I would...
13
John D. Leonard II
john.leonard@...
Dec 12, 2001 3:11 pm
Joshua (and others...): This is difficult bug to describe, but appears to relate to the initialization of the $Request->ServerVariables object. I have the...
14
Howell, Steven
Steven_Howell@...
Dec 12, 2001 6:43 pm
Hi folks, Is the normal range of Perl functionality available from the Perlscript which makes up an Apache::ASP file? For example, can you read and write to ...
15
Mark Seger
seger@...
Dec 12, 2001 6:46 pm
I program in perlscript on IIS all the time as have yet to find any functionality NOT there. I have recently moved a perlscript LDAP app from IIS to apache...
16
Mark T. Dame
mdame@...
Dec 12, 2001 8:14 pm
... For one thing, Apache::ASP doesn't use PerlScript. It uses real Perl. That means that you have access to all the features and capabilities of your...
17
Dariusz Pietrzak
dariush@...
Dec 13, 2001 8:44 pm
... The next day problem dissapeared so I am having problems with locating the cause now - maybe there was sth wrong with the system, I couldn't locate it...
18
Dariusz Pietrzak
dariush@...
Dec 13, 2001 8:54 pm
... This is great example, however here come the issue of namespaces - one couldn't use one's own showdir.inc .. and with growing number of canned apps this...
19
Dariusz Pietrzak
dariush@...
Dec 15, 2001 5:06 pm
This one here is just repackaged rss2html from XML::RSS module,
made to fit style suggested by John Leonard.
I still think it would be better to make those...
20
John D. Leonard II
john.leonard@...
Dec 16, 2001 3:11 am
... Nice applet! Are you aware of any "standards", de-facto or otherwise, for sharing calendar information? For example, I participate in several groups that ...
21
Joshua Chamas
joshua@...
Dec 16, 2001 10:47 am
... I think Doug & others attempt patches to make DSO behave better from time to time, but I don't know that anyone has ever figured out why DSO configurations...
22
Joshua Chamas
joshua@...
Dec 16, 2001 11:10 am
... From your description of the problem, I would probably write your code like this: sub Script_OnStart{ foreach my $key (qw( REMOTE_USER REMOTE_GROUPS...
23
John D. Leonard II
john.leonard@...
Dec 16, 2001 12:20 pm
Joshua; ... Actually, I do want these data to persist between requests. My goal is to retain the REMOTE_GROUPS variable set by AuthDBI and use it by...
24
Philip Mak
pmak@...
Dec 17, 2001 3:36 am
I think that it may actually be harmful to power users in some cases if you "PerlSetVar ParanoidSession 1". If the session key is stored in as a URL string,...
25
Joshua Chamas
joshua@...
Dec 17, 2001 8:01 pm
... You are right. This implementation was necessitated before by the ASP session implementation stating that a session had to be created if did not already...
26
Joshua Chamas
joshua@...
Dec 17, 2001 8:15 pm
... I would at least let the author of the module know about these things: Edmund Mergl <E.Mergl at bawue dot de> ... maybe even the mod_perl list if Edmund is...
27
Dariusz Pietrzak
dariush@...
Dec 20, 2001 11:58 am
... There is something called 'iCalendar39; that some apps seem to refer as to standard. ... it is so common that is should have been solved years ago, but all...
28
Aaron Johnson
solution@...
Dec 21, 2001 12:01 am
The job is on site in Chicago and would require a wide range of talent, including , but not limited to: Ability to create/write/edit content for the web site ...
29
Szymon Juraszczyk
szymon@...
Dec 24, 2001 12:28 am
Hi, I've got serious problems with $Response->Flush() function. I searched discussion forums and found quite lots of references regarding this issue. However,...
30
Joshua Chamas
joshua@...
Dec 24, 2001 4:01 am
... How does the http://www.apache-asp.org/eg/register_cleanup.asp script work for you? Under IE & Netscape, I see the ... render one line at a time. This is...
31
Szymon Juraszczyk
szymon@...
Dec 24, 2001 4:24 am
... It works fine for me too. ... I don't use XMLSubs. ... It's very simple: <html> <body> <% for (my $i = 1; $i <= 10; $i++) { $Response->Write("Test...
32
Joshua Chamas
joshua@...
Dec 24, 2001 4:36 am
... This should work. What if you put the Flush() in the for loop. I wonder whether your browser needs to see more than one flush to start rendering. My...