Fossil

Timeline
Login

Timeline

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

200 check-ins occurring around 720fa53d1f2ceeb3.

2010-10-25
21:16
The "fossil revert" command now clears merge history. Less frequent status output on rebuild. The FOSSIL_OMIT_DELTA_CKSUM_TEST compile-time option is available. (check-in: 6c8ed4e1 user: drh tags: experimental)
20:10
Remove an processing-order dependency from the rebuild command. (check-in: 3770d89f user: drh tags: experimental)
17:21
Fix bugs in the handling of deleted and added files on delta manifests. (check-in: 05b152ae user: drh tags: experimental)
13:52
Redesign the control-artifact and manifest parser to run faster. (check-in: fa0ea2c3 user: drh tags: experimental)
11:12
Bug fix in the manifest parser. (check-in: d10f5e9f user: drh tags: experimental)
00:55
Further performance enchancements for browsing. We could still do better, but the current seems fast enough. (check-in: ee1cc2bf user: drh tags: experimental)
00:33
Performance improvement when browsing repositories with many files. This is an temporary fix - we can do much better. (check-in: 4389b36f user: drh tags: experimental)
2010-10-24
06:53
add missing; (check-in: e9fcc9af user: Ratte tags: StvPrivateHook2 )
2010-10-23
20:24
Create or delete the manifest and manifest.uuid files when turning the manifest setting on and off. (check-in: 8175b579 user: drh tags: experimental)
19:43
Transmit the "manifest" setting as part of project configuration. (check-in: d57f3c77 user: drh tags: experimental)
17:02
add privilege check to hook execution (check-in: abd05f29 user: wolfgang tags: StvPrivateHook2 )
14:19
MD5 optimization for x86_64. (check-in: df5a8bf0 user: drh tags: experimental)
12:58
Additional performance enhancements. (check-in: 6caba36d user: drh tags: experimental)
07:23
added hook info to sync/push help (check-in: ba5e0344 user: Ratte tags: StvPrivateHook2 )
02:51
Simplification to the delta checksum algorithm. Trying to make it run faster. (check-in: 4c1bcf6f user: drh tags: experimental)
02:17
Rework the manifest cache so that it is more effective on repositories with large numbers of delta-manifests. (check-in: bcf601a6 user: drh tags: experimental)
2010-10-22
14:48
Use a faster tokenizer on manifests to reduce rebuild times by about 5%. (check-in: 121ed7c8 user: drh tags: experimental)
13:05
Change the "commit" command so that it will not create the first delta-manifest in a repository unless the --delta option is used. (check-in: a69356ae user: drh tags: experimental)
01:06
Merge in some ui enhancements from the ssl_platform_fixes branch. (Closed-Leaf check-in: 3c19422b user: bcsmith tags: ui-improvements)
01:04
Add some explanatory text to the update command to make it easier for new users to learn fossil. (check-in: 858940c6 user: bcsmith tags: ui-improvements)
2010-10-21
23:26
TH1 fossiltag command for accessing tag values.

Has two subcommands: get and list, which do what they sound like. (Closed-Leaf check-in: 413ebeb1 user: bcsmith tags: th1_fossiltag_cmd)

