Hello all, Two simple questions. Advice or pointers to relevant documentation is, as always, much appreciated. 1. How do I turn my exsiting zclass instances into html? Ideally, I'd like to create a method that renders the class instance when refered to. 2. I'm doing my zope with apache. Why do things get added to the path on my management screen like: "dissdb / dissertations / / dissertations / / dissertations / / dissertations / / dissertations / / Law / index_html" It's kinda annoying. My rewrite rule looks as follow """ RewriteEngine On RewriteLog /usr/local/apache/logs/rewrite_log RewriteLogLevel 0 RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^/dissdb(.*) /usr/local/apache/cgi-bin/Zope.cgi/dissertations/$1 \ [e=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] """ Fredrick.
On Tue, 2 Nov 1999, Fredrick Rybarczyk wrote:
2. I'm doing my zope with apache. Why do things get added to the path on my management screen like: "dissdb / dissertations / / dissertations / / dissertations / / dissertations / / dissertations / / Law / index_html"
That's how things (BASE + RewriteRule) work in Zope. Download and install latest SiteAccess (0.1.3). It is designed to to help in virtual hosting (among other things). Working right for me. Oleg. ---- Oleg Broytmann Foundation for Effective Policies phd@phd.russ.ru Programmers don't die, they just GOSUB without RETURN.
Fredrick Rybarczyk wrote:
2. I'm doing my zope with apache. Why do things get added to the path on my management screen like: "dissdb / dissertations / / dissertations / / dissertations / / dissertations / / dissertations / / Law / index_html" It's kinda annoying. My rewrite rule looks as follow """ RewriteEngine On RewriteLog /usr/local/apache/logs/rewrite_log RewriteLogLevel 0 RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule ^/dissdb(.*) /usr/local/apache/cgi-bin/Zope.cgi/dissertations/$1 \ [e=HTTP_CGI_AUTHORIZATION:%1,t=application/x-httpd-cgi,l] """ Fredrick.
I believe you need another slash (/) after ^/dissdb and before (.*) -Michel
participants (3)
-
Fredrick Rybarczyk -
Michel Pelletier -
Oleg Broytmann