RendererSwikiAction
category: Network-Pluggable Web Server
superclass: RenderingSwikiAction
subclasses: RenderedSwikiAction
This class only exists to provide a different pageURL for the rendered pages
Here's how to set them up:
For FTP rendering:
| sd auth |
sd _ ServerDirectory new.
sd directory: '/net/www/fac/mark.guzdial/testSwiki'; server:
'cleon.cc.gatech.edu';
user: 'fred'; password: 'flintstone'.
RenderingSwikiAction setUp: 'testSwiki'.
(PWS actions at: 'testswiki') serverDirectory: sd.
auth _ Authorizer new mapName: 'user' password: 'testSwiki' to: 'user'.
(PWS actions at: 'testswiki') authorizer: auth.
For local rendering:
| sd auth |
sd _ 'Guz 7600:WebSTAR 2.0:testSwiki:'.
RenderingSwikiAction setUp: 'testSwiki'.
(PWS actions at: 'testswiki') serverDirectory: sd.
auth _ Authorizer new mapName: 'user' password: 'testSwiki' to: 'user'.
(PWS actions at: 'testswiki') authorizer: auth.




|