<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/src, branch rel-2-10</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>NUL characters in text formats on clipboard terminate the text.</title>
<updated>2010-04-03T09:09:33+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-04-03T09:09:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=74688b8b08b5e8533cd758b34dc3d3929da8ea34'/>
<id>74688b8b08b5e8533cd758b34dc3d3929da8ea34</id>
<content type='text'>
This is a reversion to 2.03 behaviour because of other applications
using large clipboard allocations for small pieces of text.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a reversion to 2.03 behaviour because of other applications
using large clipboard allocations for small pieces of text.
</pre>
</div>
</content>
</entry>
<entry>
<title>Display bad Unicode bytes with a leading 'x' so form feed is distinguished</title>
<updated>2010-03-27T22:55:20+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-27T22:55:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=5df0dc8690578edc0a7f1d71f61807181423ec87'/>
<id>5df0dc8690578edc0a7f1d71f61807181423ec87</id>
<content type='text'>
from \xff.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
from \xff.
</pre>
</div>
</content>
</entry>
<entry>
<title>Detects more forms of bad UTF-8 including overlong sequences,</title>
<updated>2010-03-27T10:54:45+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-27T10:54:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=65e5d26507bf6c0a1902b28b2e4fde2334f69cd9'/>
<id>65e5d26507bf6c0a1902b28b2e4fde2334f69cd9</id>
<content type='text'>
surrogates, and characters outside the valid range.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
surrogates, and characters outside the valid range.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix warning.</title>
<updated>2010-03-27T04:07:15+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-27T04:07:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=123a3681bf621b950de15d60997c1d0aaf2faec0'/>
<id>123a3681bf621b950de15d60997c1d0aaf2faec0</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>Simplify code and use better variable names.</title>
<updated>2010-03-26T04:24:24+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-26T04:24:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=9d3b3ebfd5cc7f84e4afe5dc9ecab9d44055eee8'/>
<id>9d3b3ebfd5cc7f84e4afe5dc9ecab9d44055eee8</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>Support for Django's template language.</title>
<updated>2010-03-23T22:23:26+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-23T22:23:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=83f6510033d98712a774606cb834a540cef840cc'/>
<id>83f6510033d98712a774606cb834a540cef840cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed bug where isalpha was called on non-ASCII bytes causing error</title>
<updated>2010-03-23T06:15:55+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-23T06:15:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=e11f4cebbe7be9db3bca7a004e602f3120f30b0e'/>
<id>e11f4cebbe7be9db3bca7a004e602f3120f30b0e</id>
<content type='text'>
reports with Visual Studio.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
reports with Visual Studio.
</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>
</feed>
