<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chouette-core/app/views/layouts, branch master</title>
<subtitle>Chouette manage transport static data</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/'/>
<entry>
<title>Refs #7118; Fix collapsible menus</title>
<updated>2018-05-24T00:43:02+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-05-22T15:08:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=237992d7829294ed254436d8d1805a8d5ccbb26a'/>
<id>237992d7829294ed254436d8d1805a8d5ccbb26a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the place of configuration links in the left menu</title>
<updated>2018-05-17T14:54:37+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2018-05-17T14:54:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=571efb2ee2b76ec4a752e1468526340beea41135'/>
<id>571efb2ee2b76ec4a752e1468526340beea41135</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6961; Update Workbench#edit</title>
<updated>2018-05-09T08:19:33+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-05-09T08:19:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=64933b6903583b585f7de5bc391a9ab2ade1c6a7'/>
<id>64933b6903583b585f7de5bc391a9ab2ade1c6a7</id>
<content type='text'>
- Update the form
- Use policies and update the seeds accordingly
- Add a link in the navbar(s)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Update the form
- Use policies and update the seeds accordingly
- Add a link in the navbar(s)
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6960; Add a view to set the controls associated to each workbench</title>
<updated>2018-05-07T14:57:22+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-05-07T14:57:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=430550b965035be3d78abad790e6c44fdc69087f'/>
<id>430550b965035be3d78abad790e6c44fdc69087f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add Chouette favicon</title>
<updated>2018-04-27T15:32:03+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-27T15:32:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=ae387752e9ae26a296b5d1a016cd3b53bf7f298c'/>
<id>ae387752e9ae26a296b5d1a016cd3b53bf7f298c</id>
<content type='text'>
Adds a favicon to the site to respond to these errors:

    ActionController::RoutingError (No route matches [GET] "/favicon.ico"):

Using `favicon_link_tag` allows us to get the image from the asset
pipeline, which makes it easier to update if necessary, since browsers
tend to cache the default `/favicon.ico` indeterminably (source:
http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html#method-i-favicon_link_tag).

According to some Stack Overflow posts I've been reading, it looks like
it's advisable to put the `favicon.ico` file in both `/assets/images/`
and `/public/`:
- https://stackoverflow.com/questions/15687506/actioncontrollerroutingerror-no-route-matches-get-favicon-ico-in-rails#15688041
- https://stackoverflow.com/questions/11071445/favicon-in-ruby-on-rails-application

This way, you can serve the favicon from the asset pipeline, but if any
requesters try to get `/favicon.ico`, the server will respond with the
image instead of an error.

To be honest, when I was testing locally, I couldn't get the icon in
`/public` to display, both without a `link` tag and with the following
`link` tag:

    / application.html.slim
    / ...
    link href='/favicon.ico' rel='shortcut icon'

As a result, I'm adding the image to `/public` with fingers crossed that
it's going to work if requested.

I generated the `favicon.ico` file with a 256x256px PNG supplied by
Cyrielle in the Redmine ticket and the following ImageMagick command:

    $ convert -resize x16 -gravity center -crop 16x16+0+0 \
        Logo_Chouette-256x256.png -flatten -colors 256 favicon.ico

(Copied from:
https://stackoverflow.com/questions/3185677/converting-gifs-pngs-and-jpgs-to-ico-files-using-imagemagick)

Refs #6627
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds a favicon to the site to respond to these errors:

    ActionController::RoutingError (No route matches [GET] "/favicon.ico"):

Using `favicon_link_tag` allows us to get the image from the asset
pipeline, which makes it easier to update if necessary, since browsers
tend to cache the default `/favicon.ico` indeterminably (source:
http://api.rubyonrails.org/classes/ActionView/Helpers/AssetTagHelper.html#method-i-favicon_link_tag).

According to some Stack Overflow posts I've been reading, it looks like
it's advisable to put the `favicon.ico` file in both `/assets/images/`
and `/public/`:
- https://stackoverflow.com/questions/15687506/actioncontrollerroutingerror-no-route-matches-get-favicon-ico-in-rails#15688041
- https://stackoverflow.com/questions/11071445/favicon-in-ruby-on-rails-application

This way, you can serve the favicon from the asset pipeline, but if any
requesters try to get `/favicon.ico`, the server will respond with the
image instead of an error.

To be honest, when I was testing locally, I couldn't get the icon in
`/public` to display, both without a `link` tag and with the following
`link` tag:

    / application.html.slim
    / ...
    link href='/favicon.ico' rel='shortcut icon'

As a result, I'm adding the image to `/public` with fingers crossed that
it's going to work if requested.

I generated the `favicon.ico` file with a 256x256px PNG supplied by
Cyrielle in the Redmine ticket and the following ImageMagick command:

    $ convert -resize x16 -gravity center -crop 16x16+0+0 \
        Logo_Chouette-256x256.png -flatten -colors 256 favicon.ico

(Copied from:
https://stackoverflow.com/questions/3185677/converting-gifs-pngs-and-jpgs-to-ico-files-using-imagemagick)

Refs #6627
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6572; New Referential#Show for noredy referentials</title>
<updated>2018-04-27T09:17:19+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-18T11:19:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=f7fe4c24e29ceb517abdda66899952a5d6aa73bf'/>
<id>f7fe4c24e29ceb517abdda66899952a5d6aa73bf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add layout for devise views, Fix i18n on menu, Delete unused elements Refs #6545 @1</title>
<updated>2018-04-19T07:31:18+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2018-04-18T13:55:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=14f30a9b84da9d93219aa9e9759f93ef71ab3c7f'/>
<id>14f30a9b84da9d93219aa9e9759f93ef71ab3c7f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Disable workgroup offer link. Keep time tables and purchase windows for referential links. Capitalize Line/Network/Company/StopArea links. Refs #6545</title>
<updated>2018-04-18T20:41:35+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2018-04-18T20:41:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=e5b11ab69698502c1642652e3c1249c2abd573b2'/>
<id>e5b11ab69698502c1642652e3c1249c2abd573b2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use config/locales/zzz-stif.yml to store STIF i18n values. Refs #6545</title>
<updated>2018-04-18T20:40:07+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2018-04-18T20:39:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=10ac46e2d829d24ce3cac3a0ca84801bb09e6f31'/>
<id>10ac46e2d829d24ce3cac3a0ca84801bb09e6f31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add generic navbar and fix codifligne, reflex navigation Refs #6545 @8</title>
<updated>2018-04-15T13:04:30+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2018-04-15T13:04:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=af36cb9b844760adb26863bb4d9c3c55209557a9'/>
<id>af36cb9b844760adb26863bb4d9c3c55209557a9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
