<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chouette-core/app, branch 6628-fix-i18n</title>
<subtitle>Chouette manage transport static data</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/'/>
<entry>
<title>Truncate Referential#slug. Refs #6811</title>
<updated>2018-04-26T09:22:34+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2018-04-26T08:58:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=cc1be3219f3263e23023590ab04bc8cc94405754'/>
<id>cc1be3219f3263e23023590ab04bc8cc94405754</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>:fire: log</title>
<updated>2018-04-26T09:08:23+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-26T09:08:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=86ac76d4e930dfbeb2efcc1cefc7e1e2ade62724'/>
<id>86ac76d4e930dfbeb2efcc1cefc7e1e2ade62724</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6486; Fix bumpy front</title>
<updated>2018-04-26T09:07:00+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-26T09:07:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=22430fd5f3356986afa784956d89b030646497d1'/>
<id>22430fd5f3356986afa784956d89b030646497d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>AutocompleteLinesController: Don't error if no `q` param is passed</title>
<updated>2018-04-26T07:16:15+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-24T13:45:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=0becfb7afdc1e439059c1f82ef6860c1c52d7fd6'/>
<id>0becfb7afdc1e439059c1f82ef6860c1c52d7fd6</id>
<content type='text'>
Previously the action would respond with a 500 error if no `q` parameter
was given in the request. Instead, respond with a 200 and fix the error
that occurs as a result of assuming that `params[:q]` exists in
`AutocompleteLinesController#collection`.

Refs #5889
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously the action would respond with a 500 error if no `q` parameter
was given in the request. Instead, respond with a 200 and fix the error
that occurs as a result of assuming that `params[:q]` exists in
`AutocompleteLinesController#collection`.

Refs #5889
</pre>
</div>
</content>
</entry>
<entry>
<title>ReferentialVehicleJourneys: Use display name in line filter drop-down</title>
<updated>2018-04-26T07:16:15+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T15:34:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=9c0013324b3dddb00c70b663a031b4ecf10e92c7'/>
<id>9c0013324b3dddb00c70b663a031b4ecf10e92c7</id>
<content type='text'>
Previously we had been showing the `name` field for the initial value of
an already selected line. However, that doesn't show all the information
that's normally given in the drop-down options. We instead have to use
the `#display_name` method to get the full display that people are used
to seeing in the drop-down.

This also means we can no longer `pluck`, as more fields are required to
assemble the display name. Instead, just do a simple `find` for the
record.

Refs #5889
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously we had been showing the `name` field for the initial value of
an already selected line. However, that doesn't show all the information
that's normally given in the drop-down options. We instead have to use
the `#display_name` method to get the full display that people are used
to seeing in the drop-down.

This also means we can no longer `pluck`, as more fields are required to
assemble the display name. Instead, just do a simple `find` for the
record.

Refs #5889
</pre>
</div>
</content>
</entry>
<entry>
<title>ReferentialVehicleJourneys: Fix line drop-down placeholder</title>
<updated>2018-04-26T07:16:15+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T15:23:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=de3762e2db02f876bdd032c9e1afe716d3c25dde'/>
<id>de3762e2db02f876bdd032c9e1afe716d3c25dde</id>
<content type='text'>
After adding the `initvalue` data attribute, the placeholder was no
longer rendered. Fix this by:

1. Removing all elements from the collection to ensure that boolean
   options don't get added by default to the select
   (https://github.com/plataformatec/simple_form/blob/84e4465/lib/simple_form/inputs/collection_input.rb#L36-L41)
2. Not setting an `initSelection` on the Select2 config if the initial
   selection fields are empty.

This finally gets the placeholder to display correctly again.

Refs #5889
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After adding the `initvalue` data attribute, the placeholder was no
longer rendered. Fix this by:

1. Removing all elements from the collection to ensure that boolean
   options don't get added by default to the select
   (https://github.com/plataformatec/simple_form/blob/84e4465/lib/simple_form/inputs/collection_input.rb#L36-L41)
2. Not setting an `initSelection` on the Select2 config if the initial
   selection fields are empty.

This finally gets the placeholder to display correctly again.

Refs #5889
</pre>
</div>
</content>
</entry>
<entry>
<title>ReferentialVehicleJourneys: Show selected line in drop-down</title>
<updated>2018-04-26T07:16:15+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-04-19T11:59:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=e5215f229e3dfa5d84a43bcf75e2edf8c99667a3'/>
<id>e5215f229e3dfa5d84a43bcf75e2edf8c99667a3</id>
<content type='text'>
Previously we weren't showing the currently-selected line filter in the
drop-down label.

If a line is selected, get its ID and name and use those to pre-fill the
select.

Using Select2's `initSelection` option to configure this instead of
putting `selected: ` in the Rails field definition. That would have
looked like this:

    collection: [[@filtered_line.name, @filtered_line.id]],
    selected: params[:q] &amp;&amp; params[:q][:route_line_id_eq],

But doing it that way wasn't possible because this is an AJAX-populated
Select2.

Since we already have a way to use `initSelection`, this was the
quickest and easiest way to go, but apparently Select2 v4.0 deprecated
this option, instead doing it with a data adapter. Couldn't really be
bothered right now to figure out how to set that up as it seemed like a
lot of work for not much payoff right now. Also, I was a little
disappointed in Select2's docs regarding this. From what I understood,
it looks like you basically need to create your own custom data adapter
to do this, which sounds like a pain, and I'm not sure if I would have
to mess with the rest of our existing Select2 configuration setup in
order to integrate that.

Refs #5889
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously we weren't showing the currently-selected line filter in the
drop-down label.

If a line is selected, get its ID and name and use those to pre-fill the
select.

Using Select2's `initSelection` option to configure this instead of
putting `selected: ` in the Rails field definition. That would have
looked like this:

    collection: [[@filtered_line.name, @filtered_line.id]],
    selected: params[:q] &amp;&amp; params[:q][:route_line_id_eq],

But doing it that way wasn't possible because this is an AJAX-populated
Select2.

Since we already have a way to use `initSelection`, this was the
quickest and easiest way to go, but apparently Select2 v4.0 deprecated
this option, instead doing it with a data adapter. Couldn't really be
bothered right now to figure out how to set that up as it seemed like a
lot of work for not much payoff right now. Also, I was a little
disappointed in Select2's docs regarding this. From what I understood,
it looks like you basically need to create your own custom data adapter
to do this, which sounds like a pain, and I'm not sure if I would have
to mess with the rest of our existing Select2 configuration setup in
order to integrate that.

Refs #5889
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix CustomField specs</title>
<updated>2018-04-26T07:07:26+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-26T07:07:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=37cef4eca7eec2dbfc4be10334c787ce207b466e'/>
<id>37cef4eca7eec2dbfc4be10334c787ce207b466e</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 #471 from af83/6491-timetable-confirm-modal-cancel</title>
<updated>2018-04-26T06:35:01+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2018-04-26T06:35:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=43c5ef689517663b15724f9a472211ccef3d0250'/>
<id>43c5ef689517663b15724f9a472211ccef3d0250</id>
<content type='text'>
Fix cancel button actions in confirm modal. Refs #6491 </content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix cancel button actions in confirm modal. Refs #6491 </pre>
</div>
</content>
</entry>
<entry>
<title>Refs #6620; Do not show the 'chrono' on the last stop</title>
<updated>2018-04-26T05:05:10+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2018-04-25T07:23:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=1f15d358e361dafb92c8136c110e90c136979a53'/>
<id>1f15d358e361dafb92c8136c110e90c136979a53</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
