I completed the function for displaying the records, including the comment, and the code that generates the appropriate web link. I also created a file called "intro" which contains introductory HTML which will be displayed by the script.
For those of you still trying to decide whether or not to learn version control, here's another cool reason: log notes. In subversion, each time I 'commit' a revision of my code, I get to make a quick log note, which subversion will keep track of. Here, for example, is all the log notes that apply to one particular file:
For those of you still trying to decide whether or not to learn version control, here's another cool reason: log notes. In subversion, each time I 'commit' a revision of my code, I get to make a quick log note, which subversion will keep track of. Here, for example, is all the log notes that apply to one particular file:
------------------------------------------------------------------------ r16 | choward | 2008-11-30 02:04:17 -0900 (Sun, 30 Nov 2008) | 1 line added web links to table produced by all_records_html ------------------------------------------------------------------------ r13 | choward | 2008-11-28 20:22:52 -0900 (Fri, 28 Nov 2008) | 1 line created code for generating html for each record in the db; sitll needs to be tweaked ------------------------------------------------------------------------ r11 | choward | 2008-11-28 12:56:05 -0900 (Fri, 28 Nov 2008) | 1 line some code for getting records in manynotes ------------------------------------------------------------------------ r9 | choward | 2008-11-28 03:35:21 -0900 (Fri, 28 Nov 2008) | 1 line expanded top-level structure, variables, constants; renamed script ------------------------------------------------------------------------ r7 | choward | 2008-11-27 01:33:25 -0900 (Thu, 27 Nov 2008) | 2 lines successful test of password db open in manynotes.cgi ------------------------------------------------------------------------ r6 | choward | 2008-11-25 04:53:01 -0900 (Tue, 25 Nov 2008) | 2 lines Attempting to fix database opening issue in manynotes.cgi ------------------------------------------------------------------------ r5 | choward | 2008-11-25 01:33:08 -0900 (Tue, 25 Nov 2008) | 1 line Expanded top-level layout. Added database initialization code. ------------------------------------------------------------------------ r2 | choward | 2008-11-23 21:57:58 -0900 (Sun, 23 Nov 2008) | 2 lines Begin designing structure in top-level style ------------------------------------------------------------------------ r1 | choward | 2008-11-23 21:32:52 -0900 (Sun, 23 Nov 2008) | 2 lines Imported initial project files ------------------------------------------------------------------------And of course, with subversion I can always 'check-out' an earlier revision of any file. So if I mess something up, I can look through the log notes, and then find the particular version of the file I'm interested in.

