Skip to content

Commit 2a85236

Browse files
committed
- Corrected layout link
- Updated Todo list
1 parent 4b8f379 commit 2a85236

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

Raku-TOP/Introduction.xml

+19-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<?xml-stylesheet type="text/xsl" href="../../interface/layout.xsl"?>
2+
<?xml-stylesheet type="text/xsl" href="../interface/layout.xsl"?>
33
<page>
44
<filename>Introduction.xml</filename>
55
<sitedir>Raku-TOP</sitedir>
@@ -48,7 +48,7 @@ th h2, th h3 {
4848
does Relation</code></td>
4949
<td>All the functionality specific to Tables</td>
5050
<td>First pass done</td>
51-
<td>Not started</td>
51+
<td>Basic functionality works</td>
5252
</tr>
5353
<tr>
5454
<td><code>class View
@@ -95,7 +95,7 @@ th h2, th h3 {
9595
<td><code>class Field</code></td>
9696
<td>Data is actually stored in table, but this references a column</td>
9797
<td>First pass done</td>
98-
<td>Not started</td>
98+
<td>Basic Functionality Works</td>
9999
</tr>
100100
<tr>
101101
<td><code>class Lot</code></td>
@@ -126,15 +126,24 @@ th h2, th h3 {
126126

127127
<h1>Implementation order</h1>
128128

129+
<style>
130+
.done {
131+
background-color: green;
132+
color: white;
133+
padding: 2pt;
134+
border-radius: 4pt;
135+
}
136+
</style>
137+
129138
<ul>
130139
<li>Basic functionality</li>
131140
<ul>
132141
<li>Very basic functionality</li>
133142
<ul>
134-
<li>Database, including inheriting from TOP::Core</li>
135-
<li>Table, including Field and Tuple, and inheriting from Relation and TOP::Core.
136-
Note https://docs.raku.org/language/subscripts#Binding</li>
143+
<li><span class="done">Table, including Field and Tuple, and inheriting from Relation and TOP::Core</span></li>
144+
<li><span class="done">Database, including inheriting from TOP::Core</span></li>
137145
<li>Implement backends for CSV and DBI</li>
146+
<li>Look at having a Signature for a Table, and linking each Field to a Parameter in the Signature</li>
138147
</ul>
139148
<li>Joining</li>
140149
<ul>
@@ -144,11 +153,13 @@ th h2, th h3 {
144153
</ul>
145154
<li>Cursor</li>
146155
<li>DataDictionary</li>
156+
<li>Lot, Section</li>
147157
</ul>
148158
<li>Perspectives</li>
149159
<li>Allow transactions (with <code>atom</code> structure), and TOP::Slang, and locking</li>
150-
<li>Allow numbered columns as well as named. Note https://docs.raku.org/language/subscripts#Multiple_dimensions</li>
160+
<li>Allow numbered columns as well as named. Note https://docs.raku.org/language/subscripts#Multiple_dimensions
161+
...or maybe we should just let people use multi-dimensional arrays for this</li>
151162
</ul>
152163

153164
</content>
154-
</page>
165+
</page>

0 commit comments

Comments
 (0)