Changeset 119
- Timestamp:
- 06/02/08 13:25:41 (5 months ago)
- Files:
-
- trunk/antimatter/tim/ChangeLog (modified) (1 diff)
- trunk/antimatter/tim/Modules/SFLC/TimeTracker/DB.pm (modified) (1 diff)
- trunk/antimatter/tim/Scripts/create-db.plx (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/antimatter/tim/ChangeLog
r53 r119 1 2008-06-02 Bradley M. Kuhn <bkuhn@ebb.org> 2 3 * Scripts/create-db.plx: Wrote script. 4 5 * Modules/SFLC/TimeTracker/DB.pm (XXXDONOTUSE__CLEAR_ALL_ITEMS): 6 Turned this function into an actual "create database" function. 7 1 8 2008-03-04 Bradley M. Kuhn <bkuhn@softwarefreedom.org> 2 9 trunk/antimatter/tim/Modules/SFLC/TimeTracker/DB.pm
r53 r119 1383 1383 $self->beginWriteWork('pending'); 1384 1384 1385 $self->{main}{categoryList} = { }; 1386 $self->{main}{categoryAliases} = { users => {}, GLOBAL => {} }; 1387 $self->{main}{categoryChanged} = time(); 1388 1389 foreach my $empty (qw/categoryList ids ignoreLines userConfig configs/) { 1390 $self->{main}{$empty} = {}; 1391 } 1392 foreach my $empty (qw/ignoreLines userConfig configs/) { 1393 $self->{main}{$empty}{users} = {}; 1394 } 1395 1396 $self->{pending}{configs}{users} = {}; 1397 $self->{pending}{ignoreLines}{users} = {}; 1398 $self->{pending}{interactionTrees} = {}; 1399 1385 1400 my(%u1, %u2); 1386 1401 foreach my $user (keys %{$self->{main}{entries}{byUser}}) {