| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-05-15 | CleanUp: Add `#destroy_empty`6854-clean-up--destroy-routes-outside-referential | Teddy Wing | |
| Gives us a single call site to trigger the destruction of vehicle journeys, journey patterns, and routes without content. This was previously done directly in the `#clean` method, but since it's not needed during referential duplication (only during merges), we don't want to enable it by default. Thus now to activate the same old functionality, you would create a `CleanUp` like this: CleanUp.new(methods: [:destroy_empty]) Refs #6854 | |||
| 2018-05-15 | CleanUp#clean: Replace `#destroy_*` calls with `#run_methods` | Teddy Wing | |
| It turns out that we don't care about destroying orphaned data. From Alban: > Quand on duplique un JDD, on lance un CleanUp, sauf que la partie > "suppression des données orphelines" n'intéresse personne au final. Replace the calls to `#destory_{vehicle_journeys,journey_patterns,routes}` with one to `#run_methods`. This change allows callers to run any cleanup methods defined in `CleanUp`. For example: CleanUp.new(methods: [:destory_routes]) But now by default, none of these destroy methods are run, saving us from doing extra work that it turns out we don't need to bother doing. Refs #6854 | |||
| 2018-05-14 | CleanUp: Add `#run_methods` | Teddy Wing | |
| This method is coupled with a new virtual attribute that can be used in the initializer like: CleanUp.new(methods: [:destroy_routes]) The method will run all methods specified in the `:methods` list. The plan is to replace the calls to `destroy_routes` etc. with a call to this method. The result will be a more configurable clean-up process, allowing users to selectively choose what to clean up by declaring what methods in the `CleanUp` model to call. Refs #6854 | |||
| 2018-05-14 | CleanUp: Remove `#destroy_vehicle_journeys_outside_referential` | Teddy Wing | |
| This method is superseded by `#destroy_routes_outside_referential`, which will cascade deletion to include vehicle journeys. Refs #6854 | |||
| 2018-05-14 | CleanUp: Add `#destroy_routes_outside_referential` | Teddy Wing | |
| This builds on `#destroy_vehicle_journeys_outside_referential` (which will soon be removed in favour of this new method). It destroys orphaned routes in a referential. Refs #6854 | |||
| 2018-05-14 | Merge pull request #566 from ↵ | Luc Donnet | |
| af83/6627-favicon--make-transparent-and-retina-compatible 6627-favicon--make-transparent-and-retina-compatible | |||
| 2018-05-11 | Refs #6990; Fix Referentials filters | Zog | |
| 2018-05-11 | Make favicon transparent and retina compatible6627-favicon--make-transparent-and-retina-compatible | Teddy Wing | |
| 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 | |||
| 2018-05-11 | Refs #6973; Update consolidted views CSS | Zog | |
| 2018-05-11 | Remove CustomField.none when workgroup isn't defined in ↵ | Alban Peignier | |
| CustomFieldsSupport.custom_fields | |||
| 2018-05-10 | Merge pull request #555 from af83/6923-consolidated-offer | Alban Peignier | |
| Display consolidated offer. Fixes #6923 | |||
| 2018-05-10 | Move per-page-select group in the second line in ↵6923-consolidated-offer | Alban Peignier | |
| referential_vehicle_journeys/_filters. Refs #6923 | |||
| 2018-05-10 | Merge pull request #558 from af83/6960-workgroup-edition | Alban Peignier | |
| Workgroup edition. Fixes #6960 | |||
| 2018-05-10 | Fix specs. Refs #6960 | Alban Peignier | |
| 2018-05-09 | Don't change IEV operation status before pinging java API. Refs #6960 | Alban Peignier | |
| 2018-05-09 | Use Workbench#compliance_control_set_ids virtual attribute to merge with ↵ | Alban Peignier | |
| existing owner_compliance_control_set_ids. Refs #6960 | |||
| 2018-05-09 | Associate ComplianceControlSet with parent operation when created. Refs #6960 | Alban Peignier | |
| 2018-05-09 | Rewrite compliance_control_sets associated to workbench or workgroup edits ↵ | Alban Peignier | |
| and imports. Refs #6960 | |||
| 2018-05-09 | Fix show on model not defining the `has_metadata?` method | Zog | |
| 2018-05-09 | Fix development toolbar | Zog | |
| 2018-05-09 | Refs #6961; Update Workbench#edit | Zog | |
| - Update the form - Use policies and update the seeds accordingly - Add a link in the navbar(s) | |||
| 2018-05-09 | Refs #6960; Update imports to use nesw implementation | Zog | |
| 2018-05-07 | Refs #6960; Add a view to set the controls associated to each workbench | Zog | |
| 2018-05-07 | Refs #6960; Add owners to workgroups | Zog | |
| And define policies | |||
| 2018-05-07 | Add GTFS views | Zog | |
| 2018-05-07 | Add import_compliance_control_sets to Workgroups | Zog | |
| And rename resource methods for better consistency | |||
| 2018-05-07 | Better views | Zog | |
| 2018-05-07 | Ignore failed Referentials when looking for duplicates | Zog | |
| 2018-05-07 | Trigger compliance checks after imports | Zog | |
| 2018-05-07 | Fix NETEX imports | Zog | |
| 2018-05-07 | Rework imports to use Resources and make the a little more verbose | Zog | |
| 2018-05-07 | Refs #6321; :fire: comments | Zog | |
| 2018-05-07 | Refs #6923; More :lipstick: | Zog | |
| 2018-05-07 | Refs #6923; :lipstick: | Zog | |
| 2018-05-07 | Refs #6923; Use a feature: `consolidated_offers` | Zog | |
| 2018-05-07 | refs #6923; small improvements | Zog | |
| 2018-05-06 | Refs #6550; Fix CustomFields edition for JourneyPatterns | Zog | |
| 2018-05-04 | Refs #6923; Some css sugar | Zog | |
| 2018-05-04 | Refs #6923; Implement a consolidated view | Zog | |
| 2018-05-04 | Merge pull request #549 from af83/6920-activate-newly-created-referentials | Luc Donnet | |
| 6920 activate newly created referentials | |||
| 2018-05-04 | Merge pull request #543 from af83/6864-fix-schedules-editor | Alban Peignier | |
| Fix schedules editor. Refs #6864 | |||
| 2018-05-03 | Refs #6346; Fix other companies form | Zog | |
| 2018-05-03 | Refs #6867; Add A LOT of TZs | Zog | |
| 2018-05-03 | Refs #6867; Remove duplicated entries in TZ select | Zog | |
| 2018-05-03 | Refs #6884; Allow for overnight stops6864-fix-schedules-editor | Zog | |
| As long as one arrives after 11pm and leaves before 1am | |||
| 2018-05-03 | Refs #6920; Fix typo | Zog | |
| 2018-05-03 | Refs #6921; Show "Unarchive" action in referentials list | Zog | |
| 2018-05-03 | Refs #6920; Activate Referentils created from scratch | Zog | |
| 2018-05-02 | Merge pull request #542 from af83/6627-add-chouette-favicon | Luc Donnet | |
| 6627: Add Chouette favicon | |||
| 2018-05-02 | Merge pull request #546 from af83/6572-make-new-referentials-pending | Luc Donnet | |
| 6572 Create Referentials in a pending state | |||
