Commit Graph

129 Commits

Author SHA1 Message Date
kirrg001 7c4e1584a6 Upgrading Casper to 2.4.2 2018-08-08 17:11:39 +02:00
Kevin Ansfield 329c13900e Upgrading Casper to 2.4.1 2018-07-31 11:34:52 +01:00
kirrg001 cc0e95ba4f Upgrading Casper to 2.4.0 2018-07-24 15:25:51 +02:00
Kevin Ansfield 99d7dab1f5 Update Ghost-Admin and Casper sub-modules for Koenig compatibility 2018-07-23 12:24:56 +01:00
Katharina Irrgang 5a61f99467
Dynamic Routing: Added migration for routes.yaml file (#9692)
refs #9601

- the home.hbs behaviour for the index collection (`/`) is hardcoded in Ghost
- we would like to migrate all existing routes.yaml files
- we only replace the file if the contents of the routes.yaml file equals the old routes.yaml format (with home.hbs as template)
- updated README of settings folder
- if we don't remove the home.hbs template from the default routes.yaml file, home.hbs will be rendered for any page of the index collection
  - the backwards compatible behaviour was different
  - only render home.hbs for page 1
- remember: the default routes.yaml file reflects how Ghost was working without dynamic routing
2018-06-22 20:28:01 +02:00
Kevin Ansfield 11bd398b1c Upgrading Casper to 2.3.3 2018-06-14 17:04:15 +01:00
Katharina Irrgang b392d1925a
Dynamic Routing Beta (#9596)
refs #9601

### Dynamic Routing

This is the beta version of dynamic routing. 

- we had a initial implementation of "channels" available in the codebase
- we have removed and moved this implementation 
- there is now a centralised place for dynamic routing - server/services/routing
- each routing component is represented by a router type e.g. collections, routes, static pages, taxonomies, rss, preview of posts
- keep as much as possible logic of routing helpers, middlewares and controllers
- ensure test coverage
- connect all the things together
  - yaml file + validation
  - routing + routers
  - url service
  - sitemaps
  - url access
- deeper implementation of yaml validations
  - e.g. hard require slashes
- ensure routing hierarchy/order
  - e.g. you enable the subscriber app
  - you have a custom static page, which lives under the same slug /subscribe
  - static pages are stronger than apps
  - e.g. the first collection owns the post it has filtered
  - a post cannot live in two collections
- ensure apps are still working and hook into the routers layer (or better said: and register in the routing service)
- put as much as possible comments to the code base for better understanding
- ensure a clean debug log
- ensure we can unmount routes
  - e.g. you have a collection permalink of /:slug/ represented by {globals.permalink}
  - and you change the permalink in the admin to dated permalink
  - the express route get's refreshed from /:slug/ to /:year/:month/:day/:slug/
  - unmount without server restart, yey
- ensure we are backwards compatible
  - e.g. render home.hbs for collection index if collection route is /
  - ensure you can access your configured permalink from the settings table with {globals.permalink}

### Render 503 if url service did not finish

- return 503 if the url service has not finished generating the resource urls

### Rewrite sitemaps

- we have rewritten the sitemaps "service", because the url generator does no longer happen on runtime
- we generate all urls on bootstrap
- the sitemaps service will consume created resource and router urls
- these urls will be shown on the xml pages
- we listen on url events
- we listen on router events
- we no longer have to fetch the resources, which is nice
  - the urlservice pre-fetches resources and emits their urls
- the urlservice is the only component who knows which urls are valid
- i made some ES6 adaptions
- we keep the caching logic -> only regenerate xml if there is a change
- updated tests
- checked test coverage (100%)

### Re-work usage of Url utility

- replace all usages of `urlService.utils.urlFor` by `urlService.getByResourceId`
  - only for resources e.g. post, author, tag
- this is important, because with dynamic routing we no longer create static urls based on the settings permalink on runtime
- adapt url utility
- adapt tests
2018-06-05 19:02:20 +02:00
kirrg001 c2849728e9 Updated content/settings/README.md
no issue

- the name of the routing type was incorrect
- we have
  1. routes: static routes (or series later)
  2. collections: a collection of posts
  3. taxonomies: configuration for author and tag routes
- see equivalent: https://github.com/TryGhost/Ghost/blob/1.23.1/core/server/services/settings/default-routes.yaml
2018-06-01 19:36:48 +02:00
Kevin Ansfield 91a1732c0f Upgrading Casper to 2.3.2 2018-05-29 16:10:26 +01:00
Kevin Ansfield 0b5ffff53e Upgrading Casper to 2.3.1 2018-05-29 15:45:24 +01:00
Kevin Ansfield 394f90f0e3 Upgrading Casper to 2.3.0 2018-05-22 20:25:03 +01:00
Aileen Nowak 833bb53fec Upgrading Casper to 2.2.1 2018-04-24 11:00:37 +08:00
Aileen Nowak c8b29724e0 Added `content/settings` folder
refs #9528
refs TryGhost/Ghost-CLI#681

- added a new `/content/settings` folder
- bumped Ghost-CLI engine requirement to >= 1.7.0
2018-04-15 19:40:22 +02:00
kirrg001 615ecded94 Upgrading Casper to 2.2.0
no issue

- see https://github.com/TryGhost/Casper/releases/tag/2.2.0
2018-04-10 23:32:14 +02:00
Aileen Nowak 9030161db9 Upgrading Casper to 2.1.10 2018-03-16 16:00:33 +07:00
Aileen Nowak 25b4769662 Revert "Upgrading Casper to 2.2.0"
This reverts commit 61a0343be0.
2018-03-16 15:47:58 +07:00
Aileen Nowak 61a0343be0 Upgrading Casper to 2.2.0 2018-03-16 09:54:41 +07:00
Kevin Ansfield e78f14bd43 Upgrading Casper to 2.1.9 2018-01-23 16:24:20 +00:00
Kevin Ansfield fddc9a928c Upgrading Casper to 2.1.8 2018-01-03 13:49:21 +00:00
Aileen Nowak 9e60ac639b Upgrading Casper to 2.1.7 2017-11-21 22:09:35 +08:00
Aileen Nowak 4ccdfab8f2 Upgrading Casper to 2.1.6 2017-10-26 19:09:37 +07:00
Aileen Nowak 39fe42a16b Upgrading Casper to 2.1.5 2017-10-24 16:12:12 +07:00
Aileen Nowak fcef6a53d6 Upgrading Casper to 2.1.4 2017-10-03 18:49:54 +07:00
Kevin Ansfield 2db548a5bc Upgrading Casper to 2.1.3 2017-09-26 16:01:11 +01:00
Aileen Nowak 40a66f650a Upgrading Casper to 2.1.2 2017-09-12 18:48:27 +07:00
kirrg001 86300f605e Upgrading Casper to 2.1.1 2017-09-07 14:36:40 +02:00
Vikas 8606ea22a2 Normalize docs URLs (#8949)
no issue

v1.0.0 is no longer the standard in the docs, so I updated all of the URLs containing it with v1
Note: I tried squashing commits, but failed. I'll try again in the future with throwaway changes
Secondary Note: I tested most of the URLs listed and got no 404s!
2017-08-31 11:45:59 +02:00
Kevin Ansfield 04ba726012 Upgrading Casper to 2.1.0 2017-08-29 13:42:50 +01:00
Kevin Ansfield 905580c710 Upgrading Casper to 2.0.6 2017-08-22 12:41:49 +01:00
Kevin Ansfield 53e716133b Upgrading Casper to 2.0.5 2017-08-17 17:58:10 +01:00
Kevin Ansfield ce7d0bfd93 Upgrading Casper to 2.0.4 2017-08-15 18:05:23 +01:00
kirrg001 7c0b1bb063 ⬆️ Upgrading Casper to 2.0.3
no issue

- See https://github.com/TryGhost/Casper/releases/tag/2.0.3
2017-08-10 16:16:29 +02:00
kirrg001 b61fa694ef Upgrading Casper to 2.0.2 2017-08-01 10:35:50 +04:00
Kevin Ansfield 7060fa5e35 Upgrading Casper to 2.0.1 2017-07-27 12:31:19 +04:00
Kevin Ansfield 954d85d49f Upgrading Casper to 2.0.0 2017-07-22 17:05:56 +01:00
Aileen Nowak 693c340082 Upgrading Casper: infinite sroll & remove partial 2017-07-11 15:29:58 +07:00
Aileen Nowak b37411239f Updated Casper: Infinite scroll 2017-07-10 20:43:52 +07:00
kirrg001 c696b1d27a Upgrading Casper: 2.0
no issue
2017-06-22 19:54:45 +02:00
Kevin Ansfield adfb84847a Upgrading Casper: 1.0 branch is now master 2017-06-08 19:33:11 +01:00
Kevin Ansfield 0f82e49159 📖 1.0.0 update for README.md and CONTRIBUTING.md (#8539)
refs #7421
- simplify README.md to be more use-case oriented and point to https://docs.ghost.org where appropriate
- remove majority of CONTRIBUTING.md content as it now lives at https://docs.ghost.org/contributing
- update adapter guide links in `content/adapters/README.md`
2017-06-08 17:05:27 +01:00
kirrg001 3dce86f532 Upgrading Casper to ghost-1.0: posts_per_page
[ci skip]
2017-06-06 13:07:50 +07:00
Myles Braithwaite e2dcdd2866 📖 Adapters: Pointing to the correct location (#8507)
no issue
2017-05-31 21:40:59 +02:00
Katharina Irrgang 76bd4fdef6 🙀 Image field naming & new img_url helper (#8364)
* 🙀  change database schema for images
    - rename user/post/tag images
    - contains all the required changes from the schema change

* Refactor helper/meta data
    - rename cover to cover_image
    - also rename default settings to match the pattern
    - rename image to profile_image for user
    - rename image to feature_image for tags/posts

* {{image}} >>> {{img_url}}
    - rename
    - change the functionality
    - attr is required
    - e.g. {{img_url feature_image}}

* gscan 1.0.0
    - update yarn.lock

* Update casper reference: 1.0-changes
    - see 5487b4da8d
2017-04-24 18:21:47 +01:00
Katharina Irrgang be5b58432b 🎨 change location of adapters (#8286)
closes #7687

- change location from content/storage or content/scheduling to content/adapters/storage or content/adapters/scheduling
- i have added a @TODO to https://github.com/TryGhost/Ghost/issues/7421 to check if both adapter types needs an update in the documentation
2017-04-07 10:53:38 +01:00
kirrg001 8382be1ada Upgrading Casper to ghost-1.0 2017-03-14 18:13:39 +01:00
kirrg001 fdcc66bdbf Upgrading Casper to 1.3.6 2017-03-06 12:33:47 +01:00
kirrg001 49e99c5dfd Upgrading Casper to 1.3.5 2017-01-17 15:49:03 +01:00
Katharina Irrgang 16a726bf1b 🎨 add logs folder to content folder (#7635)
refs #7116

- see comment https://github.com/TryGhost/Ghost/issues/7116#issuecomment-256598791
- add README.md
2016-10-28 14:27:02 +01:00
Hannah Wolfe ce8517fde0 Upgrading Casper to 1.3.4 2016-10-24 16:57:06 +01:00
Hannah Wolfe 2ca5bc2f35 Upgrading Casper to 1.3.3 2016-10-07 16:13:33 +01:00