gtfs-to-html 2.6.12 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/app/index.js +14 -9
- package/lib/file-utils.js +11 -16
- package/lib/formatters.js +12 -43
- package/lib/geojson-utils.js +17 -15
- package/lib/gtfs-to-html.js +2 -2
- package/lib/utils.js +17 -5
- package/package.json +9 -9
- package/{public → views/default}/css/overview_styles.css +1 -1
- package/{public → views/default}/css/timetable_styles.css +16 -10
- package/views/default/formatting_functions.pug +22 -9
- package/{public → views/default}/js/system-map.js +8 -2
- package/{public → views/default}/js/timetable-map.js +8 -2
- package/views/default/overview.pug +3 -2
- package/views/default/timetablepage.pug +3 -2
- package/www/docs/configuration.md +2 -2
- package/www/docs/timetables.md +2 -2
- package/www/package.json +2 -2
- package/www/yarn.lock +759 -768
- /package/{public → views/default}/css/timetable_pdf_styles.css +0 -0
- /package/{public → views/default}/js/timetable-menu.js +0 -0
package/www/docs/timetables.md
CHANGED
|
@@ -12,8 +12,8 @@ This is an optional, non-standard file called `timetables.txt` which can be incl
|
|
|
12
12
|
| `timetable_id` | A unique ID for the timetable |
|
|
13
13
|
| `route_id` | The ID of the route the timetable is for from `routes.txt`. For timetables that should include more than one route, see [Multi-route timetables](#multi-route-timetables) |
|
|
14
14
|
| `direction_id` | The `direction_id` from `trips.txt` for the timetable. This can be blank. |
|
|
15
|
-
| `start_date` | The start date for this timetable in `
|
|
16
|
-
| `end_date` | The end date for this timetable in `
|
|
15
|
+
| `start_date` | The start date for this timetable in `YYYYMMDD` format. |
|
|
16
|
+
| `end_date` | The end date for this timetable in `YYYYMMDD` format. |
|
|
17
17
|
| `monday` | A binary value that indicates whether this timetable should include service on Mondays. Valid options are `0` and `1`. |
|
|
18
18
|
| `tuesday` | A binary value that indicates whether this timetable should include service on Tuesdays. Valid options are `0` and `1`. |
|
|
19
19
|
| `wednesday` | A binary value that indicates whether this timetable should include service on Wednesdays. Valid options are `0` and `1`. |
|
package/www/package.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"deploy": "docusaurus deploy"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@docusaurus/core": "^3.
|
|
13
|
-
"@docusaurus/preset-classic": "^3.
|
|
12
|
+
"@docusaurus/core": "^3.5.2",
|
|
13
|
+
"@docusaurus/preset-classic": "^3.5.2",
|
|
14
14
|
"clsx": "^2.1.1",
|
|
15
15
|
"react": "^18.3.1",
|
|
16
16
|
"react-dom": "^18.3.1"
|