<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_web.git/engines/support/app/helpers, branch master</title>
<subtitle>[leap_web] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/'/>
<entry>
<title>bugfix: test user properly in auto_new_ticket_path</title>
<updated>2016-05-12T11:00:54+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=c52d6bb25702fafb60bf9d8dfb9c1afbd77062c0'/>
<id>c52d6bb25702fafb60bf9d8dfb9c1afbd77062c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>added support for email notifications of ticket changes</title>
<updated>2015-04-30T07:32:33+00:00</updated>
<author>
<name>elijah</name>
<email>elijah@riseup.net</email>
</author>
<published>2015-04-30T07:32:33+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=63871baf6061668b162972193c55b5a8f7490797'/>
<id>63871baf6061668b162972193c55b5a8f7490797</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>only use user ticket(s) path for real users</title>
<updated>2014-07-09T20:02:54+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-07-09T20:02:54+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=ace262b61703318d377752c863c48ac3f880f7e6'/>
<id>ace262b61703318d377752c863c48ac3f880f7e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>minor: cleanup some links</title>
<updated>2014-07-09T11:26:36+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-07-05T11:10:50+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=9d83092405745f6d1b07a57fd8d2aa8e9bffd9fa'/>
<id>9d83092405745f6d1b07a57fd8d2aa8e9bffd9fa</id>
<content type='text'>
only submit the params that differ from the defaults
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
only submit the params that differ from the defaults
</pre>
</div>
</content>
</entry>
<entry>
<title>make link_to_navigation more generic and reuse it</title>
<updated>2014-07-05T09:54:11+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-07-05T09:41:43+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=bdb4b0e275c205b0b44bbe3cc4ec4c162b309b37'/>
<id>bdb4b0e275c205b0b44bbe3cc4ec4c162b309b37</id>
<content type='text'>
Use link_to_navigation for all important navigation items. It creates a link in a list item for use with bootstrap. It supports an :active flag and an :icon option in the html_options now. It also translates the label. This way it can be used in a lot of places as the generic navigation link.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use link_to_navigation for all important navigation items. It creates a link in a list item for use with bootstrap. It supports an :active flag and an :icon option in the html_options now. It also translates the label. This way it can be used in a lot of places as the generic navigation link.
</pre>
</div>
</content>
</entry>
<entry>
<title>tickets: structure i18n</title>
<updated>2014-05-26T11:00:05+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-05-22T12:57:29+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=19bce0f114180f355f0df367cf6d21bd957734a6'/>
<id>19bce0f114180f355f0df367cf6d21bd957734a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>return nil as auto_ticket_path for invalid tickets</title>
<updated>2014-04-24T18:36:11+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-22T12:39:43+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=c275f43147e7a8ab54623bdc5b9a8124b8592330'/>
<id>c275f43147e7a8ab54623bdc5b9a8124b8592330</id>
<content type='text'>
The auto_ticket_path is referenced from the tickets_controller like this:
     respond_with(@ticket, :location =&gt; auto_ticket_path(@ticket))
While this only uses the location parameter when the ticket is valid it will still attampt to calculate it if not. During the create action this will lead to crashes because the ticket_path can not be calculated for a ticket without an id.

This led to https://leap.se/code/issues/5552 and probably
https://leap.se/code/issues/5545.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The auto_ticket_path is referenced from the tickets_controller like this:
     respond_with(@ticket, :location =&gt; auto_ticket_path(@ticket))
While this only uses the location parameter when the ticket is valid it will still attampt to calculate it if not. During the create action this will lead to crashes because the ticket_path can not be calculated for a ticket without an id.

This led to https://leap.se/code/issues/5552 and probably
https://leap.se/code/issues/5545.
</pre>
</div>
</content>
</entry>
<entry>
<title>move engines into engines directory</title>
<updated>2014-04-11T08:07:23+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-11T08:03:19+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=636692f9921bd695d726695d2d46c91f5a6e56f3'/>
<id>636692f9921bd695d726695d2d46c91f5a6e56f3</id>
<content type='text'>
Also renamed help to support so it's harder to confuse it with documentation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also renamed help to support so it's harder to confuse it with documentation
</pre>
</div>
</content>
</entry>
</feed>
