<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_web.git/engines/support/app, branch master</title>
<subtitle>[leap_web] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/'/>
<entry>
<title>upgrade: simple_form to bootstrap 3</title>
<updated>2017-03-27T08:39:26+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2017-03-24T11:08:50+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=b1b523f08a9ce7ea5fe0d50dc8b86995e00b48d6'/>
<id>b1b523f08a9ce7ea5fe0d50dc8b86995e00b48d6</id>
<content type='text'>
* reran the simple form initializer.
* wrapped submit buttons are now broken and need a fix.
* disabled confirmation validation in client side validations as the
  error message always is attached to the wrong field.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* reran the simple form initializer.
* wrapped submit buttons are now broken and need a fix.
* disabled confirmation validation in client side validations as the
  error message always is attached to the wrong field.
</pre>
</div>
</content>
</entry>
<entry>
<title>upgrade: rails4.2 deprecated deliver -&gt; deliver now</title>
<updated>2017-03-21T09:50:29+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2017-03-21T09:50:29+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=806e10b4a359f15e4580139fa063f7658d777717'/>
<id>806e10b4a359f15e4580139fa063f7658d777717</id>
<content type='text'>
fixes #16
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #16
</pre>
</div>
</content>
</entry>
<entry>
<title>bugfix: handle missing params for ticket gracefully</title>
<updated>2016-11-21T10:52:47+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-11-21T10:52:39+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=9e9c69c1357882d4221d1c511c3c7f6b36c094cc'/>
<id>9e9c69c1357882d4221d1c511c3c7f6b36c094cc</id>
<content type='text'>
This used to trigger a 500.

Fixes #8395
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This used to trigger a 500.

Fixes #8395
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix db:migrate and similar tasks</title>
<updated>2016-07-05T06:56:05+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-07-04T18:19:21+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=638acc59a241e141cf0fc9ccbf4e3c5578b98f0c'/>
<id>638acc59a241e141cf0fc9ccbf4e3c5578b98f0c</id>
<content type='text'>
We saw errors from duplicate loading of LocalEmail and
LoginFormatValidation. The latter resulted in a crash.

In an attempt to ensure all subclasses of Couchrest::Model::Base are
loaded Couchrest::Model::Utils::Migrate requires all files in app/models.
We have an extension that does the same for the engines.

During this process LoginFormatValidation and LocalEmail were autoloaded
when 'identity' was required. Afterwards they were required again.
It looks like rails' autoload mechanism does not play nicely with require.

So to make sure they are not autoloaded first move the concerns and
helper classes into the lib directory and require them explicitly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We saw errors from duplicate loading of LocalEmail and
LoginFormatValidation. The latter resulted in a crash.

In an attempt to ensure all subclasses of Couchrest::Model::Base are
loaded Couchrest::Model::Utils::Migrate requires all files in app/models.
We have an extension that does the same for the engines.

During this process LoginFormatValidation and LocalEmail were autoloaded
when 'identity' was required. Afterwards they were required again.
It looks like rails' autoload mechanism does not play nicely with require.

So to make sure they are not autoloaded first move the concerns and
helper classes into the lib directory and require them explicitly.
</pre>
</div>
</content>
</entry>
<entry>
<title>make ticket tests pass without network connection</title>
<updated>2016-05-22T19:14:45+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-05-22T19:11:48+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=b851fe2fd6e0029df81976b647ede7190a1fd547'/>
<id>b851fe2fd6e0029df81976b647ede7190a1fd547</id>
<content type='text'>
MX validations relied on network connection. Only using them
in production environment now. I want to be able to develop and
test when disconnected.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MX validations relied on network connection. Only using them
in production environment now. I want to be able to develop and
test when disconnected.
</pre>
</div>
</content>
</entry>
<entry>
<title>ensure invalid user ids still render the ticket form</title>
<updated>2016-05-14T08:47:35+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-05-13T14:23:10+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=a1b494e334406660a1f49fb7de9b043493809640'/>
<id>a1b494e334406660a1f49fb7de9b043493809640</id>
<content type='text'>
We still have strange urls requested like
 /pt/users/AnonymousUser.../tickets/new

Not sure where they are coming from - but this should make sure we
respond with sth. meaningful instead of erroring out.

Conflicts:
	app/views/layouts/_content.html.haml
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We still have strange urls requested like
 /pt/users/AnonymousUser.../tickets/new

Not sure where they are coming from - but this should make sure we
respond with sth. meaningful instead of erroring out.

Conflicts:
	app/views/layouts/_content.html.haml
</pre>
</div>
</content>
</entry>
<entry>
<title>bugfix: test user properly in auto_new_ticket_path</title>
<updated>2016-05-02T11:31:18+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-03-26T18:59:12+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=6117518350847e83e5b0e79cb206b03ff99d6ee2'/>
<id>6117518350847e83e5b0e79cb206b03ff99d6ee2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>upgrade: use bootstrap3 row and col-md-*</title>
<updated>2016-05-02T11:31:17+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-03-26T16:36:37+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=de8f3e532d857ec64a9ba17bf9e5a4de272a6cbd'/>
<id>de8f3e532d857ec64a9ba17bf9e5a4de272a6cbd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>upgrade: remove references to RestClient</title>
<updated>2016-05-02T11:21:52+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2016-03-23T20:48:52+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=065859b90cc5ef403b8f47bd5394b343e556cc4d'/>
<id>065859b90cc5ef403b8f47bd5394b343e556cc4d</id>
<content type='text'>
CouchRest &gt; 1.2 does not use RestClient anymore. So we should not try to
catch its errors.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CouchRest &gt; 1.2 does not use RestClient anymore. So we should not try to
catch its errors.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix ticket display bug</title>
<updated>2016-01-16T22:51:57+00:00</updated>
<author>
<name>elijah</name>
<email>elijah@riseup.net</email>
</author>
<published>2016-01-16T22:51:57+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=d1d30498055bf5323a48c2cc111783c70fee7568'/>
<id>d1d30498055bf5323a48c2cc111783c70fee7568</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
