Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Removed some very old TODO comments (from me) which just clutter up the wiki help text. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f1c56bd31d0dfcd4df682ff11e24a868 |
User & Date: | stephan 2012-08-31 08:58:33 |
Context
2012-08-31
| ||
09:03 | use more utf-8 characters in the wiki, in stead of html entities check-in: 927d07c7 user: jan.nijtmans tags: trunk | |
08:58 | Removed some very old TODO comments (from me) which just clutter up the wiki help text. check-in: f1c56bd3 user: stephan tags: trunk | |
08:08 | More consistancy in html generation: Use '"' where possible. check-in: 34fcb963 user: jan.nijtmans tags: trunk | |
Changes
Changes to src/wiki.c.
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 |
** FILE or from standard input. ** ** %fossil wiki list ** ** Lists all wiki entries, one per line, ordered ** case-insentively by name. ** ** TODOs: ** ** %fossil wiki export ?-u ARTIFACT? WikiName ?FILE? ** ** Outputs the selected version of WikiName. ** ** %fossil wiki delete ?-m MESSAGE? WikiName ** ** The same as deleting a file entry, but i don't know if fossil ** supports a commit message for Wiki entries. ** ** %fossil wiki ?-u? ?-d? ?-s=[|]? list ** ** Lists the artifact ID and/or Date of last change along with ** each entry name, delimited by the -s char. ** ** %fossil wiki diff ?ARTIFACT? ?-f infile[=stdin]? EntryName ** ** Diffs the local copy of a page with a given version (defaulting ** to the head version). */ void wiki_cmd(void){ int n; db_find_and_open_repository(0, 0); if( g.argc<3 ){ goto wiki_cmd_usage; } |
< < < < < < < < < < < < < < < < < < < < |
913 914 915 916 917 918 919 920 921 922 923 924 925 926 |
** FILE or from standard input. ** ** %fossil wiki list ** ** Lists all wiki entries, one per line, ordered ** case-insentively by name. ** */ void wiki_cmd(void){ int n; db_find_and_open_repository(0, 0); if( g.argc<3 ){ goto wiki_cmd_usage; } |