Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Renamed src/fsl_XYZ.c to src/XYZ.c. f-checkin vfile dump now includes renames. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ed3183170aa92643529836da23071aac |
User & Date: | stephan 2021-02-15 03:24:50.418 |
Context
2021-02-15
| ||
04:11 | Fixed the unsetting of the B-card on a manifest when the checkin processes decides that it's not useful as a delta manifest and switches to a baseline manifest. Bug was in the B-card unsetter logic. check-in: 4a015bdd47 user: stephan tags: trunk | |
03:24 | Renamed src/fsl_XYZ.c to src/XYZ.c. f-checkin vfile dump now includes renames. check-in: ed3183170a user: stephan tags: trunk | |
00:21 | Reimplemented fsl_config_file_reset() to account for schema prefixes. fsl_file_size() now returns type fsl_int_t instead of fsl_size_t, to simplify the -1-on-error return checking. Added fsl_config_global_preferred_name(), which performs the global config file lookup algo used by fossil, and changed fsl_config_open() to use that. check-in: 8837671e83 user: stephan tags: trunk | |
Changes
Changes to f-apps/f-checkin.c.
︙ | ︙ | |||
205 206 207 208 209 210 211 | }else{ f_out("vfile selected contents:\n"); fsl_db_each( fsl_cx_db_checkout(f), stmt_each_dump, NULL, "SELECT vf.id, substr(b.uuid,0,12), vf.pathname " "FROM vfile vf LEFT JOIN blob b " "ON b.rid=vf.rid " "WHERE vf.vid=%"FSL_ID_T_PFMT" " | | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | }else{ f_out("vfile selected contents:\n"); fsl_db_each( fsl_cx_db_checkout(f), stmt_each_dump, NULL, "SELECT vf.id, substr(b.uuid,0,12), vf.pathname " "FROM vfile vf LEFT JOIN blob b " "ON b.rid=vf.rid " "WHERE vf.vid=%"FSL_ID_T_PFMT" " "AND (chnged<>0 OR pathname<>origname)" "AND fsl_is_enqueued(vf.id) " "ORDER BY vf.id", ckoutId); f_out("f->ckin.selectedIds count: %d\n", (int)f->ckin.selectedIds.entryCount); } rc = fsl_checkin_commit(f, &opt, &newRid, &newUuid); |
︙ | ︙ |
Changes to f-apps/f-sanity.c.
︙ | ︙ | |||
331 332 333 334 335 336 337 | } static void test_fs_cx_stat(){ fsl_cx * f = fcli.f; int rc; fsl_fstat fst = fsl_fstat_empty; int64_t time1, time2; | | | | 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | } static void test_fs_cx_stat(){ fsl_cx * f = fcli.f; int rc; fsl_fstat fst = fsl_fstat_empty; int64_t time1, time2; char const * fname = "src/cli.c"; fsl_buffer buf = fsl_buffer_empty; fsl_time_t const now = time(0); f_out("fsl_cx_stat()...\n"); rc = fsl_cx_stat( f, 1, "no-such-file", &fst ); assert(FSL_RC_NOT_FOUND==rc); fcli_err_reset(); rc = fsl_cx_stat( f, 0, fname, &fst ); assert(0==rc); assert(FSL_FSTAT_TYPE_FILE==fst.type); assert(fst.ctime>0 && fst.ctime<now); assert(fst.mtime>0 && fst.mtime<now); assert(fst.size>0); fname = "../src/cli.c"; rc = fsl_cx_stat( f, 1, fname, &fst ); assert(0==rc); buf.used = 0; rc = fsl_cx_stat2( f, 0, "src/", &fst, &buf, 0 ); f_out("rc=%s buf=[%b]\n", fsl_rc_cstr(rc), &buf); assert(0==rc); |
︙ | ︙ | |||
686 687 688 689 690 691 692 | to validate results with strstr, we need to keep the separator consistent*/ fsl_pathfinder_dir_add(pf, "..\\src"); #else fsl_pathfinder_dir_add(pf, "../src"); #endif fsl_pathfinder_ext_add(pf, ".c"); | | | | | 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 | to validate results with strstr, we need to keep the separator consistent*/ fsl_pathfinder_dir_add(pf, "..\\src"); #else fsl_pathfinder_dir_add(pf, "../src"); #endif fsl_pathfinder_ext_add(pf, ".c"); rc = fsl_pathfinder_search(pf, "fs", &found, NULL); assert(0==rc); #ifdef WIN32 assert(strstr(found, "..\\src\\fs.c")); #else assert(strstr(found, "../src/fs.c")); #endif f_out("pathfinder found %s\n", found); rc = fsl_pathfinder_search(pf, "nono", &found, NULL); assert(FSL_RC_NOT_FOUND==rc); fsl_pathfinder_clear(pf); } |
︙ | ︙ | |||
1537 1538 1539 1540 1541 1542 1543 | rc = fsl_checkin_file_dequeue(f, fn, 1); assert(0==rc); assert(1==fList->entryCount); fn = "../src"; rc = fsl_checkin_file_enqueue(f, fn, 1); assert(0==rc); | | | 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 | rc = fsl_checkin_file_dequeue(f, fn, 1); assert(0==rc); assert(1==fList->entryCount); fn = "../src"; rc = fsl_checkin_file_enqueue(f, fn, 1); assert(0==rc); assert(fsl_checkin_file_is_enqueued(f, "src/diff.c", 0)); { fsl_checkin_opt opt = fsl_checkin_opt_empty; opt.message = "Blah"; opt.messageMimeType = "text/plain"; rc = fsl_checkin_commit( f, &opt, NULL, NULL ); fcli_err_report(1); |
︙ | ︙ |
Changes to src/Makefile.in.
︙ | ︙ | |||
11 12 13 14 15 16 17 | #INCLUDES_PATH ?= $(HOME)/include /usr/local/include /usr/include # FSL.SRC.BASE = all sources which can go in the amalgamation build # FSL.SRC = FSL.SRC.BASE + generated/added sources FSL.SRC.BASE := \ fsl.c \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | #INCLUDES_PATH ?= $(HOME)/include /usr/local/include /usr/include # FSL.SRC.BASE = all sources which can go in the amalgamation build # FSL.SRC = FSL.SRC.BASE + generated/added sources FSL.SRC.BASE := \ fsl.c \ appendf.c \ auth.c \ bag.c \ buffer.c \ checkin.c \ checkout.c \ cli.c \ content.c \ config.c \ cx.c \ db.c \ delta.c \ diff.c \ encode.c \ event.c \ ext_regexp.c \ fs.c \ forum.c \ glob.c \ io.c \ leaf.c \ list.c \ md5.c \ mf.c \ path.c \ popen.c \ pq.c \ repo.c \ schema.c \ sha1.c \ sha3.c \ strftime.c \ tag.c \ ticket.c \ utf8.c \ vfile.c \ vtbl_fossil_settings.c \ wiki.c \ zip.c FSL.SRC := $(FSL.SRC.BASE) ifeq (0,1) FSL.SRC += \ jni.c \ tcl.c endif ifneq (,$(wildcard sqlite3.c)) FSL.SRC += sqlite3.c HAVE_OWN_SQLITE := 1 else HAVE_OWN_SQLITE := 0 |
︙ | ︙ | |||
90 91 92 93 94 95 96 | echo '/* Binary form of file $(2) */'; \ echo '/** @page page_$(1) Schema: $$(notdir $(2))'; \ echo '@code'; \ cat "$(2)"; \ echo ' @endcode'; \ echo ' @see $$(subst _cstr,,$(1))()'; \ echo '*/'; \ | | | | | | | | | | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | echo '/* Binary form of file $(2) */'; \ echo '/** @page page_$(1) Schema: $$(notdir $(2))'; \ echo '@code'; \ cat "$(2)"; \ echo ' @endcode'; \ echo ' @see $$(subst _cstr,,$(1))()'; \ echo '*/'; \ $$(BIN.TEXT2C) fsl_$(1) < $(2); \ echo '/* end of $(2) */'; \ } > $$@; FSL.SRC += $(1).c FSL.SRC.BASE += $(1).c FSL.OBJ += $(1).o DISTCLEAN_FILES += $(1).c sql: $(1).c endef SQL.DIR := $(TOP_SRCDIR_REL)/sql $(eval $(call SQL2C,schema_config_cstr,$(SQL.DIR)/config.sql)) $(eval $(call SQL2C,schema_repo1_cstr,$(SQL.DIR)/repo-static.sql)) $(eval $(call SQL2C,schema_repo2_cstr,$(SQL.DIR)/repo-transient.sql)) $(eval $(call SQL2C,schema_checkout_cstr,$(SQL.DIR)/checkout.sql)) $(eval $(call SQL2C,schema_ticket_cstr,$(SQL.DIR)/ticket.sql)) $(eval $(call SQL2C,schema_ticket_reports_cstr,$(SQL.DIR)/ticket-reports.sql)) $(eval $(call SQL2C,schema_forum_cstr,$(SQL.DIR)/forum.sql)) # end SQL transformation bits ######################################################################## # These are the flags used by fossil's embedded sqlite3: sqlite3.o: CPPFLAGS+=-DNDEBUG=1 \ -DSQLITE_DQS=0 \ -DSQLITE_THREADSAFE=0 \ |
︙ | ︙ |
Name change from src/fsl_appendf.c to src/appendf.c.
︙ | ︙ |
Name change from src/fsl_auth.c to src/auth.c.
︙ | ︙ |
Name change from src/fsl_bag.c to src/bag.c.
︙ | ︙ |
Name change from src/fsl_buffer.c to src/buffer.c.
︙ | ︙ |
Name change from src/fsl_checkin.c to src/checkin.c.
︙ | ︙ |
Name change from src/fsl_checkout.c to src/checkout.c.
︙ | ︙ |
Name change from src/fsl_cli.c to src/cli.c.
︙ | ︙ |
Name change from src/fsl_config.c to src/config.c.
︙ | ︙ |
Name change from src/fsl_content.c to src/content.c.
︙ | ︙ |
Name change from src/fsl_cx.c to src/cx.c.
︙ | ︙ |
Name change from src/fsl_db.c to src/db.c.
︙ | ︙ |
Name change from src/fsl_delta.c to src/delta.c.
︙ | ︙ |
Name change from src/fsl_diff.c to src/diff.c.
︙ | ︙ |
Name change from src/fsl_encode.c to src/encode.c.
︙ | ︙ |
Name change from src/fsl_event.c to src/event.c.
︙ | ︙ |
Name change from src/fsl_ext_regexp.c to src/ext_regexp.c.
︙ | ︙ |
Name change from src/fsl_forum.c to src/forum.c.
︙ | ︙ |
Name change from src/fsl_fs.c to src/fs.c.
︙ | ︙ |
Name change from src/fsl_glob.c to src/glob.c.
︙ | ︙ |
Name change from src/fsl_io.c to src/io.c.
︙ | ︙ |
Name change from src/fsl_jni.c to src/jni.c.
︙ | ︙ |
Name change from src/fsl_leaf.c to src/leaf.c.
︙ | ︙ |
Name change from src/fsl_list.c to src/list.c.
︙ | ︙ |
Name change from src/fsl_md5.c to src/md5.c.
︙ | ︙ |
Name change from src/fsl_mf.c to src/mf.c.
︙ | ︙ |
Name change from src/fsl_path.c to src/path.c.
︙ | ︙ |
Name change from src/fsl_popen.c to src/popen.c.
︙ | ︙ |
Name change from src/fsl_pq.c to src/pq.c.
︙ | ︙ |
Name change from src/fsl_repo.c to src/repo.c.
︙ | ︙ |
Name change from src/fsl_schema.c to src/schema.c.
︙ | ︙ |
Name change from src/fsl_schema_checkout_cstr.c to src/schema_checkout_cstr.c.
1 | /* Binary form of file ../sql/checkout.sql */ | | | 1 2 3 4 5 6 7 8 9 | /* Binary form of file ../sql/checkout.sql */ /** @page page_schema_checkout_cstr Schema: checkout.sql @code -- The VVAR table holds miscellanous information about the local database -- in the form of name-value pairs. This is similar to the VAR table -- table in the repository except that this table holds information that -- is specific to the local checkout. -- -- Important Variables: |
︙ | ︙ | |||
74 75 76 77 78 79 80 | 'trying to update a newer checkout with an older version of Fossil'); END; -- Identifier for this file type. -- The integer is the same as 'FSLC'. PRAGMA application_id=252006674; @endcode | | | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | 'trying to update a newer checkout with an older version of Fossil'); END; -- Identifier for this file type. -- The integer is the same as 'FSLC'. PRAGMA application_id=252006674; @endcode @see schema_checkout() */ /* auto-generated code - edit at your own risk! (Good luck with that!) */ static char const fsl_schema_checkout_cstr_a[] = { 45, 45, 32, 84, 104, 101, 32, 86, 86, 65, 82, 32, 116, 97, 98, 108, 101, 32, 104, 111, 108, 100, 115, 32, 109, 105, 115, 99, 101, 108, 108, 97, 110, 111, 117, 115, 32, 105, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 32, 97, 98, 111, 117, 116, 32, 116, 104, 101, 32, 108, 111, 99, 97, 108, 32, 100, 97, 116, 97, 98, 97, 115, 101, 10, 45, 45, 32, 105, 110, 32, |
︙ | ︙ |
Name change from src/fsl_schema_config_cstr.c to src/schema_config_cstr.c.
1 | /* Binary form of file ../sql/config.sql */ | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /* Binary form of file ../sql/config.sql */ /** @page page_schema_config_cstr Schema: config.sql @code -- This file contains the schema for the database that is kept in the -- ~/.fossil file and that stores information about the users setup. -- CREATE TABLE cfg.global_config( name TEXT PRIMARY KEY, value TEXT ); -- Identifier for this file type. -- The integer is the same as 'FSLG'. PRAGMA application_id=252006675; @endcode @see schema_config() */ /* auto-generated code - edit at your own risk! (Good luck with that!) */ static char const fsl_schema_config_cstr_a[] = { 45, 45, 32, 84, 104, 105, 115, 32, 102, 105, 108, 101, 32, 99, 111, 110, 116, 97, 105, 110, 115, 32, 116, 104, 101, 32, 115, 99, 104, 101, 109, 97, 32, 102, 111, 114, 32, 116, 104, 101, 32, 100, 97, 116, 97, 98, 97, 115, 101, 32, 116, 104, 97, 116, 32, 105, 115, 32, 107, 101, 112, 116, 32, 105, 110, 32, 116, 104, 101, 10, 45, 45, 32, 126, 47, 46, 102, 111, 115, 115, |
︙ | ︙ |
Name change from src/fsl_schema_forum_cstr.c to src/schema_forum_cstr.c.
1 | /* Binary form of file ../sql/forum.sql */ | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /* Binary form of file ../sql/forum.sql */ /** @page page_schema_forum_cstr Schema: forum.sql @code CREATE TABLE repo.forumpost( fpid INTEGER PRIMARY KEY, -- BLOB.rid for the artifact froot INT, -- fpid of the thread root fprev INT, -- Previous version of this same post firt INT, -- This post is in-reply-to fmtime REAL -- When posted. Julian day ); CREATE INDEX repo.forumthread ON forumpost(froot,fmtime); @endcode @see schema_forum() */ /* auto-generated code - edit at your own risk! (Good luck with that!) */ static char const fsl_schema_forum_cstr_a[] = { 67, 82, 69, 65, 84, 69, 32, 84, 65, 66, 76, 69, 32, 114, 101, 112, 111, 46, 102, 111, 114, 117, 109, 112, 111, 115, 116, 40, 10, 32, 32, 102, 112, 105, 100, 32, 73, 78, 84, 69, 71, 69, 82, 32, 80, 82, 73, 77, 65, 82, 89, 32, 75, 69, 89, 44, 32, 32, 45, 45, 32, 66, 76, 79, 66, 46, 114, 105, 100, 32, 102, 111, 114, 32, 116, 104, 101, 32, 97, 114, |
︙ | ︙ |
Name change from src/fsl_schema_repo1_cstr.c to src/schema_repo1_cstr.c.
1 | /* Binary form of file ../sql/repo-static.sql */ | | | 1 2 3 4 5 6 7 8 9 | /* Binary form of file ../sql/repo-static.sql */ /** @page page_schema_repo1_cstr Schema: repo-static.sql @code -- This file contains parts of the schema that are fixed and -- unchanging across Fossil versions. -- The BLOB and DELTA tables contain all records held in the repository. -- |
︙ | ︙ | |||
129 130 131 132 133 134 135 | content TEXT -- Content intended to be concealed ); -- The application ID helps the unix "file" command to identify the -- database as a fossil repository. PRAGMA application_id=252006673; @endcode | | | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | content TEXT -- Content intended to be concealed ); -- The application ID helps the unix "file" command to identify the -- database as a fossil repository. PRAGMA application_id=252006673; @endcode @see schema_repo1() */ /* auto-generated code - edit at your own risk! (Good luck with that!) */ static char const fsl_schema_repo1_cstr_a[] = { 45, 45, 32, 84, 104, 105, 115, 32, 102, 105, 108, 101, 32, 99, 111, 110, 116, 97, 105, 110, 115, 32, 112, 97, 114, 116, 115, 32, 111, 102, 32, 116, 104, 101, 32, 115, 99, 104, 101, 109, 97, 32, 116, 104, 97, 116, 32, 97, 114, 101, 32, 102, 105, 120, 101, 100, 32, 97, 110, 100, 10, 45, 45, 32, 117, 110, 99, 104, 97, 110, 103, 105, 110, 103, 32, 97, 99, 114, 111, 115, |
︙ | ︙ |
Name change from src/fsl_schema_repo2_cstr.c to src/schema_repo2_cstr.c.
1 | /* Binary form of file ../sql/repo-transient.sql */ | | | 1 2 3 4 5 6 7 8 9 | /* Binary form of file ../sql/repo-transient.sql */ /** @page page_schema_repo2_cstr Schema: repo-transient.sql @code -- This file contains parts of the schema that can change from one -- version to the next. The data stored in these tables is -- reconstructed from the information in the main repo schema by the -- "rebuild" operation. -- Filenames |
︙ | ︙ | |||
212 213 214 215 216 217 218 | parentid INT, childid INT, isExclude BOOLEAN DEFAULT false, PRIMARY KEY(parentid, childid) ) WITHOUT ROWID; CREATE INDEX repo.cherrypick_cid ON cherrypick(childid); @endcode | | | 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | parentid INT, childid INT, isExclude BOOLEAN DEFAULT false, PRIMARY KEY(parentid, childid) ) WITHOUT ROWID; CREATE INDEX repo.cherrypick_cid ON cherrypick(childid); @endcode @see schema_repo2() */ /* auto-generated code - edit at your own risk! (Good luck with that!) */ static char const fsl_schema_repo2_cstr_a[] = { 45, 45, 32, 84, 104, 105, 115, 32, 102, 105, 108, 101, 32, 99, 111, 110, 116, 97, 105, 110, 115, 32, 112, 97, 114, 116, 115, 32, 111, 102, 32, 116, 104, 101, 32, 115, 99, 104, 101, 109, 97, 32, 116, 104, 97, 116, 32, 99, 97, 110, 32, 99, 104, 97, 110, 103, 101, 32, 102, 114, 111, 109, 32, 111, 110, 101, 10, 45, 45, 32, 118, 101, 114, 115, 105, 111, 110, 32, 116, 111, |
︙ | ︙ |
Name change from src/fsl_schema_ticket_cstr.c to src/schema_ticket_cstr.c.
1 | /* Binary form of file ../sql/ticket.sql */ | | | 1 2 3 4 5 6 7 8 9 | /* Binary form of file ../sql/ticket.sql */ /** @page page_schema_ticket_cstr Schema: ticket.sql @code -- Template for the TICKET table CREATE TABLE repo.ticket( -- Do not change any column that begins with tkt_ tkt_id INTEGER PRIMARY KEY, tkt_uuid TEXT UNIQUE, tkt_mtime DATE, |
︙ | ︙ | |||
29 30 31 32 33 34 35 | login TEXT, username TEXT, mimetype TEXT, icomment TEXT ); CREATE INDEX repo.ticketchng_idx1 ON ticketchng(tkt_id, tkt_mtime); @endcode | | | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | login TEXT, username TEXT, mimetype TEXT, icomment TEXT ); CREATE INDEX repo.ticketchng_idx1 ON ticketchng(tkt_id, tkt_mtime); @endcode @see schema_ticket() */ /* auto-generated code - edit at your own risk! (Good luck with that!) */ static char const fsl_schema_ticket_cstr_a[] = { 45, 45, 32, 84, 101, 109, 112, 108, 97, 116, 101, 32, 102, 111, 114, 32, 116, 104, 101, 32, 84, 73, 67, 75, 69, 84, 32, 116, 97, 98, 108, 101, 10, 67, 82, 69, 65, 84, 69, 32, 84, 65, 66, 76, 69, 32, 114, 101, 112, 111, 46, 116, 105, 99, 107, 101, 116, 40, 10, 32, 32, 45, 45, 32, 68, 111, 32, 110, 111, 116, 32, 99, 104, 97, 110, 103, 101, 32, 97, 110, |
︙ | ︙ |
Name change from src/fsl_schema_ticket_reports_cstr.c to src/schema_ticket_reports_cstr.c.
1 | /* Binary form of file ../sql/ticket-reports.sql */ | | | 1 2 3 4 5 6 7 8 9 | /* Binary form of file ../sql/ticket-reports.sql */ /** @page page_schema_ticket_reports_cstr Schema: ticket-reports.sql @code INSERT INTO reportfmt(title,mtime,cols,sqlcode) VALUES('All Tickets',julianday('1970-01-01'),'#ffffff Key: #f2dcdc Active #e8e8e8 Review #cfe8bd Fixed #bde5d6 Tested |
︙ | ︙ | |||
19 20 21 22 23 24 25 | datetime(tkt_mtime) AS ''mtime'', type, status, subsystem, title FROM ticket'); @endcode | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | datetime(tkt_mtime) AS ''mtime'', type, status, subsystem, title FROM ticket'); @endcode @see schema_ticket_reports() */ /* auto-generated code - edit at your own risk! (Good luck with that!) */ static char const fsl_schema_ticket_reports_cstr_a[] = { 73, 78, 83, 69, 82, 84, 32, 73, 78, 84, 79, 32, 114, 101, 112, 111, 114, 116, 102, 109, 116, 40, 116, 105, 116, 108, 101, 44, 109, 116, 105, 109, 101, 44, 99, 111, 108, 115, 44, 115, 113, 108, 99, 111, 100, 101, 41, 32, 10, 86, 65, 76, 85, 69, 83, 40, 39, 65, 108, 108, 32, 84, 105, 99, 107, 101, 116, 115, 39, 44, 106, 117, 108, 105, 97, 110, 100, 97, 121, 40, |
︙ | ︙ |
Name change from src/fsl_sha1.c to src/sha1.c.
︙ | ︙ |
Name change from src/fsl_sha3.c to src/sha3.c.
︙ | ︙ |
Name change from src/fsl_strftime.c to src/strftime.c.
︙ | ︙ |
Name change from src/fsl_tag.c to src/tag.c.
︙ | ︙ |
Name change from src/fsl_tcl.c to src/tcl.c.
︙ | ︙ |
Name change from src/fsl_ticket.c to src/ticket.c.
︙ | ︙ |
Name change from src/fsl_utf8.c to src/utf8.c.
︙ | ︙ |
Name change from src/fsl_vfile.c to src/vfile.c.
︙ | ︙ |
Name change from src/fsl_vtbl_fossil_settings.c to src/vtbl_fossil_settings.c.
︙ | ︙ |
Name change from src/fsl_wiki.c to src/wiki.c.
︙ | ︙ |
Name change from src/fsl_zip.c to src/zip.c.
︙ | ︙ |