20:54
Fix the new SHA1 checksum module so that it does not overwrite its input. (check-in: fa9dfc34 user: drh tags: experimental)
20:08
Replace the RFC-3174 reference implementation of SHA1 with the much faster implementation from NetBSD. (check-in: f8f175cf user: drh tags: experimental)
15:42
Clarification of the comment that describes the algorithm used to choose between a baseline manifest and a delta manifest upon checkin. No changes to code. (check-in: b08fce49 user: drh tags: experimental)
14:00
Better algorithm for deciding when to use a delta-manifest on a check-in. (check-in: 7c244251 user: drh tags: experimental)
2010-10-20
12:31
Fix a bug in the Files browsing logic. (check-in: 85e1e3d4 user: drh tags: experimental)
2010-10-19
23:50
Bug fix in the new delta-manifest generator logic. (check-in: 068b1823 user: drh tags: experimental)
20:27
Automatically generate delta-manifests on check-in if the delta-manifest is smaller than 1/125th of the baseline-manifest. (check-in: 9ea47d49 user: drh tags: experimental)
17:57
Fix a typo in the file format documentation. (check-in: 0f3086be user: drh tags: experimental)
17:54
Two new settings: "manifest" and "repo-cksum". The first enables the output of the manifest and manifest.uuid files on each checkout. This is now off by default. The second enables repository checksums. It defaults on. (check-in: 2f3b9bd3 user: drh tags: experimental)
17:01
Improvements to the file format documentation to better describe the new B-card on manifests. (check-in: f56c622b user: drh tags: experimental)
16:26
Fix the check-out mechanism so that it works with delta-manifests. (check-in: 0e326631 user: drh tags: experimental)
14:55
adding flush to system-command, windows needs all buffers flushed before system execution (check-in: a64b48cb user: wolfgang tags: StvPrivateHook2 )
2010-10-18
22:34
Rework manifest parsing in order to process delta-manifests correctly. (check-in: aa61a65c user: drh tags: experimental)
19:40
some error corrections for force hook (check-in: a94ef5c0 user: wolfgang tags: StvPrivateHook2 )
15:46
added output redirect and client force for hook (check-in: ccef28b5 user: wolfgang tags: StvPrivateHook2 )
2010-10-17
17:25
Add the ability to parse and use manifests with the B-card. Add documentation for the B-card. (check-in: ec56d8ff user: drh tags: experimental)
16:37
merge from old hook branch (check-in: 9cf288de user: wolfgang tags: StvPrivateHook2 )
2010-10-16
19:07
PellesC doesn't have pgmptr, update Makefile (Closed-Leaf check-in: f8836874 user: wolfgang tags: wolfgangHelpCmd)
17:33
merge from trunk (check-in: 586b0eb1 user: wolfgang tags: wolfgangHelpCmd)
16:32
Bring over the latest bug fixes from trunk. (check-in: b2175857 user: drh tags: experimental)
16:24
Do not attempt to parse control artifacts that do not end with a '\n' character. Ticket [be56c89def7f86bcbd] (check-in: 7954ccba user: drh tags: trunk)
12:13
Do not free memory not obtained from malloc in the "fossil diff" command. Ticket [38d7bb8cf044219c2eff8]. (check-in: ddb975e2 user: drh tags: trunk)
2010-10-15
22:41
On windows, use the global variable _pgmptr instead of argv[0] in order to find the name of the current executable. Ticket [c8c0b78c840e4df9] (check-in: 23a3adac user: drh tags: trunk)
20:37
Refactor the control-artifact parser. (check-in: da9fcdc9 user: drh tags: experimental)
17:13
Replace all malloc() calls with fossil_malloc(). The fossil_malloc() routine panics rather than return a NULL pointer. (check-in: 8f41b2fa user: drh tags: trunk)
16:11
merge from trunk (check-in: c1271793 user: wolfgang tags: wolfgangHelpCmd)
13:55
On commit, check the repository for changes before starting the write transaction, so that a diff can be run during the check-in comment editing. Ticket [014ac374123d9a6ab6894]. (check-in: 59f68585 user: drh tags: trunk)
2010-10-14
20:28
Always show diffs for added and deleted files in the web UI. Show added and deleted files in diffs with -N and the --from and --to options to the command-line diff command. Ticket [e90d38c2054e9b44792] (check-in: 70365348 user: drh tags: trunk)
19:48
Reverse the direction of conflict markers. Ticket [e3a1beef67c97eb2e4d5a] (check-in: 93984e2d user: drh tags: trunk)
19:23
Additional compiler warning fixes. (check-in: c345445c user: drh tags: trunk)
19:14
Remove all use of ctypes.h in order to avoid compiler warnings and other problems associated with changing locales. (check-in: 2fac8091 user: drh tags: trunk)
18:48
Remove a bunch of unused code. (check-in: 62f8acbe user: drh tags: trunk)
18:41
rename import to addremove (check-in: 7e65c703 user: wolfgang tags: wolfgangHelpCmd)
18:38
Work towards including full text of deleted and added files in a diff when the -N or --new-file option is used. Ticket [e90d38c2054e9b44792eb] (check-in: 585360b4 user: drh tags: trunk)
2010-10-13
19:40
added experimental IMPORT command (ticket [e0352240ad]) (check-in: b37d5f25 user: wolfgang tags: wolfgangHelpCmd)
2010-10-12
21:42
Fix the default Makefile so that it works out-of-the-box on Linux, MacOSX, NetBSD, and Solaris. (check-in: c845b287 user: drh tags: trunk)
2010-10-11
15:49
merge from trunk (check-in: c9df9477 user: wolfgang tags: wolfgangHelpCmd)
14:20
Fix the /debug_tktnew and /debug_tktedit methods so that the do not really create a new ticket artifact. Ticket [474b0bd4f991dd60d7d9bb]. (check-in: 06c5b3eb user: drh tags: trunk)
13:43
Allow events to be referenced using a prefix of their full event-id. (check-in: f2025072 user: drh tags: trunk)
2010-10-10
19:07
New TH1 command: wikicontent

