35 lines
743 B
HTML
35 lines
743 B
HTML
<HTML>
|
|
<HEAD>
|
|
<TITLE>PVVMUD - ndb file format</TITLE>
|
|
<LINK REL=STYLESHEET HREF="/pvvmud/pvvmud.css" TYPE="text/css">
|
|
</HEAD>
|
|
<BODY>
|
|
|
|
<H1>ndb file format</H1>
|
|
<P>Name Data Base format is used to map names to id or id to name.</P>
|
|
|
|
<H2>Logical structur</H2>
|
|
<TABLE>
|
|
<TR><TH></TH><TH></TH></TR>
|
|
<TR><TD VALIGN=top><A NAME="NDBFILE">ndbFile<TD>= {ndbItem}
|
|
<TR><TD VALIGN=top><A NAME="NDBITEM">ndbItem<TD>= Id + Name
|
|
<TR><TD VALIGN=top><A NAME="FILEID">Id<TD>=
|
|
* String that identify this name *
|
|
<TR><TD VALIGN=top><A NAME="VERTICES">Name<TD>= * A name with this id. *
|
|
</TABLE>
|
|
|
|
<H2>Current implementation</H2>
|
|
<PRE>
|
|
id1 : Name1\n
|
|
id2 : Name2\n
|
|
.
|
|
.
|
|
idN : NameN\n
|
|
</PRE>
|
|
|
|
<H2>Bugs</H2>
|
|
<P>Don't allow spaces in names</P>
|
|
|
|
</BODY>
|
|
</HTML>
|