<feed xmlns='http://www.w3.org/2005/Atom'>
<title>nickserver.git, branch version/0.8</title>
<subtitle>[nickserver] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/'/>
<entry>
<title>travis: match production environment</title>
<updated>2016-04-10T17:25:10+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T17:22:58+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=08d24490ae51a29c1735957a678a6bf537a251b8'/>
<id>08d24490ae51a29c1735957a678a6bf537a251b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: try latest rubygems and bundler</title>
<updated>2016-04-10T17:07:42+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T17:07:42+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=55a186ccd49438ea95260e15ea2150e7845801c8'/>
<id>55a186ccd49438ea95260e15ea2150e7845801c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: downgrad rubygems to fix issue with bundler</title>
<updated>2016-04-10T17:06:18+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T17:06:18+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=8c4d18b8463bae1a5274cccc18b36ff401ebe5a8'/>
<id>8c4d18b8463bae1a5274cccc18b36ff401ebe5a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>minor tweaks to hkp response parsing</title>
<updated>2016-04-10T16:22:38+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T15:51:26+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=5f8f7aa5d283df7ed60145094005ce464660ec2c'/>
<id>5f8f7aa5d283df7ed60145094005ce464660ec2c</id>
<content type='text'>
Only parse responses that have status code 200 (OK).
Simplify status code handling a bit

Also profiled it to see if duplicate calculations matter.
They don't (2ms for validating 12 keys)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only parse responses that have status code 200 (OK).
Simplify status code handling a bit

Also profiled it to see if duplicate calculations matter.
They don't (2ms for validating 12 keys)
</pre>
</div>
</content>
</entry>
<entry>
<title>add test for 200 without matching keys</title>
<updated>2016-04-10T15:31:24+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T15:28:16+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=cc94af9d89e7ed076854782a30f7cd9de9e0ced6'/>
<id>cc94af9d89e7ed076854782a30f7cd9de9e0ced6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>deprecation: File.exists? -&gt; File.exist?</title>
<updated>2016-04-10T15:31:24+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T13:04:27+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=cc3e5dc31d18ef30455e2c63e0cf078e0905bdca'/>
<id>cc3e5dc31d18ef30455e2c63e0cf078e0905bdca</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bugfix: 404 if no key matches, fixes #6789</title>
<updated>2016-04-10T15:31:24+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T12:22:12+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=78f11d66a8521492a2fbca78c9e9c9e99ebc4a3e'/>
<id>78f11d66a8521492a2fbca78c9e9c9e99ebc4a3e</id>
<content type='text'>
I also separated the parsing of the hkp response from
FetchKeyInfo.

This way FetchKeyInfo has the EM specific code that has
sideeffects and the logic is in a class without sideeffects
and (almost) without state.

The only state we keep is the KeyInfo array that contains
all the information the server returns. This way we avoid
parsing the response multiple times.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I also separated the parsing of the hkp response from
FetchKeyInfo.

This way FetchKeyInfo has the EM specific code that has
sideeffects and the logic is in a class without sideeffects
and (almost) without state.

The only state we keep is the KeyInfo array that contains
all the information the server returns. This way we avoid
parsing the response multiple times.
</pre>
</div>
</content>
</entry>
<entry>
<title>lock down eventmachine version</title>
<updated>2016-04-10T10:08:49+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-10T10:08:49+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=8bf870a11aa713ac91b22d790c5fcb129734406e'/>
<id>8bf870a11aa713ac91b22d790c5fcb129734406e</id>
<content type='text'>
higher versions - namely 1.2.x caused ruby runtime crashes for me
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
higher versions - namely 1.2.x caused ruby runtime crashes for me
</pre>
</div>
</content>
</entry>
<entry>
<title>test: initial travis setup</title>
<updated>2016-04-10T10:06:06+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-04-08T06:25:25+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=6d28ca3687ffbd19169888458f7bafa3f3dfa57c'/>
<id>6d28ca3687ffbd19169888458f7bafa3f3dfa57c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add a sleep to restart. appears to finally resolve https://leap.se/code/issues/3526</title>
<updated>2014-11-24T23:41:31+00:00</updated>
<author>
<name>elijah</name>
<email>elijah@riseup.net</email>
</author>
<published>2014-11-24T23:41:31+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/nickserver.git/commit/?id=e99a9ec4582357f22fbdbc222edbe92ef6da6e72'/>
<id>e99a9ec4582357f22fbdbc222edbe92ef6da6e72</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
