Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
18 check-ins using file src/info.c version 1b352f5977
2008-08-14
| ||
04:53 | fixed typos ... (check-in: 4c78a18ad2 user: bch tags: trunk) | |
2008-08-13
| ||
11:57 | Allow an alternative URL syntax for downloading artifacts via the <tt>/zip</tt> page. The original way is: <verbatim> http://localhost:8080/zip/fa6e9930177e84ce089b30ad768c454a012364f7.zip </verbatim> which will store the artifact in the file <tt>a6e9930177e84ce089b30ad768c454a012364f7.zip</tt>. Alternatively it is now possible to download the artifact in e.g. the file <tt>fossil.zip</tt> via the URL: <verbatim> http://localhost:8080/zip/fossil.zip?rid=fa6e9930177e84ce089b30ad768c454a012364f7 </verbatim> ... (check-in: 417dd898ab user: hintze tags: trunk) | |
2008-08-12
| ||
03:27 | New <b>Zip</b> permission. This permission allow someone to download a zipped artifact via the wiki's <tt>/zip</tt> URL. It can given the user <tt>nobody</tt> to allow automatic package builder to download the sources they know from <tt>fossil-scm.org</tt> or other servers without any intervening login necessary. As the <tt>/zip</tt> page do not expose anything, a spider should have a hard time to crawl thru the project using this URL. So IMO it does not open a break-in hole for spiders. ... (check-in: fa6e993017 user: cle tags: trunk) | |
2008-08-11
| ||
17:52 | Make "notepad" the default text editor for windows. ... (check-in: baf68cc18f user: drh tags: trunk) | |
05:30 | Fix a spelling: replace 'delete' -> 'cancel' in usage for 'tag'. ... (check-in: 91ec6982e9 user: hintze tags: trunk) | |
04:03 | * Rename subcommand <tt>tag delete</tt> to <tt>tag cancel</tt>. * New branching behavior. Now if subcommand <tt>tag branch</tt> is used, a new copy of manifest <tt>UUID</tt> with the same parent will be created, thereby creating a fork. A propagating symbolic tag with <tt>TAGNAME</tt> is assigned to the UUID of the new copy. Furthermore all other propagating symbolic tags that the fork did inherited by the original manifest, are cancelled.<br><br>However, if the option <tt>--raw</tt> was given, the old <tt>tag branch</tt> behavior is used. That means, no creation of a fork by copying the manifest <tt>UUID</tt>, no cancelling of inherited propagating symbolic tags. The tag will be applied to the given UUID directly.<br><br>For instance <verbatim> fossil tag branch fix-12345 cfcfcfee fossil tag branch --raw bgcolor fix-12345 yellow </verbatim> will create a fork by copiying manifest <tt>cfcfcfee</tt>, apply a tag <tt>fix-12345</tt> that will propagate to its children and set the propagating property <tt>bgcolor</tt> to <tt>yellow</tt>. ... (check-in: ac392fbba6 user: cle tags: trunk) | |
2008-08-03
| ||
16:47 | Users unconditionally inherit capabilities of "anonymous". New capability "v" means to inherit capabilities of user "developer". Login is prohibited if the password is empty. ... (check-in: 1f1d96529c user: drh tags: trunk) | |
2008-08-02
| ||
18:32 | Fix bug from eb24a021d6 which left nobody with too many permissions ... (check-in: b46d6092dc user: eric tags: trunk) | |
2008-07-30
| ||
13:00 | Allow for generating a Makefile that will also work for BSD Make (tested under NetBSD 3.1). ... (check-in: e243a8dfa4 user: cle tags: trunk) | |
2008-07-29
| ||
13:07 | Documentation updates. ... (check-in: 9d10726d48 user: drh tags: trunk) | |
2008-07-27
| ||
21:02 | Reverse the check on inline formatting for indented paragraphs in wikiformat.c ... (check-in: 3bc6d0b0c9 user: eric tags: trunk) | |
18:35 | Change behavior of Fossil's tag handling. 1. All subcommands of command <tt>tag</tt> prepends a prefix <tt>sym-</tt> infront of every tag name passed to them. Tags beginning with <tt>sym-</tt> are special in Fossil as they might serve as replacement of a UUID they are attached to.<br><br> Further, <tt>tag list</tt> will only list all tags beginning with <tt>sym-</tt> but with that prefix removed during display as default.<br><br> All subcommands can get passed an option <tt>--raw</tt>, that prevent the prepending of the prefix <tt>sym-</tt> in front of the tag name. <tt>tag list</tt> will report all tags without removing any prefix if called with option <tt>--raw</tt>. 2. If a command takes a tag name that may be confused with a UUID, the command did interpret that parameter as a UUID instead as a tag name. Such tags might now be prefixed with a <tt>tag:</tt> to enforce the command to take them as tag name instead of a UUID. For example: <verbatim> fossil tag add abcde $uuid : fossil update tag:abcde </verbatim> without the prefix <tt>tag:</tt> fossil would try to update to a UUID beginning with <tt>abcde</tt>. If no such UUID was found, fossil will complain and exit. ... (check-in: d1c9938025 user: cle tags: trunk) | |
2008-07-26
| ||
17:08 | Make all users inherit the capabilities of "nobody" as well as (optionally) of "anonymous". ... (check-in: eb24a021d6 user: eric tags: trunk) | |
16:51 | Add a "User-Agent" header to the HTTP traffic generated by fossil. The user-agent string is "Fossil/$UUID". ... (check-in: 31824fbf91 user: dan tags: trunk) | |
14:02 | Code to randomize messages from client to the server. ... (check-in: 3cb547be2c user: drh tags: trunk) | |
2008-07-25
| ||
12:30 | Disable the "branch" command pending further discussion and clarification of its purpose and intent. ... (check-in: f6d3d89e76 user: drh tags: trunk) | |
2008-07-24
| ||
15:08 | Remove redundant "Description & Comments:" label from the ticket viewer. ... (check-in: 4b56350ecb user: drh tags: trunk) | |
15:02 | Fix a bug in the check-in comment editor. Ticket [4b40f57449]. ... (check-in: 89de100a2d user: drh tags: trunk) | |