Coding projects (by others)

libfossil

The Fossil SCM library API experiment. "Unofficial but not unsanctioned."

Read More →

Fossil Forum

Forum for discussion of the Fossil DVCS

Read More →

Pikchr

A PIC-inspired graphics markup language

Read More →

fnc

interactive text-based user interface for fossil

Read More →

Eskil

Graphical Diff Utility

Read More →

mORMot and Open Source friends

Host the OpenSource components made available by the Synopse company. mORMot Framework Client-Server Delphi ORM (SQlite3 Oracle MSSQL OleDB ODBC) and interface based Services (like WCF): database access, User Interface generation, security, i18n and reporting are handled in a safe and fast SOA AJAX JSON RESTful model. PDF Engine is an Open Source PDF document creation library for Delphi, embedded in one unit. Use a true TCanvas to create the PDF, and embed True Type fonts subsets. Unicode ready. GDI+ SynGdiPlus unit: some TGraphic descendants are registered in your application to load and save GIF, TIF, PNG and JPG pictures. It also allows antialiased drawing from any TMetaFile.

Read More →

FossilBook

This is a user guide for Fossil. It will show a new user how to setup and use this wonderfully simple source control system.

Read More →

Star Trek Database

Simple SQLite-based database for Star Trek metadata

Read More →

AsmBB

It is web message board, implemented in pure assembly language. It uses SQLite database and FastCGI interface. The main goal is to have fastest message board engine able to run on very high loads and still have all needed features.

Read More →

Flint

The AGPLv3 codebase behind http://chiselapp.com.

Read More →

Inskinerator

Generates improved Fossil skins based on its default skin with custom color schemes.

Read More →

GIMP Script-fu

Here a some of the GIMP Script-fu scripts I have written over the years.

Read More →

Fossil Skins Extra

Collection of themes/skins for the Fossil SCM. <span style=color:red>Public write access</span>, just make an account.

Read More →

Fossil Skins Extra

Collection of themes/skins for the Fossil SCM

Read More →

Wheel of Time Chapter Icons

Description of all chapter icons from the Wheel of Time series.

Read More →

Codes divers

Divers bouts de code de ma composition

Read More →

Fossil Wrapper

(No description available)

Read More →

fx

Extended fossil management commands - Scripts to maintain a mirror from fossil to git. - Watching a fossil repository (RSS) and sending mail on ticket changes.

Read More →

Fuel

A cross platform GUI for Fossil

Read More →

TortoiseFossil

A version of the popular Tortoise-style tools for Fossil SCM.

Read More →

fossil markdown patches

This project provides patches to enable markdown in the ticket system. For you have to place * edit-ticket.th1 * new-ticket.th1 * view-ticket.tha to the respective templates in Admin/Tickets

Read More →

Codes divers

Divers bouts de code de ma composition

Read More →
Search
About this site

This page lists a few projects that I've cloned from elsewhere.

Some of them still sync with the original repository, and in some cases I keep a local (private) branch with my own tweaks and additions.

Recent ticket activity

Re: ticket display doesn't show age or creation time
These changes are merged to trunk with the branch [tkt-improvements](/timeline?r=tkt-improvements), therefore I close this ticket.
Re: Turn the version field of tickets into links
This was added in the branch [tkt-improvements](/timeline?r=tkt-improvements) which is merged to trunk. Therefore I close the ticket. Note that both a checkin-hash and the name of a tag will be linked if present in the repository.
Re: Show ticket history on ticket edit page
The branch is merged and therefore I close this ticket. As a note: this change shows the comments added in the new table ticketchng. At the time the ticket was created all comments were merged in a field. I decided to leave these old style comments out, as over time the newer edits will dominate. If you want to include them, add this to the `<th1>`-block in configuration for edit ticket page: ``` if {[info exists comment]} { if {[string length $comment]>10} { html { <tr><td class="tktDspLabel">Description:</td></tr> <tr><td colspan="5" class="tktDspValue"> } if {[info exists plaintext]} { set r [randhex] wiki "<verbatim-$r links>\n$comment\n</verbatim-$r>" } else { wiki $comment } } } ```
fossil and nonascii filenames
windows issue try to run following batch file (note, file should be saved as oem) fossil init t.fossil mkdir t cd t fossil open ../t.fossil echo. > OEM-B0-░ fossil add OEM-B0-░ fossil commit -m "t" eskil . eskil shows wrong tree with two files t (current) vs t _FOSSIL_ 36864 2025-05-01 14:29:10 OEM-в–‘ 3 2025-05-01 14:29:10 OEM-░ 3 2025-05-01 14:29:06
Re: Tables in ticket view set the bgcolor
> As per the OP's suggestion, moving the ticket state colors into CSS, so that they participate in the skinning process, would be a good thing to do someday. I see some problem. It would be quite easy I think to create CSS-Classes if a Variable cssclass or similar is created in the SQL-Query. That part is easy. But what CSS-Classes would a creator of a report pick? As the users can switch their skin, these would've to be supported in all available skins. We could provide some for common cases, but it would be hard to use more customized stuff. The report-creator has to make sure their CSS-Classes are added to the skins. So it is not impossible to implement I think, but as I see it the usefulness would be limited if there isn't a way to add the needed classes to all skins or add custom classes to the report window as well. Which probably would be the best way, add another input for creating CSS that is injected on the report page. But then again it is not part of the skinning.