Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | merge from trunk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | wolfgangFormat2CSS_2 |
Files: | files | file ages | folders |
SHA1: | f52c6f688618b6fa6d3e679a9b5f1ab65e4cc9c4 |
User & Date: | wolfgang 2010-10-02 12:55:47 |
Context
2010-10-02
| ||
15:44 | make PellesC-Makefile dynamic, only special files (util, zlib th, sqlite are mentioned explicitly, other sources are read by wildcard expansion check-in: 3bb1f957 user: wolfgang tags: wolfgangFormat2CSS_2 | |
12:55 | merge from trunk check-in: f52c6f68 user: wolfgang tags: wolfgangFormat2CSS_2 | |
12:51 | show new allowed tags(checkin [172dccb66f]) in wiki help page check-in: c492eab3 user: wolfgang tags: trunk | |
11:42 | use compiler_name in windows-resource file check-in: f09603e6 user: wolfgang tags: wolfgangFormat2CSS_2 | |
Changes
Changes to src/wiki.c.
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 |
@ as the text of the hyperlink. But you can specify alternative text @ after the target name separated by a "|" character.</p> @ <p>You can also link to internal anchor names using [#anchor-name], providing @ you have added the necessary "<a name="anchor-name"></a>" @ tag to your wiki page.</p></li> @ <li> <p><span class="wikiruleHead">HTML</span>. @ The following standard HTML elements may be used: @ <a> @ <address> @ <b> @ <big> @ <blockquote> @ <br> @ <center> @ <cite> @ <code> @ <dd> @ <dfn> @ <div> @ <dl> @ <dt> @ <em> @ <font> @ <h1> @ <h2> @ <h3> @ <h4> @ <h5> @ <h6> @ <hr> @ <img> @ <i> @ <kbd> @ <li> @ <nobr> @ <ol> @ <p> @ <pre> @ <s> @ <samp> @ <small> @ <strike> @ <strong> @ <sub> @ <sup> @ <table> @ <td> @ <th> @ <tr> @ <tt> @ <u> @ <ul> @ <var>. @ In addition, there are two non-standard elements available: @ <verbatim> and <nowiki>. @ No other elements are allowed. All attributes are checked and @ only a few benign attributes are allowed on each element. @ In particular, any attributes that specify javascript or CSS @ are elided.</p></li> @ <li><p><span class="wikiruleHead">Special Markup.</span> @ The <nowiki> tag disables all wiki formatting rules |
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | |
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 |
@ as the text of the hyperlink. But you can specify alternative text @ after the target name separated by a "|" character.</p> @ <p>You can also link to internal anchor names using [#anchor-name], providing @ you have added the necessary "<a name="anchor-name"></a>" @ tag to your wiki page.</p></li> @ <li> <p><span class="wikiruleHead">HTML</span>. @ The following standard HTML elements may be used: show_allowed_wiki_markup(); @ . There are two non-standard elements available: @ <verbatim> and <nowiki>. @ No other elements are allowed. All attributes are checked and @ only a few benign attributes are allowed on each element. @ In particular, any attributes that specify javascript or CSS @ are elided.</p></li> @ <li><p><span class="wikiruleHead">Special Markup.</span> @ The <nowiki> tag disables all wiki formatting rules |
Changes to src/wikiformat.c.
307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
{ "tt", MARKUP_TT, MUTYPE_FONT, 0 }, { "u", MARKUP_U, MUTYPE_FONT, 0 }, { "ul", MARKUP_UL, MUTYPE_LIST, AMSK_TYPE|AMSK_COMPACT }, { "var", MARKUP_VAR, MUTYPE_FONT, 0 }, { "verbatim", MARKUP_VERBATIM, MUTYPE_SPECIAL, AMSK_ID|AMSK_TYPE }, }; /* ** Use binary search to locate a tag in the aMarkup[] table. */ static int findTag(const char *z){ int i, c, first, last; first = 1; |
> > > > > > > > |
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
{ "tt", MARKUP_TT, MUTYPE_FONT, 0 }, { "u", MARKUP_U, MUTYPE_FONT, 0 }, { "ul", MARKUP_UL, MUTYPE_LIST, AMSK_TYPE|AMSK_COMPACT }, { "var", MARKUP_VAR, MUTYPE_FONT, 0 }, { "verbatim", MARKUP_VERBATIM, MUTYPE_SPECIAL, AMSK_ID|AMSK_TYPE }, }; void show_allowed_wiki_markup( void ){ int i; /* loop over allowedAttr */ for( i=1 ; i<=sizeof(aMarkup)/sizeof(aMarkup[0]) - 1 ; i++ ){ @ <%s(aMarkup[i].zName)> } } /* ** Use binary search to locate a tag in the aMarkup[] table. */ static int findTag(const char *z){ int i, c, first, last; first = 1; |
Changes to win/fossil.rc.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
FILESUBTYPE VFT2_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0"
BEGIN
VALUE "FileDescription", "distributed source code control system with integrated wiki and ticket-system\0"
VALUE "Comments", "compiler variant: "COMPILER_NAME"\0"
VALUE "FileVersion", MANIFEST_UUID"("COMPILER_NAME"\0"
VALUE "InternalName", "fossil\0"
VALUE "LegalCopyright", "Copyright (c) "MANIFEST_YEAR" D. Richard Hipp\0"
VALUE "OriginalFilename", "fossil.exe\0"
VALUE "ProductName", "fossil\0"
VALUE "ProductVersion", MANIFEST_VERSION" "MANIFEST_DATE" UTC\0"
END
|
| |
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904B0" BEGIN VALUE "FileDescription", "distributed source code control system with integrated wiki and ticket-system\0" VALUE "Comments", "compiler: "COMPILER_NAME"\0" VALUE "FileVersion", MANIFEST_UUID"("COMPILER_NAME"\0" VALUE "InternalName", "fossil\0" VALUE "LegalCopyright", "Copyright (c) "MANIFEST_YEAR" D. Richard Hipp\0" VALUE "OriginalFilename", "fossil.exe\0" VALUE "ProductName", "fossil\0" VALUE "ProductVersion", MANIFEST_VERSION" "MANIFEST_DATE" UTC\0" END |