TIP #467: MOVE TIP COLLECTION TO FOSSIL ========================================= Version: $Revision: 1.5 $ Author: Mark Janssen State: Draft Type: Process Vote: Pending Created: Tuesday, 14 March 2017 URL: https://tip.tcl-lang.org467.html Post-History: ------------------------------------------------------------------------- ABSTRACT ========== The Tcl TIP collection shall be moved to Fossil and the process of managing TIPs shall use Fossil as much as possible. The TIP format will be changed from a TIP-specific form to Markdown. RATIONALE =========== Triggered by some people having issues with changing content on current TIP website and discussion on the #tcl chat, I have experimented with fossil as a medium to host the Tcl TIP collection. The current TIP storage and handling requires a lot of scripts that need to be maintained by the TCT and it is less open than it could be. There are also advantages to switching to Fossil in place of CVS. * Fossil has embedded Markdown rendering. * Fossil is already used to manage the Tcl and Tk sources. * TIP discussion and CFVs can be done and tracked using fossil tickets. * Fossil events could also track CFV's and Vote results * CVS is extremely vulnerable to problems with system administration on a single host. With a fossil-based system, it is much simpler to have multiple repositories. Besides Fossil supporting Markdown out of the box, markdown is also better option for the future than the current format. The value of making up your own plain text format in this age is debatable (especially for the TIP requirements). Markdown has widely available options to convert to other formats without any need for the community to maintain the converters, and supports key extra features such as embedded images (which are important for some Tk TIPs, and never worked particularly well with the old TIP format). SPECIFICATION =============== Proposed URL for the new repository will be BACKWARDS COMPATIBILITY ------------------------- * /tip.tcl.tk/.html/ should still show a rendered result. This could be redirected to /core.tcl.tk/tips/doc/trunk/tip/.md/ * /tip.tcl.tk/ offers several converted formats (XML, *roff, ...). The fossil option will be to use the /core.tcl.tk/tips/file/tip/.md?download/ URL to get the raw Markdown downloads. For getting the other options one could convert the markdown source file using something like pandoc. * E-mail address are not hidden in the source and in the rendered result. If e-mail addresses need to be hidden there are two options 1. Remove mails from source. 2. Hide e-mails in fossil. 3. Hide e-mails in the webhost. Option 2. doesn't help much as the mails are still online in the raw markdown files. Option 1. loses information. Suggested is to leave the addresses untouched. PROCESS --------- TBD TIP FORMAT ------------ The Markdown tip format has one extension to standard Markdown: Any TIP.md file will have a mandatory preamble starting with the title (for fossil rendering) and ending with a `------` on a single line. Between these parts there is tab indented meta information about the tip. (Tab indented so it renders nicer in fossil, 4 spaces would also work) Example from [TIP #0]: # TIP 0: Tcl Core Team Basic Rules State: Final Type: Process Vote: Done Post-History: ------ IMPLEMENTATION ================ * There is a proof of concept conversion (with CVS history) at * The scripts for the automatic conversion are at COPYRIGHT =========== This document has been placed in the public domain. ------------------------------------------------------------------------- TIP AutoGenerator - written by Donal K. Fellows