hi Tom,

> > Well, okay, have to do some homework on Zope3 :)
> 
> Unfortunately (and not to scare you), Zope 3 is pretty hard...
> 
> > > > In the Zope2 setup there is a possibility to use a virtualhostmonster 
> > > > object in order to facilitate rewriting uri's, is it possible to do 
> > > > that in Zope3?
> > >
> > > Yes.  Instructions for doing so should be in the README.
> >
> > I'll read the Zope3 instructions (if that is what you meant, for the 
> > instructions included in the Schooltool README seemed not sufficient in my 
> > case. Means probably that i have to read the Apache rewrite module's manual 
> > again, more homework still :)
> 
> What do you need to do?

I have one https (public) address to serve several things. One is a Silva 
instance, one a local html directory, and now the schooltool test besides. I 
try to use one default virtual host (but perhaps that's the trouble ...)

Below might work if something like a VirtualHostMonster product were available 
in Zope3 (but perhaps it is, or i should simply make virtual hosts for 
different things).

  RewriteCond %{SERVER_PORT} ^443$
  RewriteCond %{REQUEST_URI} ^/schooltool/(.*)$ [NC]
  RewriteRule ^/(.*) 
http://127.0.0.1:7080/VirtualHostBase/https/%{HTTP_HOST}:443/VirtualHostRoot/$1 
 [L,P]

  RewriteCond %{HTTP_HOST} ^.*:443$
  RewriteCond %{REQUEST_URI} !^/schooltool/(.*)$
  RewriteCond %{REQUEST_URI} !^/catalog/(.*)$ [NC]
  RewriteRule ^/(.*) 
http://127.0.0.1:8480/VirtualHostBase/https/%{HTTP_HOST}:443/silva/VirtualHostRoot/$1
 [P]


> I'm not sure... on the scale of things to worry about, I'd consider it
> a low priority.

:_)

..
..

> That's interesting.  You are running SchoolTool from subversion, right?
> 

Nope, not yet. I've downloaded the schooltool_0.9.orig.tar.gz, but  finding 
that wasn't strait forward. The download link on schooltool.org has no current 
items, and i haven't seen svn links anywhere? Perhaps creating one central page 
for downloading stuff isn't bad for schooltool. But i'm known to be rather 
ignorant if it's not completely uterly strait forward (lol) 

> Based on my experience in discussing the project with people over the
> past couple years, the biggest factor is whether or not you and/or
> your developers can figure out Zope 3.  Ultimately, of course, we aim
> to have a product that doesn't require that knowledge, but right now
> you'd need to do a fair amount of hacking yourself.

Perhaps grokify schooltool? I'm not far from Neanderthal :)

> You can also ask questions on #schooltool on freenode IRC.  ignas is
> the lead developer.  He's in Vilnius.

Thanks again, 
felix
_______________________________________________
Schooltool mailing list
[email protected]
http://lists.schooltool.org/mailman/listinfo/schooltool

Reply via email to