<feed xmlns='http://www.w3.org/2005/Atom'>
<title>scintilla-mirror/win32/ScintillaWin.cxx, branch rel-2-12</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>EOL conversion for drop. Fixes bug #3005328.</title>
<updated>2010-05-21T23:53:50+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-05-21T23:53:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=1767f2c120f36700359d53730ad83873cf301a9d'/>
<id>1767f2c120f36700359d53730ad83873cf301a9d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Made method const.</title>
<updated>2010-05-11T03:37:09+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-05-11T03:37:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=982df145bd644e80dfe09c5f0990b3e68e66b218'/>
<id>982df145bd644e80dfe09c5f0990b3e68e66b218</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bug #2995278 minor fixes to typos and types.</title>
<updated>2010-05-02T00:06:01+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-05-02T00:06:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=cd6d44de2ad5b93909c50db3cf467821db392f75'/>
<id>cd6d44de2ad5b93909c50db3cf467821db392f75</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Made Scintilla.h compatible with the C language when stdbool.h not included.</title>
<updated>2010-04-07T23:07:40+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-04-07T23:07:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=e1bd04b8595cbfa379f26b1ade6985ccc77f8f19'/>
<id>e1bd04b8595cbfa379f26b1ade6985ccc77f8f19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed dead code.</title>
<updated>2010-04-07T01:09:13+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-04-07T01:09:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=86ad2634f417e669a8878b29cb885be66d10eba8'/>
<id>86ad2634f417e669a8878b29cb885be66d10eba8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<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>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>Implemented multipaste as an option.</title>
<updated>2010-03-11T10:21:29+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-11T10:21:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=e86a669c757e195237e44c5fd13786ce39acb3ac'/>
<id>e86a669c757e195237e44c5fd13786ce39acb3ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use allocated sizes rather than relying on 0 termination.</title>
<updated>2010-03-11T10:05:45+00:00</updated>
<author>
<name>nyamatongwe</name>
<email>devnull@localhost</email>
</author>
<published>2010-03-11T10:05:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.fmsbw.de/scintilla-mirror/commit/?id=ae0eb8311f8e25a20cdb48b13de972f504d3bc59'/>
<id>ae0eb8311f8e25a20cdb48b13de972f504d3bc59</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
