<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chouette-core/app/views, branch 6863-workbench-show</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 #6863 Display import &amp; export actions on conditions</title>
<updated>2018-05-10T04:41:40+00:00</updated>
<author>
<name>cedricnjanga</name>
</author>
<published>2018-05-10T04:41:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=353ab119bb628947000ed57f740d3b380be057d3'/>
<id>353ab119bb628947000ed57f740d3b380be057d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix development toolbar</title>
<updated>2018-05-09T09:48:29+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-05-09T09:48:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=e054eca0a6e2ee928465aa076edc50e95590c952'/>
<id>e054eca0a6e2ee928465aa076edc50e95590c952</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6346; Fix other companies form</title>
<updated>2018-05-03T23:09:54+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-05-03T11:36:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=327084ca7fd23a5c9378c495c349047a97465b98'/>
<id>327084ca7fd23a5c9378c495c349047a97465b98</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #542 from af83/6627-add-chouette-favicon</title>
<updated>2018-05-02T13:48:26+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2018-05-02T13:48:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=db65c0ffc7ccc76a144689ec3db43fbc2e61ee82'/>
<id>db65c0ffc7ccc76a144689ec3db43fbc2e61ee82</id>
<content type='text'>
6627: Add Chouette favicon</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
6627: Add Chouette favicon</pre>
</div>
</content>
</entry>
<entry>
<title>Workbenches#show: Don't allow pending referentials to be selected</title>
<updated>2018-04-30T15:08:49+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-30T15:08:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=2fdcbb5a82c23bdaa7e23bd0b3108f404c1e44ea'/>
<id>2fdcbb5a82c23bdaa7e23bd0b3108f404c1e44ea</id>
<content type='text'>
Disable the checkboxes next to pending referentials. This prevents them
from being deleted by the batch deletion operation.

In general it seems like we shouldn't be operating on pending
referentials, so if any new batch actions are added, it would make sense
to me for the checkboxes to stay disabled.

We want to disallow deletion of pending referentials because this can
put the data in an inconsistent state that requires manual intervention
to clean (I think).

Refs #6858
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Disable the checkboxes next to pending referentials. This prevents them
from being deleted by the batch deletion operation.

In general it seems like we shouldn't be operating on pending
referentials, so if any new batch actions are added, it would make sense
to me for the checkboxes to stay disabled.

We want to disallow deletion of pending referentials because this can
put the data in an inconsistent state that requires manual intervention
to clean (I think).

Refs #6858
</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; Hide useless filters</title>
<updated>2018-04-27T09:17:19+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-27T09:09:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=3ed5ca0e97c287977646b7af6a41632c9dd3ad49'/>
<id>3ed5ca0e97c287977646b7af6a41632c9dd3ad49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ref #6572; Fix filters on referential#show</title>
<updated>2018-04-27T09:17:19+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-27T08:48:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=923f9fcb1a603ab02c4d7dad2678bb232cbdfa56'/>
<id>923f9fcb1a603ab02c4d7dad2678bb232cbdfa56</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6572; Fix dashboard</title>
<updated>2018-04-27T09:17:19+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-20T08:22:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=8f706a24bf732b715d2ad8b25b635e08eaa3e705'/>
<id>8f706a24bf732b715d2ad8b25b635e08eaa3e705</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6572; Updte wording</title>
<updated>2018-04-27T09:17:19+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-19T14:46:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=c495d4bb70b85db944a41be139c78c68c5623357'/>
<id>c495d4bb70b85db944a41be139c78c68c5623357</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
