Browse Source

Removed TODO and stats cookies

Samuel W. Flint 8 years ago
parent
commit
db9606b399
1 changed files with 9 additions and 9 deletions
  1. 9 9
      cl-genealogy.org

+ 9 - 9
cl-genealogy.org

@@ -26,7 +26,7 @@
 #+TOC: headlines 3
 #+TOC: headlines 3
 #+TOC: listings
 #+TOC: listings
 
 
-* DONE Data Storage [8/8]
+* Data Storage
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:14>
 :CREATED:  <2016-01-06 Wed 13:14>
 :END:
 :END:
@@ -35,7 +35,7 @@ One of the key components of genealogical software is the ability to effectively
 
 
 To accomplish the storage of this information, I'm using a schema-less relational database management system called LambdaLite, which is written entirely in lisp, and uses the local file system to store data effectively.
 To accomplish the storage of this information, I'm using a schema-less relational database management system called LambdaLite, which is written entirely in lisp, and uses the local file system to store data effectively.
 
 
-** DONE Macros
+** Macros
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:16>
 :CREATED:  <2016-01-06 Wed 13:16>
 :END:
 :END:
@@ -88,7 +88,7 @@ To accomplish the goal of storing data within the database system that is Lambda
     (1+ (length (select table))))
     (1+ (length (select table))))
 #+END_SRC
 #+END_SRC
 
 
-** DONE People
+** People
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:17>
 :CREATED:  <2016-01-06 Wed 13:17>
 :END:
 :END:
@@ -119,7 +119,7 @@ This is the People table, used to store the most bare information about a person
                   (funcall (in-table-column :people :/person-id) object))))
                   (funcall (in-table-column :people :/person-id) object))))
 #+END_SRC
 #+END_SRC
 
 
-** DONE Births
+** Births
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:17>
 :CREATED:  <2016-01-06 Wed 13:17>
 :END:
 :END:
@@ -141,7 +141,7 @@ Another important thing is to be able to log births, or possible birth dates.  T
     :/birth-location #'stringp)
     :/birth-location #'stringp)
 #+END_SRC
 #+END_SRC
 
 
-** DONE Deaths
+** Deaths
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:17>
 :CREATED:  <2016-01-06 Wed 13:17>
 :END:
 :END:
@@ -163,7 +163,7 @@ Furthermore, to be as complete as possible, you need to be able to store and que
     :/death-location #'stringp)
     :/death-location #'stringp)
 #+END_SRC
 #+END_SRC
 
 
-** DONE Marriages
+** Marriages
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:17>
 :CREATED:  <2016-01-06 Wed 13:17>
 :END:
 :END:
@@ -187,7 +187,7 @@ Further, to be able to keep track of relationships (and thus families), you need
     :/end-date #'stringp)
     :/end-date #'stringp)
 #+END_SRC
 #+END_SRC
 
 
-** DONE Divorces
+** Divorces
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:17>
 :CREATED:  <2016-01-06 Wed 13:17>
 :END:
 :END:
@@ -207,7 +207,7 @@ To keep track of the dissolution of marriages, and to enable correct report gene
     :/divorce-date #'stringp)
     :/divorce-date #'stringp)
 #+END_SRC
 #+END_SRC
 
 
-** DONE Notes
+** Notes
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:17>
 :CREATED:  <2016-01-06 Wed 13:17>
 :END:
 :END:
@@ -229,7 +229,7 @@ Keeping notes within the database is a good idea, it allows the notes to be link
     :/media-link #'stringp)
     :/media-link #'stringp)
 #+END_SRC
 #+END_SRC
 
 
-** DONE Common Attributes
+** Common Attributes
 :PROPERTIES:
 :PROPERTIES:
 :CREATED:  <2016-01-06 Wed 13:18>
 :CREATED:  <2016-01-06 Wed 13:18>
 :END:
 :END: