Essentially everything proposed in this document has been completed at this point; it is now primarily of historical significance.
Completed 1999-02-09.
It has been pointed out that our use of Agency is ambiguous. We need to change it; Admin has been proposed. There is also a problem in that the Agency agent is really doing four things:
Admin
Default
, PIA
, or ROOT
.
ROOT/Icon
.
An alternative would be a separate Icon
agent; putting it
under ROOT means that it doesn't show up on agent listings.
actOn
method). Possibly this should be done in the Resolver, or possibly
in ROOT
.
Both ROOT
and Admin
could be constructed by
copying the code for Agency
.
ROOT
seems to be preferred at the moment. Note that it ought
to be possible to register the default (root) agent. Note that
an appliance's main agent might typically do so.
Completed 1999-02-04.
... or possibly Tools
. cia
and
fbi
would become remoteTools
and
localTools
respectively.
With Toolbar
as the main agent, cia
became
remote
and fbi
became localFile
,
documented as applying only to local (passive) files and not
active pages.
ROOT
should handle these. It might actually have a suitable
actOn
method in XHTML.
It seems possible that the only differences between a DOFS agent and a regular one might end up being:
Under this scheme, an agent would have both a ``home'' directory and a ``root'' directory, and also both a ``home'' and a ``root'' tagset.
The following URL's refer to an agent's directories:
URL | Directory | description |
---|---|---|
/name
| pia/Agents/name
| an agent's ``root'' directory; normally the same as its ``home'' directory unless it's a DOFS agent |
/type/name
| pia/Agents/type/name
| an agent's home directory if type
is not the same as name
|
/~name
| .pia/name
| an agent's data directory |
/My/Agents/name
| .pia/Agents/name
| an agent's user directory, containing the overrides for the files in the agent's home directory. |
/My
| .pia
| DOFS agent referring to the root of the data directories |
URL | mapped to: | description |
/path
| /Agency/ROOT/name
| a file ``in the root'', handled by Agency
|
/badfile
| missing root file, handled by Agency
| |
/bad/path
| missing agent, handled by the Resolver. |
Completed 1999-02-09.For the moment,
/type/name
is still working.
URL | Directory | Entity | description |
---|---|---|---|
/name
| pia/Agents/name | AGENT:root
| an agent's ``root'' directory; normally the same as its ``home''
directory unless redirected by setting AGENT:root
|
/name~
| pia/Agents/name | AGENT:home
| an agent's home directory, where its .xh files live.
|
/~name
| .pia/name | AGENT:data
| an agent's (default?) data directory |
/name/~
| .pia/name | AGENT:data
| an agent's data directory (allows agent to remap) |
/~Agents/name~
| .pia/Agents/name | AGENT:home
| an agent's user directory, with user overrides for its code. |
/~
| .pia | PIA:userDIR
| the root of the data directories; effectively an alias for
/~ROOT
|
URL | mapped to | Entity | description |
/path
| /ROOT/path | PIA:rootAgent
| a file ``in the root'' |
/badfile
| missing root file, handled by ROOT | ||
/bad/path
| missing agent, handled ROOT. |
The only really drastic changes here are:
/type/name
to
name~
to designate the ``home'' directory. It
will simplify the lookup considerably.
/My/
to /~/
. It has to be
treated specially because /~~
seems ambiguous -- is it
home or data? It is better to regard /~
as simply an
alias for ~ROOT
-- the root agent's data directory. This
neatly sidesteps the need for a separate DOFS agent for it.
An alternative scheme would be to changing the meaning of
~
from ``data home'' to ``code home'', and consistently use
/~/
as the root of the data directories. This is a little
more consistent with Unix usage, and would remove the ambiguity about the
meaning of /~~
, but represents a significantly larger
change.
Another way of looking at an agent's ``root'' directory is that it might be either its home or its data directory. Hence, for a DOFS agent, the root is the data directory, not the home.
Ideally, a missing file should be handled by mapping it to a URL in the ROOT agent. This will require the ability of DPS code to set the HTTP result code, which is not possible yet.
Completed 1999-03-23.For the moment,
/type/name
is still working.
It would be desirable to ``mount'' agents anywhere in the agent tree. A ``mounted'' agent would have the following URL's:
URL | Directory | description |
---|---|---|
/path/name
| pia/Agents/path/name
| root directory |
/path/name~
| pia/Agents/path/name
| home directory |
/~/path/name /path/name/~
| .pia/path/name
| data directory |
/~/path/name~
| .pia/Agents/path/name
| user directory |
Agents need the following attributes:
PIA/Agents
or ~/Agents
) to the
agent's code or user directory is normally equal to
path/name
; it is probably not necessary
to permit the directory and URL paths to differ.
In specifying paths, we should allow the following prefixes:
~/
./
../
&PIA:dir;
, as in
../Contrib/...
/~/
&PIA:root;
Currently, an agent's ``name'' has to be unique. Under this scheme, it
only has to be unique with the path prefix. This changes
findDocument
somewhat.
Considerable effort will be involved in this change, because presently the
name
is used as the key for the agent table.
prefix
(namespace) attribute as well as a
name
attribute. They ought to be separate for several reasons:
dps:
is shared by basic
, xhtml
, and
xxml
.
name
is usually derived from the DTD name, which in
turn is supposed to be derived from the tag of the top element.
pia-xhtml
should have a name
of
xhtml
(the DTD from which it is derived) and a
prefix
(namespace) of pia:
.