Squeak Class Documentation category index | class index  
 
CodeServer
  category: Network-Pluggable Web Server
  superclass: ServerAction
  subclasses:

Return the source code from Smalltalk, as web page text, or as a raw Squeak file chunk.
URLs are of the form:
machine:80/smtlk.Point|min; <-- NOTE: use ; instead of :
machine:80/smtlk.{Class}|{selector}
machine:80/chunk.{Class}|{selector}

machine:80/smtlk.{Class}|class|{selector}
machine:80/chunk.{Class}|class|{selector}

machine:80/smtlk.{Class}|Definition
machine:80/chunk.{Class}|Definition

machine:80/smtlk.{Class}|Hierarchy
machine:80/chunk.{Class}|Hierarchy

machine:80/smtlk.{Class}|Comment
machine:80/chunk.{Class}|Comment
NOTE: use ; semicolon instead of : colon in selector names

instance methods
  as yet unclassified
  chunk:
process:
smtlk:

class methods
  no messages
 

instance methods
  as yet unclassified top  
 

chunk:

Return Smalltalk source code as a chunk from the changes file.
URL = machine:80/chunk.Point|min; included are: Point|at; Point|Comment Point|Hierarchy Point|Definition Point|class|x;y;
Meant to be received by a Squeak client, not a browser. Reply not in HTML


 

process:

Return the source code from Smalltalk, as text or as a chunk.
URLs are of this form. Each may have 'chunk' or 'smtlk' as the thing after the slash
machine:80/smtlk.Point|min;
machine:80/chunk.{Class}|{selector}
machine:80/smtlk.{Class}|{selector}
machine:80/smtlk.{Class}|class|{selector}
machine:80/smtlk.{Class}|Definition
machine:80/smtlk.{Class}|Hierarchy
machine:80/smtlk.{Class}|Comment
NOTE: use ; semicolon instead of : colon in selector names!!!


 

smtlk:

Return Smalltalk sourcecode in HTML. URL = machine:80/myswiki.smtlk.Point|min; included are: Point|min; Point|Comment Point|Hierarchy Point|Definition Point|class|x;y;
NOTE: use ; instead of : in selector names!!!


class methods
  no messages top