<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Computer-Chess Wiki Forum</title>
<link>http://www.computer-chess.org/forum/</link>
<description>Computer-Chess Discussion Forum</description>
<language>en</language>
<item>
<title>FEN diagrams added</title>
<content:encoded><![CDATA[<p><em>Reply by Ron, Thursday, May 21, 2009, 00:09:</em></p><p><p>It's the same syntax as in CCC Forum where you put an uppercase or lowercase 'D' surrounded by square brackets, followed by the fen position.</p>
<p>Like this: [D] rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq -</p>
<p>or this:<br />
[d]rnbqk2r/ppp2ppp/3p1n2/2b1p3/3PP3/2N2P2/PPP1N1PP/R1BQKB1R b KQkq d3</p>
<p>A big 'thank you' to my son who puzzled out how BBCode parses its strings and how to hook into the BBCode syntax-parsing tree.<br />
===============================================</p>
<p>My remaining TODO list for the forum (after the bugfixing):<br />
- add some more smileys, especially a thumbs-up one that I like<br />
- add a button for 'code' with a drop-down of supported languages</p>
<p>If anyone wants a particular feature, just ask, and I will work on it next. Be advised that it might take a month or more...</p>
<p>Ron</p>
</p>]]></content:encoded>
<link>http://www.computer-chess.org/forum/index.php?id=178</link>
<guid>http://www.computer-chess.org/forum/index.php?id=178</guid>
<pubDate>Thu, 21 May 2009 00:09:43 +0000</pubDate>
<category>General</category>
<dc:creator>Ron</dc:creator>
</item>
<item>
<title>Syntax-coloring for programming languages added</title>
<content:encoded><![CDATA[<p><em>Reply by Ron, Sunday, April 05, 2009, 20:47:</em></p><p><p>For programmers, I added language syntax-coloring<br />
(using Geshi: <a href="http://sourceforge.net/projects/geshi/">http://sourceforge.net/projects/geshi/</a> )</p>
<p>Example:<br />
[code=c]</p>
<p>// yet another 'Hello World' program<br />
#include &lt;stdio.h&gt;</p>
<p>int main(int argc, char **argv)<br />
{<br />
    int i;</p>
<p>    for (i = 0; i &lt; 10; i++)<br />
    { <br />
        printf (&quot;Hello World!\n&quot;);<br />
    }<br />
    return 0;<br />
}<br />
[/code]</p>
<p>The CCW Forum supports the following languages:<br />
c, cpp, csharp, css, delphi, html, html4strict, java, java5, javascript, lisp, perl, php, sql, and xml.</p>
<p><br />
To syntax-color C++ code, do this:<br />
[code=none][code=cpp]<br />
...[/code][/code]</p>
<p><br />
For C# highlighting use:<br />
[code=none][code=csharp]<br />
...[/code][/code]</p>
<p><br />
If you prefer your code with no coloring use 'monospace' or:<br />
[code=none][code=none]<br />
...[/code][/code]</p>
<p><br />
If you want me to add another language, just ask for it. (Geshi syntax-colors more than 100 languages so all I have to do is upload the appropriate language file.) If you want to experiment posting various code snippets, add them to this thread and I will periodically delete old posts if the thread gets too big.</p>
<p>My TODO list:<br />
- add a button for 'code' with a drop-down of supported languages<br />
- allow posting of FEN diagrams</p>
<p>If anyone wants a particular feature, just ask, and I will work on it next. Be advised that it might take a month or more...</p>
<p>Ron</p>
</p>]]></content:encoded>
<link>http://www.computer-chess.org/forum/index.php?id=109</link>
<guid>http://www.computer-chess.org/forum/index.php?id=109</guid>
<pubDate>Sun, 05 Apr 2009 20:47:46 +0000</pubDate>
<category>General</category>
<dc:creator>Ron</dc:creator>
</item>
<item>
<title>List of all BBCodes supported on this site</title>
<content:encoded><![CDATA[<p><em>Posting by Ron, Friday, March 13, 2009, 17:41:</em></p><p><p>Examples:</p>
<p><strong>bold text</strong><br />
<em>italic text</em><br />
<span style="color:#f00;">red text (other colors are possible)</span><br />
<strong><span style="color:#00f;"><em>bold blue italic text</em></span></strong><br />
<span style="font-size:large;">large text</span><br />
<span style="font-size:smaller;">small text</span><br />
<code class="monospace">monospace</code><br />
<code class="monospace"><span style="color:#f00;"><strong>monospace red bold</strong></span></code><br />
<img src="images/smilies/smile.png" alt=":-)" /> smiley<br />
[img]http://computer-chess.org/forum/favicon.ico[/img]<br />
[link=http://computer-chess.org/forum/]this is a link to CCW Forum[/link]</p>
<p>You can also show source code using [ code=none ] [/code] (without the spaces inside the square brackets). The text shown below is a 'code=none' block to enable showing the commands. Here is the information as I entered it:</p>
<p>[code=none]<br />
<strong>bold text</strong><br />
<em>italic text</em><br />
<span style="color:#f00;">red text (other colors are possible)</span><br />
<strong><span style="color:#00f;"><em>bold blue italic text</em></span></strong><br />
<span style="font-size:large;">large text</span><br />
<span style="font-size:smaller;">small text</span><br />
<code class="monospace">monospace</code><br />
<code class="monospace"><strong>monospace bold</strong></code><br />
<img src="images/smilies/smile.png" alt=":-)" /> smiley<br />
[img]http://computer-chess.org/forum/favicon.ico[/img]<br />
[link=http://computer-chess.org/forum/]this is a link to CCW Forum[/link]<br />
[/code]</p>
<p>If you use [ code ] [/code] the forum displays a blue monospaced font. There is also [ inlinecode ] [/inlinecode]. The difference from [ code ] is code falls inline rather than skipping a line first. So you can have <code> printf(&quot;Hello World\n&quot;);</code> in the middle of a sentence. The inline code is always shown in monospaced blue.</p>
<p><span style="font-size:large;">How to post a table</span><br />
[code=none]<br />
<code class="monospace"><br />
|&nbsp; 1 | Hamsters 0.71&nbsp; &nbsp; &nbsp; | 19.5 / 25 |&nbsp; &nbsp; &nbsp; &nbsp; |<br />
|&nbsp; 2 | Tao 5.60&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| 19.0 / 25 |&nbsp; &nbsp; &nbsp; &nbsp; |<br />
|&nbsp; 3 | Baron 2.23&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| 17.0 / 25 | 206.75 |<br />
|&nbsp; 4 | Cyrano 0.60b17ja&nbsp; &nbsp;| 17.0 / 25 | 195.75 |</code></p>
<p><code class="monospace">|&nbsp; 5 | Sloppy 0.2.0ja&nbsp; &nbsp; &nbsp;| 15.5 / 25 |&nbsp; &nbsp; &nbsp; &nbsp; |<br />
|&nbsp; 6 | Yace 0.9987&nbsp; &nbsp; &nbsp; &nbsp; | 14.5 / 25 | 170.50 |<br />
|&nbsp; 7 | Danasah 3.97b&nbsp; &nbsp; &nbsp; | 14.5 / 25 | 169.00 |<br />
|&nbsp; 8 | LGEvolution 1.0018 | 14.0 / 25 | 163.00 |<br />
|&nbsp; 9 | FrancescaMad 0.13&nbsp; | 14.0 / 25 | 159.50 |<br />
| 10 | Abrok 5.00&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;| 12.0 / 25 | 149.00 |<br />
| 11 | Chronos 1.95&nbsp; &nbsp; &nbsp; &nbsp;| 12.0 / 25 | 146.50 |<br />
| 12 | Dragon 4.60&nbsp; &nbsp; &nbsp; &nbsp; | 11.5 / 25 | 136.25 |<br />
| 13 | Nejmet 3.07&nbsp; &nbsp; &nbsp; &nbsp; | 11.5 / 25 | 131.75 |<br />
| 14 | Gromit 3.082&nbsp; &nbsp; &nbsp; &nbsp;| 11.0 / 25 | 130.75 |<br />
| 15 | Anatoli 0.35k&nbsp; &nbsp; &nbsp; | 11.0 / 25 | 123.25 |<br />
| 16 | SmarThink 0.17a&nbsp; &nbsp; | 11.0 / 25 | 114.25 |<br />
| 17 | KnightDreamer 3.20 | 10.5 / 25 | 126.00 |<br />
| 18 | Pepito 1.59&nbsp; &nbsp; &nbsp; &nbsp; | 10.5 / 25 | 122.50 |<br />
| 19 | Arasan 11.20&nbsp; &nbsp; &nbsp; &nbsp;| 10.5 / 25 | 120.00 |<br />
| 20 | Gosu 0.16&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | 10.0 / 25 | 110.25 |</code></p>
<p><code class="monospace">| 21 | Amyan 1.597&nbsp; &nbsp; &nbsp; &nbsp; | 10.0 / 25 | 104.50 |<br />
| 22 | GreenLight 3.0122&nbsp; |&nbsp; 9.5 / 25 |&nbsp; &nbsp; &nbsp; &nbsp; |<br />
| 23 | Quark 2.35&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|&nbsp; 8.0 / 25 |&nbsp; &nbsp; &nbsp; &nbsp; |<br />
| 24 | Bruja 1.90ja&nbsp; &nbsp; &nbsp; &nbsp;|&nbsp; 6.0 / 25 |&nbsp; &nbsp; &nbsp; &nbsp; |<br />
</code><br />
[/code]<br />
Use spaces only (no tab characters). Preview the table and make sure everything is lined up nice. Last add any color or bold/italic tags, but don't cross the pipe boundaries (pipe char is '|'). The extra tags takes up no room in the final displayed table. Preview again and, if you are satisfied, submit it.</p>
</p>]]></content:encoded>
<link>http://www.computer-chess.org/forum/index.php?id=55</link>
<guid>http://www.computer-chess.org/forum/index.php?id=55</guid>
<pubDate>Fri, 13 Mar 2009 17:41:20 +0000</pubDate>
<category>General</category>
<dc:creator>Ron</dc:creator>
</item>
</channel>
</rss>