Placed in its own branch for posterity. (Closed-Leaf check-in: 6916054d user: bcsmith tags: th1_wikicontent_cmd)

16:46
adding help cross references (check-in: c880f092 user: wolfgang tags: wolfgangHelpCmd)
13:38
added cross references for help (check-in: c3bf3c0c user: wolfgang tags: wolfgangHelpCmd)
08:59
added more cross reference (check-in: c2ef3715 user: Ratte tags: wolfgangHelpCmd)
2010-10-09
20:13
show references to commandline on webpages; add httptrace to windows http server (check-in: d1d1cd12 user: wolfgang tags: wolfgangHelpCmd)
17:18
Fix a potential segfault on "fossil pull". Ticket [71439c64b8d6af66f5e34]. (check-in: 26c262cd user: drh tags: trunk)
15:39
merge from trunk (check-in: e1d15514 user: wolfgang tags: wolfgangHelpCmd)
15:34
link the command line help to the gui pages, where appropriate (check-in: a5cd7927 user: wolfgang tags: wolfgangHelpCmd)
13:33
added a gui diff form to enter the UUIDs, branches, .. and add a link to info page (check-in: cee3e081 user: wolfgang tags: wolfgangHelpCmd)
13:04
Add a compile-time option to ignore the control file checksum (for a modest performance increase while parsing control files.) Enhance the test-parse-manifest command to facilitate performance studies. (check-in: 71298828 user: drh tags: trunk)
06:53
added missing help cross references (check-in: 81da2ee3 user: Ratte tags: wolfgangHelpCmd)
2010-10-08
19:55
Rebuild faster by caching the last few manifest parses. (check-in: 0a55d162 user: drh tags: trunk)
19:03
integrated test commands into the reference (check-in: f3f7d9e5 user: wolfgang tags: wolfgangHelpCmd)
17:08
EDITED www/server.wiki fixed formating and created ticket (I don't see the ticket in commit) (check-in: 3f49a849 user: navratil tags: ttmrichter-skins)
15:51
link the new help page to the reference.wiki document (check-in: 47fd0df0 user: wolfgang tags: wolfgangHelpCmd)
15:05
fine tuning the layout of the command line help strings (check-in: c6d18790 user: wolfgang tags: wolfgangHelpCmd)
13:06
merge from trunk (check-in: ff6760ba user: wolfgang tags: wolfgangHelpCmd)
12:56
corrected layout for wrong calls to help web page (check-in: d6e69d6a user: wolfgang tags: wolfgangHelpCmd)
12:42
help page uses detected command, not the given input parameter as header (check-in: 9017bde2 user: wolfgang tags: wolfgangHelpCmd)
12:39
help page linkt to doc files references fossil-scm.org, not the local repository to be usefull in all repositories, not only in clones of fossil (check-in: 47f4866b user: wolfgang tags: wolfgangHelpCmd)
12:32
help overview page uses table layout (check-in: 94741fb6 user: wolfgang tags: wolfgangHelpCmd)
12:18
removed quotes from command cross references and add them in help command (check-in: b3bf08cc user: wolfgang tags: wolfgangHelpCmd)
12:10
shorten command lines to 80 char (check-in: ad29dc11 user: wolfgang tags: wolfgangHelpCmd)
12:02
added cross reference links to command line help in the gui (check-in: b76a547f user: wolfgang tags: wolfgangHelpCmd)
10:59
Obscure the text of the remote-url password so that it is not easily visible using the sqlite3 CLI. (check-in: cfbbad3d user: drh tags: trunk)
2010-10-07
19:17
Merge the "ticket" command into the trunk. (check-in: 2f5d45ec user: drh tags: trunk)
18:46
Merge in recent trunk changes. (Closed-Leaf check-in: 568ead7b user: drh tags: wolfgangTicketCmd)
18:40
Merge in changes from wolfgangFormat2CSS_2, with a few minor corrections. (check-in: b525add4 user: drh tags: trunk)
16:12
merged from trunk (check-in: 09397a62 user: wolfgang tags: wolfgangTicketCmd)
16:09
corrected missaranged lines in tag help (ticket [0cb89f4c72]) (check-in: 8041eab3 user: wolfgang tags: wolfgangTicketCmd)
16:04
merged from trunk (Closed-Leaf check-in: 2502567f user: wolfgang tags: wolfgangFormat2CSS_2)
15:57
add success message to fossil ticket add/set (check-in: e00f13dc user: wolfgang tags: wolfgangTicketCmd)
13:37
Update the built-in SQLite to the latest 3.7.3 beta. (check-in: daf28132 user: drh tags: trunk)
13:34
Add the optional "showsql" query parameter to the timeline. (check-in: 3efdd657 user: drh tags: trunk)
09:11
changed fossil ticket fieldlist to fossil ticket list fields and added fossil ticket list reports (check-in: 3f06f272 user: wolfgang tags: wolfgangTicketCmd)
2010-10-06
19:10
typo in fossil ticket help fixed, solving [a888fc2aa7] (check-in: 3c6f67fc user: wolfgang tags: wolfgangTicketCmd)
14:42
removed unused include -------------------------------- moved false branch commit to closed leaf (Closed-Leaf check-in: afca3291 user: wolfgang)
13:10
added command line help page to the gui (check-in: ffbfb4d5 user: wolfgang tags: wolfgangFormat2CSS_2)
12:15
SLL uses system-wide default CAs. Ticket [f696bc85f8b91d263f5bf4c5bbd2]. (check-in: 8995df3a user: drh tags: trunk)
09:54
moved attribute bgcolor to css (check-in: 720fa53d user: wolfgang tags: wolfgangFormat2CSS_2)
09:54
merge from trunk (check-in: 454658c0 user: wolfgang tags: wolfgangFormat2CSS_2)
09:24
completed work on ticket command, optimized the help text (check-in: d6be2068 user: wolfgang tags: wolfgangTicketCmd)
09:10
added -q to ticket set|add, corrected set/add command line parser (check-in: 08726b95 user: wolfgang tags: wolfgangTicketCmd)
00:12
Change ancestor age check error message to be more precise. Ticket [5e9020fe4ccfc11e94]. (check-in: 89d4d0b8 user: drh tags: trunk)
2010-10-05
19:23
added ticket list and new quoting option to ticket show (check-in: 82559a70 user: wolfgang tags: wolfgangTicketCmd)
16:37
fossil ticket show may use report name instead of report number (check-in: 63d91f0b user: wolfgang tags: wolfgangTicketCmd)
15:44
check for valid UUID on ticket set command (check-in: 1e1512f5 user: wolfgang tags: wolfgangTicketCmd)
14:40
Merge from trunk. (check-in: 029448a3 user: michael tags: ttmrichter-skins)
13:46
implemented add/set ticket commands (check-in: 9d3b9d65 user: wolfgang tags: wolfgangTicketCmd)
10:43
filter on ticket show working, report code moved to report.c (check-in: 092d7630 user: wolfgang tags: wolfgangTicketCmd)
09:56
merge from trunk and extending Makefile.dmc with event (check-in: a6dd0bf3 user: wolfgang tags: wolfgangTicketCmd)
09:43
merged from trunk (check-in: def52067 user: wolfgang tags: wolfgangFormat2CSS_2)
03:55
Update to the latest SQLite 3.7.3 beta. (check-in: 12a79e5b user: drh tags: trunk, release)
03:32
Merge the experimental "Event" changes into the trunk. (check-in: d96c4a42 user: drh tags: trunk)
03:29
Merge the small-stack changes into the trunk. This completes the fix for ticket [2a1e8e3c4b0b39e08fdde] (check-in: b8f134bb user: drh tags: trunk)
03:24
Fix issues with the prior commit on this branch. The small-stack non-recursive implementation appears to be working. Ticket [2a1e8e3c4b0b39e08fdde]. (Closed-Leaf check-in: f93a54d0 user: drh tags: small_stack)
02:46
An attempt to reduce the depth of recursion in order to run better on systems with limited stack spack. Ticket [2a1e8e3c4b0b39e08fdde0]. This check-in compiles and runs but has issues. (check-in: 9664989c user: drh tags: small_stack)
00:40
Fix HTML typo in qandc.wiki. Ticket [cee1b58990e81] (check-in: e6c8df3b user: drh tags: trunk)
2010-10-04
20:18
ticket show working(without UUID-filter) (check-in: f3f7f138 user: wolfgang tags: wolfgangTicketCmd)
11:48
merged from trunk (check-in: fafcb6c7 user: Ratte tags: wolfgangFormat2CSS_2)
01:21
Updates and corrections to the file format documentation. (Closed-Leaf check-in: 3e48b683 user: drh tags: experimental)
2010-10-03
23:31
Make the R card of manifests truely optional. It is always generated on manifests created by Fossil itself, but 3rd party import tools might choose to omit the R card as a simplification. Ticket [a32ff1eddb6ac1f499]. (check-in: aab38ef0 user: drh tags: trunk)
20:34
merge from trunk (check-in: 287dd50e user: wolfgang tags: wolfgangFormat2CSS_2)
20:00
Dramatic performance improvement for "fossil deconstruct" and "fossil reconstruct" on large repositories. Add progress information for "fossil reconstruct". Possibly related to ticket [2a1e8e3c4b0b39e08fdde0]. Fix for ticket [76d3ecfdab577bdf843]. (check-in: 5f020103 user: drh tags: trunk)
19:24
More descriptive SSL error messages. (Closed-Leaf check-in: 6b8b6d2e user: bcsmith tags: ssl_platform_fixes)
19:01
For "fossil rebuild" increment the progress counter after each artifact is processed, rather than waiting for its delta children to be processed, in order to give a more uniform progress indication. Possibly related to ticket [2a1e8e3c4b0b39e08fdde]. (check-in: ae000c23 user: drh tags: trunk)
17:32
corrected HTML-Validator problems (check-in: 443dbc67 user: wolfgang tags: experimental)
17:25
corrected HTML-validator problems (check-in: 32e85b66 user: wolfgang tags: wolfgangFormat2CSS_2)
12:18
added event.c to PellesC Makefile (check-in: 65a12d56 user: wolfgang tags: experimental)
11:52
corrected some HTML-validation problems (check-in: 04b33f77 user: wolfgang tags: experimental)
00:21
Add support for tags on events, including the ability to display a timeline of all events with a particular tag. (check-in: a1fcb97d user: drh tags: experimental)
2010-10-02
18:31
User interface refinements and some documentation added for events. (check-in: e5bcc0c9 user: drh tags: experimental)
16:35
Add hyperlinks for creating new events and the ability to browse through this history of changes for an event. Add the ability to show "details" of an event. (check-in: ba06d344 user: drh tags: experimental)
15:44
make PellesC-Makefile dynamic, only special files (util, zlib th, sqlite are mentioned explicitly, other sources are read by wildcard expansion (check-in: 3bb1f957 user: wolfgang tags: wolfgangFormat2CSS_2)
12:55
merge from trunk (check-in: f52c6f68 user: wolfgang tags: wolfgangFormat2CSS_2)
12:51
show new allowed tags(checkin [172dccb66f]) in wiki help page (check-in: c492eab3 user: wolfgang tags: trunk)
12:37
Event background colors are now working. (check-in: 6f93ca94 user: drh tags: experimental)
11:42
use compiler_name in windows-resource file (check-in: f09603e6 user: wolfgang tags: wolfgangFormat2CSS_2)
06:39
merged from trunk (check-in: b906b7b8 user: Ratte tags: wolfgangFormat2CSS_2)
03:28
Add the ability to assign background colors to the timeline entries for events. (check-in: a5110365 user: drh tags: experimental)
00:25
First working code for displaying and editing events. (check-in: 419903eb user: drh tags: experimental)
2010-10-01
22:17
Add the new "Event" artifact type to be used for project milestones, blog posts, news articles, and so forth. The Event artifact format is still subject to incompatible changes. (check-in: ed8738b6 user: drh tags: experimental)
18:02
Allow fossil branch new --date-override 'YYYY-MM-DD HH:MM:SS' --user-override user thebranch checkin To aid in importing historic data from other scm's (check-in: 2cc6fd91 user: renez tags: trunk)
17:44
Allow fossil tag add --date-override 'YYYY-MM-DD HH:MM:SS' --user-override user thetag checkin To aid in importing historic data from other scm's (check-in: 5c59d7e9 user: renez tags: trunk)
15:50
Change COMPILE_VARIANT to COMPILER_NAME. Populate the macro with complete version information when using GCC. (check-in: 33b4f335 user: drh tags: wolfgangFormat2CSS_2)
15:39
added thead, tfoot, tbody, col, colgroup and span to allowed html. So that pages generated by docbook and elyxer are accepted (check-in: 172dccb6 user: renez tags: trunk)
2010-09-30
15:12
resource generate running on XP/dmc&pellesc5 (check-in: 9d896dca user: wolfgang tags: wolfgangFormat2CSS_2)
14:30
added comment to compile variant definition, added missing pellesC ifdef (check-in: 12eb50d1 user: wolfgang tags: wolfgangFormat2CSS_2)
14:01
copyright resource uses only year (check-in: dd3bf669 user: wolfgang tags: wolfgangFormat2CSS_2)
06:44
extended resource info for windows compile (check-in: dd830ff8 user: Ratte tags: wolfgangFormat2CSS_2)
2010-09-29
22:17
merged from trunk (check-in: a5f05794 user: wolfgang tags: wolfgangFormat2CSS_2)
22:12
made rc-file Digital mars conform

digital mars resource compiler(rcc) must be downloaded separately. The changes in the makefile are:

+RC=$(DMDIR)\bin\rcc
+RCFLAGS=-32 -w1

APPNAME = $(OBJDIR)\fossil$(E)

all: $(APPNAME)

-$(APPNAME) : translate$E mkindex$E headers $(OBJ) $(OBJDIR)\link +$(APPNAME) : translate$E mkindex$E headers fossil.res $(OBJ) $(OBJDIR)\link cd $(OBJDIR) $(DMDIR)\bin\link @link

+fossil.res: $B\win\fossil.rc + $(RC) $(RCFLAGS) -o$@ $** + $(OBJDIR)\link: $B\win\Makefile.dmc +echo add allrepo attach bag blob branch browse captcha cgi checkin checkout clearsign clone comformat configure content db delta deltacmd descendants diff diffcmd doc encode file finfo graph http http_socket http_ssl http_transport info login main manifest md5 merge merge3 name pivot popen pqueue printf rebuild report rss schema search setup sha1 sh un skins stat style sync tag th_main timeline tkt tktsetup undo update url user verify vfile wiki wikiformat winhttp xfe r zip sqlite3 th th_lang > $@ +echo fossil >> $@ +echo fossil >> $@ +echo $(LIBS) >> $@ + +echo. >> $@ + +echo fossil >> $@

(check-in: d4749d60 user: wolfgang tags: wolfgangFormat2CSS_2)
21:12
versioninfo/icon added to PellesC compile (check-in: 12e5178e user: wolfgang tags: wolfgangFormat2CSS_2)
16:58
Avoid duplicate "/" in the redirect from the /home webpage. (check-in: cabf810b user: drh tags: trunk)
16:01
merged trunk (check-in: e2db682f user: wolfgang tags: wolfgangFormat2CSS_2)
15:49
Print a warning and require confirmation prior to continuing with a commit after detection of time skew. (check-in: c6a65cbd user: drh tags: trunk)
15:45
added a compiler variant TH1 variable, to be able to see the compiler version on the web page during testing/developing different compiler variants (check-in: 4d7c443c user: wolfgang tags: wolfgangFormat2CSS_2)
15:20
Sync opertions warn about clock skew between client and server. (check-in: 71c40d3b user: drh tags: trunk)
14:11
merge trunk (check-in: e410d40b user: wolfgang tags: wolfgangFormat2CSS_2)
13:32
Update SQLite to the latest version 3.7.3 release candidate. (check-in: fa29769a user: drh tags: trunk)
13:30
Merge all changes from the wolfgangFormat2CSS_2 branch into the trunk. (check-in: 5a48a9b2 user: drh tags: trunk)
13:29
Code formatting tweaks. (check-in: 8fce80ea user: drh tags: wolfgangFormat2CSS_2)
13:18
Back out changes in [9978d2aba603d94]. Instead, simply modify checkout so that it never overwrites "manifest" and "manifest.uuid" if those files are explicitly checked in. Ticket [22a59e9a3455d8e]. (check-in: 4208b3b4 user: drh tags: wolfgangFormat2CSS_2)
12:48
Better handling of /dir pages with unknown checkins. Rework of check-in [872f6a45e3338b77ed10ec49598343ff2ae7741d] for ticket [cc4cd990165317f38618f5b784befd3e9ff3fe61]. (check-in: e01f7e6d user: drh tags: wolfgangFormat2CSS_2)
2010-09-28
18:40
added 64 bit windows compile for PellesC/6.00.4 (check-in: 528c5811 user: Ratte tags: wolfgangFormat2CSS_2)
16:16
corrected error CSS usages (check-in: 94abf61c user: wolfgang tags: wolfgangFormat2CSS_2)
15:45
more formats to css (check-in: e05f750a user: wolfgang tags: wolfgangFormat2CSS_2)
14:48
reconstruct handles subdirectories (check-in: 6759e00e user: wolfgang tags: wolfgangFormat2CSS_2)
09:02
solved ticket [1b41304d8b]: moved style clear: both from code for content to css, adding the corresponding div only, if a sidebox wass used (check-in: 26fc585e user: Ratte tags: wolfgangFormat2CSS_2)
08:29
solved ticket [1b41304d8b]: moved style clear: both from code for content div to footer css, needs redefinition of div.footer in the css configuration! (check-in: 15b3ad25 user: Ratte tags: wolfgangFormat2CSS_2)
05:52
leave notes in help for re/deconstruct about flat import( ticket [3f748ac12c] ) (check-in: 92f8cefc user: Ratte tags: wolfgangFormat2CSS_2)
2010-09-27
18:31
HTML validated setup_settings page (check-in: 4a017876 user: wolfgang tags: wolfgangFormat2CSS_2)
18:12
added setting to change name of the manifest files in the checkout Ticket [22a59e9a3455d8ecb] (check-in: 9978d2ab user: wolfgang tags: wolfgangFormat2CSS_2)
15:56
length of short checkin uuid for dir page restored to 10 (check-in: b72065df user: wolfgang tags: wolfgangFormat2CSS_2)
15:44
fixed error on dir page with unknown checkins. Ticket [cc4cd99016531]. (check-in: 872f6a45 user: wolfgang tags: wolfgangFormat2CSS_2)
12:35
corrected dependency for page_index.h in PellesC-Make (check-in: f8b8e530 user: wolfgang tags: wolfgangFormat2CSS_2)
12:29
corrected -L 0 for deconstruct (check-in: f7fd6765 user: wolfgang tags: wolfgangFormat2CSS_2)
12:10
recreated deconstruct command (check-in: ab12d0f4 user: wolfgang tags: wolfgangFormat2CSS_2)
2010-09-26
16:33
added build environment for PellesC (check-in: c343cd98 user: wolfgang tags: wolfgangFormat2CSS_2)
14:43
update from trunk (check-in: 616a423b user: wolfgang tags: wolfgangFormat2CSS_2)
12:25
some more htm validation (check-in: e5bf291e user: wolfgang tags: wolfgangFormat2CSS_2)
11:34
merge from trunk (check-in: 5b2c8373 user: wolfgang tags: wolfgangFormat2CSS_2)
11:33
Steps to try to avoid redirect loops on a misconfigured repository. Ticket [99d0791365daaec739c53c8b94059e280efc9628] (check-in: 1a008624 user: drh tags: trunk)
11:32
code layout optimoied for user color input and standard style comment for use of jscolor.com.. (check-in: 87e27419 user: wolfgang tags: wolfgangFormat2CSS_2)
11:11
Increased robustness of the XML markup parser. Ticket [675aaa3458199c8832c6879b43325ffb2fd62e75] (check-in: ee78a381 user: drh tags: trunk)
10:35
edit checkin page html validated and added custom color edit (check-in: 41385f75 user: wolfgang tags: wolfgangFormat2CSS_2)
09:29
Merging from trunk. (check-in: f8f63dfa user: wolfgang tags: wolfgangFormat2CSS_2)
2010-09-24
17:07
Merging from trunk. (check-in: e3292ef8 user: michael tags: ttmrichter-skins)
2010-09-22
14:32
Updates to the submenu links for ticket views. (check-in: f29a8266 user: drh tags: trunk)
05:42
schema change to support "nop". Repos will need to be rebuilt to use this functionality. (Closed-Leaf check-in: efc9e1c3 user: bharder tags: nop)
03:03
typo (check-in: cb14ab18 user: bharder tags: nop)
02:58
start of "nop" no-operation command (check-in: 46ea0373 user: bharder tags: nop)
2010-09-19
06:15
merged trunk (check-in: 5e7d7144 user: Ratte tags: wolfgangFormat2CSS_2)
01:14
merge trunk (Closed-Leaf check-in: 1dfb33e8 user: bharder tags: lang)
00:56
Corrections to the built-in help text for the "all" command. (check-in: 0183e191 user: drh tags: trunk)
2010-09-18
22:22
Enable large-file support for stat() on linux. Fix the "stat" webpage to handle repositories larger than 2GB. Ticket [b1934313bcfb3a90d4027b] (check-in: 31fdc347 user: drh tags: trunk)
21:48
Use _stati64() rather than stat() on windows, in order to support repositories larger than 2GB. (check-in: 29323803 user: drh tags: trunk)
20:08
Enhance the test-canonical-name command to provide additional file measurement diagnostics. (check-in: 7fbaee79 user: drh tags: trunk)
16:24
merged back to trunk (check-in: 5a5e722f user: wolfgang tags: wolfgangFormat2CSS_2)
16:04
more pedantic language adj (check-in: ee96785d user: bharder tags: lang)