<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_web.git/users/lib, branch 0.1.1</title>
<subtitle>[leap_web] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/'/>
<entry>
<title>fixed login error message on wrong username</title>
<updated>2012-11-26T11:15:54+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-11-26T11:15:54+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=cdda8f095d49cdda94c3527ecb92cb15c300327b'/>
<id>cdda8f095d49cdda94c3527ecb92cb15c300327b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>identify user by id so rerendering the form does not use new invalid login</title>
<updated>2012-11-23T14:09:53+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-11-23T11:11:11+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=ee3c9146e4bbe93ec1f00ee45386a82ec4363c4d'/>
<id>ee3c9146e4bbe93ec1f00ee45386a82ec4363c4d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>beautify login workflow</title>
<updated>2012-11-22T12:05:32+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-11-22T12:05:32+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=6d5f8d0f993093b51d1f11bb528c535dcf88a969'/>
<id>6d5f8d0f993093b51d1f11bb528c535dcf88a969</id>
<content type='text'>
* translating error messages
* not caching login and password in js anymore
* catching non responses
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* translating error messages
* not caching login and password in js anymore
* catching non responses
</pre>
</div>
</content>
</entry>
<entry>
<title>seperated the warden classes from the initializer</title>
<updated>2012-11-09T15:45:54+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-11-09T15:45:54+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=5b300b554682c232c0955bdb0dd3d8263dde901e'/>
<id>5b300b554682c232c0955bdb0dd3d8263dde901e</id>
<content type='text'>
also commented the sessions controller test a bit and fixed it
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also commented the sessions controller test a bit and fixed it
</pre>
</div>
</content>
</entry>
<entry>
<title>using rails_warden bit of refactoring</title>
<updated>2012-10-30T13:42:04+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-30T13:42:04+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=bcc0f11caeef1b09712b9b62e1607237885d1af5'/>
<id>bcc0f11caeef1b09712b9b62e1607237885d1af5</id>
<content type='text'>
without rails_warden the failure app action was not getting set properly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
without rails_warden the failure app action was not getting set properly.
</pre>
</div>
</content>
</entry>
<entry>
<title>adding in warden with a basic strategy</title>
<updated>2012-10-30T11:32:10+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-30T11:32:10+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=194e924cb7c36eafa01b68c74774505e170e47ac'/>
<id>194e924cb7c36eafa01b68c74774505e170e47ac</id>
<content type='text'>
currently failing because we are not setting the content-type header.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
currently failing because we are not setting the content-type header.
</pre>
</div>
</content>
</entry>
<entry>
<title>moved core dependency into */Gemfile with :path</title>
<updated>2012-10-11T08:22:34+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-11T08:22:34+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=add8d015c87a00626b739080bd75c7e7aeb9c1df'/>
<id>add8d015c87a00626b739080bd75c7e7aeb9c1df</id>
<content type='text'>
In order to get the rails generators and the like to work properly in engines we need to require all the dependencies in the engine.rb file.

Since I want to keep that list of engines in a centralized place we still need core and we need to require it from the other engines.

We don't want to require the core gem to be installed so I added it with :path option to the Gemfile.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In order to get the rails generators and the like to work properly in engines we need to require all the dependencies in the engine.rb file.

Since I want to keep that list of engines in a centralized place we still need core and we need to require it from the other engines.

We don't want to require the core gem to be installed so I added it with :path option to the Gemfile.
</pre>
</div>
</content>
</entry>
<entry>
<title>first steps at reducing core</title>
<updated>2012-10-11T08:15:40+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-10T17:56:35+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=00b7b36516d1d07300870029ad5190f06122a493'/>
<id>00b7b36516d1d07300870029ad5190f06122a493</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>added in leap web users - one repo to rule them all</title>
<updated>2012-09-27T20:39:08+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2012-09-27T20:39:08+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=ebbfe3d77efddbe8f97fa82c171632ac4cfcf6da'/>
<id>ebbfe3d77efddbe8f97fa82c171632ac4cfcf6da</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
