| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-02-06 | Refs #3542; Add a date lookup | Zog | |
| 2018-02-06 | Refs #3542 @2h; Various UI improvements (hopefully) | Zog | |
| 2018-02-06 | Refs #3542, Fix specs | Zog | |
| 2018-02-06 | Refs #3542 @1h; Add sticky header | Zog | |
| 2018-02-06 | Refs #3542 @1h; Adds filters | Zog | |
| 2018-02-06 | Refs #3542 @1h; Add Time navigation | Zog | |
| 2018-02-06 | Refs #3542; Adds pagination | Zog | |
| 2018-02-06 | Refs #3542 @4h; First UI | Zog | |
| Still missing: - Pagination - Filters | |||
| 2018-02-06 | Refs #5835; Timetables inherit application days from calendars | Zog | |
| 2018-02-06 | Refs #5832 @1h; Show active filters | Zog | |
| 2018-02-06 | Refs 5832; Fix bug on ReferentialVehicleJourneys#index filters | Zog | |
| By default a value was always set on the "Line" filter, yielding misleading results. | |||
| 2018-02-06 | Fix jest specs | Zog | |
| 2018-02-06 | Refs #5825; Fix pagination | Zog | |
| 2018-02-06 | Refs #5830; Fix RouteDecorator's duplicate action | Zog | |
| 2018-02-06 | Refs #5825 @1h; Fix info window behaviour on VJs editor | Zog | |
| 2018-02-06 | Define @year in CalendarsController as expected by view. Refs #5682 | Alban Peignier | |
| 2018-02-06 | Prevent problem with StopArea#kind. Refs #5817 | Alban Peignier | |
| 2018-02-06 | Fixes vehicle_journeys#index spec | Alban Peignier | |
| 2018-02-06 | Refs #5758; Fix messed rebase | Zog | |
| 2018-02-06 | Refs #5758; Set a default kind for StopAreas | Zog | |
| 2018-02-06 | :fire: log | Zog | |
| 2018-02-06 | VehicleJourney.lines: Change query to only get lines for route | Teddy Wing | |
| Johan recommended using an `IN` query to only get the lines in the current scope. I assumed I'd be covered by the schema and how only the lines for the current referential are in the schema, but this is probably a more reasonable way to get associated lines. Refs #5576 | |||
| 2018-02-06 | ReferentialVehicleJourneys#index: Use ransack filter for line id | Teddy Wing | |
| I went with this custom filter because I couldn't get it to work with a symbol-based filter in the template. But Johan suggested trying it and I guess it works. Not sure what I was doing that didn't work before. Refs #5576 | |||
| 2018-02-06 | _select2.sass: Prevent drop-down arrow from overlapping selection | Teddy Wing | |
| When the text of the current selection was very long, it could extend to the end of the input, the farthest right: +-------------------+ | Long text is long | +-------------------+ The problem is that the arrow indicating you can click on the input to bring up a drop-down list of options would cover the "g" in "long" in the above example (well, not exactly because of proportional width characters, but you get the idea). Fix the overlap by overriding Bootstrap Select2's style from app/assets/stylesheets/vendor/select2-bootstrap.css:306-309, which looks like this: .select2-container--bootstrap .select2-selection--single .select2-selection__rendered { color: #555555; padding: 0; } Obviously, the padding is wrong. We need some right padding to give room for the arrow. What are you thinking Bootstrap Select2? Refs #5576 | |||
| 2018-02-06 | ReferentialVehicleJourneys#index: Pre-fill line select filter | Teddy Wing | |
| Pre-fill this box with the value from `params[:q]` so users can see their selected line after filtering. For some reason Select2 wants to keep it selected even after clicking "Effacer". Not sure what that's about, but the HTML `<select>` clearly doesn't have a `selected` attribute/option. Refs #5576 | |||
| 2018-02-06 | ReferentialVehicleJourneys#index: Add padding to line filter | Teddy Wing | |
| Add some padding inside the drop-down so that the filter select box doesn't run up against the sides of the drop-down. Refs #5576 | |||
| 2018-02-06 | ReferentialVehicleJourneys#index: Add 'line' filter | Teddy Wing | |
| Filter vehicle journeys by their associated route's line. The `with_line_id` scope is modeled on `with_stop_area_ids`. The HTML filter is modeled on the line filter from `app/views/workbenches/_filters.html.slim`. Refs #5576 | |||
| 2018-02-06 | Fix broken TimeTableDecorator | Zog | |
| 2018-02-06 | ReferentialVehicleJourneys#index: Fix `nil` error on `stop_area_ids` | Teddy Wing | |
| This wasn't checking that `params[:q]` was present before trying to access `[:stop_area_ids]`, and thus caused an error on the page when no filters were applied. Refs #5809 | |||
| 2018-02-06 | Refs #5758; Add corresponding feature `stop_area_localized_names` | Zog | |
| 2018-02-06 | Refs #5758 @1h; Add localized names to StopAreas | Zog | |
| 2018-02-06 | Fix css | Zog | |
| 2018-02-06 | Refs #5762; Update JS to accomodate stops without location | Zog | |
| 2018-02-06 | Refs #5762; Disable default position for stops | Zog | |
| 2018-02-06 | Refs #5762; Make coordinates optional on stop areas | Zog | |
| 2018-02-06 | Revert webpacker to 3.0.2. Refs #5807 | Alban Peignier | |
| 2018-02-06 | Remove first :default_environment. Refs #5803 | Alban Peignier | |
| 2018-02-06 | Use upcase PATH variable in :default_environment. Refs #5803 | Alban Peignier | |
| 2018-02-06 | Use default_environment (for capistrano 2). Refs #5803 | Alban Peignier | |
| 2018-02-06 | Fix yarn installation with no production for ci and force yarn install ↵ | Luc Donnet | |
| before jest launch du to webpacker bug | |||
| 2018-02-06 | Fixes typo in deploy.rb. Refs #5803 | Alban Peignier | |
| 2018-02-06 | Add env variable to disable ci:jest if needed. Refs #5802 | Alban Peignier | |
| 2018-02-06 | Change path in capistrano default_env to make bundle available for webpacker ↵ | Alban Peignier | |
| compiler. Refs #5803 | |||
| 2018-02-06 | :fire: log | Zog | |
| 2018-02-06 | Refs #5798 @3h; Show return journeys on the journeys' editor. | Zog | |
| 2018-02-06 | Refs #5796; Fix dropdown menu | Zog | |
| 2018-02-06 | Refs #5796: Add some legroom in the JourneyPatterns editor | Zog | |
| 2018-02-06 | Refs #5682; Fix timetables bulk update | Zog | |
| 2018-02-06 | Refs #5682 @3h; Use same UI as for timetables | Zog | |
| 2018-02-06 | Refs #5682; Set default value for application days | Zog | |
