<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chouette-core/spec/models, branch fix-routes-editor</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 #5407; Fix data not being updated in the DB</title>
<updated>2017-12-28T08:34:15+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2017-12-28T08:28:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=fee41e6002c1a3c6273225befb7be2f06b6b63f9'/>
<id>fee41e6002c1a3c6273225befb7be2f06b6b63f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Include purchase_windows in vehicle_journey state into specs. Refs #5407</title>
<updated>2017-12-28T07:15:44+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2017-12-28T07:15:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=5d43b4bc7b0a09c5c84692fdebc216408e90dfed'/>
<id>5d43b4bc7b0a09c5c84692fdebc216408e90dfed</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #5407 @2h; Model implementation</title>
<updated>2017-12-27T12:42:39+00:00</updated>
<author>
<name>Zog</name>
</author>
<published>2017-12-27T12:42:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=607fa5e03289a10b60a773bc40af38f1d721bbea'/>
<id>607fa5e03289a10b60a773bc40af38f1d721bbea</id>
<content type='text'>
- Link PurchaseWindows to VehicleJourneys in the model
- Add an autocompletion endpoint
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Link PurchaseWindows to VehicleJourneys in the model
- Add an autocompletion endpoint
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't use i18n into Chouette::AreaType specs. Refs #5311</title>
<updated>2017-12-26T13:38:29+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2017-12-26T13:38:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=ebc344c1633e87d35f442ca6df783b2b1efe9ce7'/>
<id>ebc344c1633e87d35f442ca6df783b2b1efe9ce7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable GDL in StopArea enumeration. Refs #5311</title>
<updated>2017-12-26T12:12:23+00:00</updated>
<author>
<name>Alban Peignier</name>
</author>
<published>2017-12-26T12:11:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=69ed6ec8ba929e9b0adff11b7141daa8a2d79222'/>
<id>69ed6ec8ba929e9b0adff11b7141daa8a2d79222</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into 5316-migrate-compliance-control-and-check-attributes-from-hs</title>
<updated>2017-12-21T14:55:21+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2017-12-21T14:55:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=1d7a0cb4ce78603dac88c4054a658f02bf9fbb22'/>
<id>1d7a0cb4ce78603dac88c4054a658f02bf9fbb22</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove `hstore_accessor` usage</title>
<updated>2017-12-21T14:32:42+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2017-12-19T15:35:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=4918ffcd7492661f36a763cdf248757993f9bff4'/>
<id>4918ffcd7492661f36a763cdf248757993f9bff4</id>
<content type='text'>
The places we were using `hstore_accessor` have now been converted to
Postgres JSON fields. Thus we no longer need `hstore_accessor` in order
to add accessors for the fields.

Instead we can use Rails' built-in support for Postgres JSON fields and
create accessors for our JSON hash keys with `store_accessor`. We get
rid of the data types because `store_accessor` doesn't work like that
and JSON already types our values with primitive data types.

Finally, add some extra validation tests now that the vaildation for our
JSON fields should work.

Refs #5316
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The places we were using `hstore_accessor` have now been converted to
Postgres JSON fields. Thus we no longer need `hstore_accessor` in order
to add accessors for the fields.

Instead we can use Rails' built-in support for Postgres JSON fields and
create accessors for our JSON hash keys with `store_accessor`. We get
rid of the data types because `store_accessor` doesn't work like that
and JSON already types our values with primitive data types.

Finally, add some extra validation tests now that the vaildation for our
JSON fields should work.

Refs #5316
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #150 from af83/5301-add_business_calendars</title>
<updated>2017-12-21T13:50:08+00:00</updated>
<author>
<name>Luc Donnet</name>
</author>
<published>2017-12-21T13:50:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=7aec5b94868bc2e7473f7ded4be7a585fb7b174e'/>
<id>7aec5b94868bc2e7473f7ded4be7a585fb7b174e</id>
<content type='text'>
Refs #5301 First draft for Business Calendars</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Refs #5301 First draft for Business Calendars</pre>
</div>
</content>
</entry>
<entry>
<title>BusinessCalendar =&gt; PurchaseWindow</title>
<updated>2017-12-21T12:55:49+00:00</updated>
<author>
<name>cedricnjanga</name>
</author>
<published>2017-12-19T15:21:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=43f8c76522288a0328d520dfc753ed173fc84964'/>
<id>43f8c76522288a0328d520dfc753ed173fc84964</id>
<content type='text'>
belongs_to referential
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
belongs_to referential
</pre>
</div>
</content>
</entry>
<entry>
<title>Refs #5301 First draft for Business Calendars</title>
<updated>2017-12-21T12:54:07+00:00</updated>
<author>
<name>cedricnjanga</name>
</author>
<published>2017-12-14T17:47:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/chouette-core/commit/?id=f2d00fad59d97130babc95f37d495245f3d53f80'/>
<id>f2d00fad59d97130babc95f37d495245f3d53f80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
