<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/test, branch rel-2-22</title>
<subtitle>Git mirror of the Scintilla editor component. Referenced by the SciTECO repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/'/>
<entry>
<title>Fix for bug #3058924 wrong highlighting for float literals containing +/-.</title>
<updated>2010-09-04T01:42:59+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-09-04T01:42:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=fb48043b783cb07177491c78b3962cda9fc97b0a'/>
<id>fb48043b783cb07177491c78b3962cda9fc97b0a</id>
<content type='text'>
Tests added for example numeric literals.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tests added for example numeric literals.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added test for bug #3038381.</title>
<updated>2010-08-03T23:48:30+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-08-03T23:48:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=fa2372442c4fa5ea05f983062f5ccedb95fa6937'/>
<id>fa2372442c4fa5ea05f983062f5ccedb95fa6937</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added more style setting, using byte strings as that matches API.</title>
<updated>2010-08-03T23:44:08+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-08-03T23:44:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=9f57d042fa2cc70e0261b8445beb6e7295860c7d'/>
<id>9f57d042fa2cc70e0261b8445beb6e7295860c7d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for bug #3017572 FindText crashes with empty text</title>
<updated>2010-06-18T01:01:56+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-06-18T01:01:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=d06051d3033a2ecffca877be796c04c004e739a5'/>
<id>d06051d3033a2ecffca877be796c04c004e739a5</id>
<content type='text'>
Always return start position when search text is empty.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Always return start position when search text is empty.
</pre>
</div>
</content>
</entry>
<entry>
<title>Whitespace.</title>
<updated>2010-06-05T00:21:25+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-06-05T00:21:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=e55cd74a6530156b7a578e482478be7569b4d9a5'/>
<id>e55cd74a6530156b7a578e482478be7569b4d9a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added SCI_GETTAG.</title>
<updated>2010-03-26T06:31:57+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-26T06:31:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=c6de3de1530c4bd4067cd6533de4a3a8c4092a5c'/>
<id>c6de3de1530c4bd4067cd6533de4a3a8c4092a5c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>New case insensitive searching implementation uses objects implementing</title>
<updated>2010-03-25T12:10:59+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-25T12:10:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=374db89c1efb33ef9a169fd7d26ceda068a07d12'/>
<id>374db89c1efb33ef9a169fd7d26ceda068a07d12</id>
<content type='text'>
the CaseFolder interface to fold both search text and document text
so they can be compared with a simple strcmp.
A simple table based folder CaseFolderTable is used for 8 bit encodings
and maps input bytes to folded bytes. For multi-byte encodings
except for UTF-8 a null (output same as input) CaseFolderTable is used.
For UTF-8, more complex subclasses are used which call platform APIs
to perform the folding.
Folding is approximately to lower case although this differs between
platforms.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the CaseFolder interface to fold both search text and document text
so they can be compared with a simple strcmp.
A simple table based folder CaseFolderTable is used for 8 bit encodings
and maps input bytes to folded bytes. For multi-byte encodings
except for UTF-8 a null (output same as input) CaseFolderTable is used.
For UTF-8, more complex subclasses are used which call platform APIs
to perform the folding.
Folding is approximately to lower case although this differs between
platforms.
</pre>
</div>
</content>
</entry>
<entry>
<title>Upper and lower casing now works on non-ASCII characters.</title>
<updated>2010-03-23T05:36:57+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-23T05:36:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=7eeabefc7dc4324ce78324d801c496d099520832'/>
<id>7eeabefc7dc4324ce78324d801c496d099520832</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for bug #2959876 Regular expression replace cannot escape \\</title>
<updated>2010-02-28T08:25:17+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-02-28T08:25:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=56b3b3e10388a4adf8f6c952caa6e94546c912e2'/>
<id>56b3b3e10388a4adf8f6c952caa6e94546c912e2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Better coverage display.</title>
<updated>2010-01-31T07:20:04+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-01-31T07:20:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=4aba35c99ceb511235086b9bc640daf6684e57bc'/>
<id>4aba35c99ceb511235086b9bc640daf6684e57bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
