Squeak Class Documentation category index | class index  
 
AuthorizedWriteSwiki
  category: Network-Pluggable Web Server
  superclass: AuthorizedSwikiAction
  subclasses:

Allows anyone to read the pages of this Swiki, but only authorized users can edit or change pages. Can have multiple users, each with a different password. Each can modify the whole Swiki area.

To restart an existing Authorized Swiki:

AuthorizedWriteSwiki new restore: 'SWSecure'.

The front page URL is: http://serverMachine:80/SWSecure.1

To make a completely new one:
| a s |
a := Authorizer new.
a realm: 'SwikiArea'.
a mapName: 'viki' password: 'hard2guess' to: 'viki'.
AuthorizedWriteSwiki setUp: 'SWSecure'.
s := AuthorizedWriteSwiki new restore: 'SWSecure'.
s authorizer: a.

instance methods
  as yet unclassified
  process:

class methods
  no messages
 

instance methods
  as yet unclassified top  
 

process:

Only demand authorization of name and password when requesting the edit page, requesting the append page, receiving an edit, or receiving an append.


class methods
  no messages top