<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chouette-core/app/assets/images, 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 #7161; Clean views and routes</title>
<updated>2018-05-30T14:29:33+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-05-29T13:51:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=63a277b88de6703dcf4f32508099def1e9cbca19'/>
<id>63a277b88de6703dcf4f32508099def1e9cbca19</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make favicon transparent and retina compatible</title>
<updated>2018-05-11T13:17:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-05-11T13:12:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=4a7959496287ecded189da4518757e63280ff93f'/>
<id>4a7959496287ecded189da4518757e63280ff93f</id>
<content type='text'>
Use a transparent background version of the favicon instead of setting
it on white as per the new requirements.

Include both 16x16 and 32x32 sizes to support retina displays.

I resized the `Logo_Chouette-256x256 transparent.png` logo in GIMP to
16x16 and 32x32 sizes using cubic interpolation. Then used Imagemagick
to create the ICO file:

    $ convert \
        Logo_Chouette-16x16\ transparent.png \
        Logo_Chouette-32x32\ transparent.png \
        favicon.ico

Refs #6627
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use a transparent background version of the favicon instead of setting
it on white as per the new requirements.

Include both 16x16 and 32x32 sizes to support retina displays.

I resized the `Logo_Chouette-256x256 transparent.png` logo in GIMP to
16x16 and 32x32 sizes using cubic interpolation. Then used Imagemagick
to create the ICO file:

    $ convert \
        Logo_Chouette-16x16\ transparent.png \
        Logo_Chouette-32x32\ transparent.png \
        favicon.ico

Refs #6627
</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>adding svg loader if isFetching</title>
<updated>2017-01-12T13:20:02+00:00</updated>
<author>
<name>jpl</name>
</author>
<published>2017-01-12T13:20:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=511c7e9195c1180095c95c5ea31146219a390377'/>
<id>511c7e9195c1180095c95c5ea31146219a390377</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename asset for new area_type</title>
<updated>2016-12-15T10:42:41+00:00</updated>
<author>
<name>Xinhui</name>
</author>
<published>2016-12-15T10:42:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=d70478af0ac8606723b313b86beaa611631646a2'/>
<id>d70478af0ac8606723b313b86beaa611631646a2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes header and footer to remove Chouette specific stuff. Refs #912</title>
<updated>2016-05-25T13:55:11+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2016-05-25T13:53:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=e30ce627fcd524eb616000d73f6a8450c08e1cba'/>
<id>e30ce627fcd524eb616000d73f6a8450c08e1cba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add route_sections for traces</title>
<updated>2015-12-16T09:02:29+00:00</updated>
<author>
<name>Bruno Perles</name>
</author>
<published>2015-12-16T09:02:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=013f4fa8fe9bb08f3ed1d15f905ca2a8437d6aa7'/>
<id>013f4fa8fe9bb08f3ed1d15f905ca2a8437d6aa7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move map images to the right repository /assets/images/map/</title>
<updated>2015-06-10T13:55:22+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2015-06-10T13:55:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=8de3f18adc6a8670cfc28d01629e1f3528dc3da8'/>
<id>8de3f18adc6a8670cfc28d01629e1f3528dc3da8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Restrict 'non digest' assets to OpenLayers assets (images/map/...)</title>
<updated>2015-05-27T15:06:27+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2015-05-27T15:06:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=b1190275607d9fb7f0f799b6bbd3de81c72b94b4'/>
<id>b1190275607d9fb7f0f799b6bbd3de81c72b94b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add favicon to chouette</title>
<updated>2015-02-09T12:46:22+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2015-02-09T12:46:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=85c1db258c11d660bc3e55e0229b1302aae1d02f'/>
<id>85c1db258c11d660bc3e55e0229b1302aae1d02f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
