| Commit message (Collapse) | Author | Age | Lines | ||
|---|---|---|---|---|---|
| ... | |||||
| | * | Fix overriden PAGES_PATH in settings.py. | 2021-04-01 | -8/+9 | ||
| | | | | | | | | | | | This was causing mysterious 404s because while migrating a feature to dewikification, the same variable would be placed in the settings file. | ||||
| | * | Update misleading documentation. | 2021-04-01 | -1/+2 | ||
| | | | |||||
| | * | Add a dropdown menu listing direct children. | 2021-04-01 | -1/+42 | ||
| | | | | | | | | | | | This only shows when the page is also a category, since regular pages have no children and regular categories already list their children. | ||||
| | * | Document defining a table of contents for a page. | 2021-04-01 | -0/+27 | ||
| | | | |||||
| | * | Place category pages in the same directory as categories. | 2021-04-01 | -14/+11 | ||
| | | | |||||
| | * | Add new tests to achieve full coverage. | 2021-03-29 | -6/+37 | ||
| | | | |||||
| | * | Fix failing tests. | 2021-03-29 | -9/+26 | ||
| | | | |||||
| | * | Allow adding a table of contents to a page. | 2021-03-29 | -3/+12 | ||
| | | | |||||
| | * | Document additional markdown features. | 2021-03-29 | -0/+26 | ||
| | | | | | | | | | | | Adds image caption capabilities and documents missing HTML extensions available. | ||||
| | * | Allow displaying a page at a category path. | 2021-03-29 | -19/+58 | ||
| | | | | | | | | | | | | | This is useful for our /contributing pages, which have a main contributing page at /contributing but project pages under the same path, /contributing/bot etc. | ||||
| | * | Improve content page and listing metadata keys. | 2021-03-27 | -12/+11 | ||
| | | | | | | | | | | | | | | | Make category `title` consistent with page `title`. Simplify `icon` key, since there is no benefit to defining the icon class and the icon separately. Allow overriding the `icon` for category entries just like page entries. | ||||
| * | | Change typo postion -> position in Real Python podcast resource | 2021-03-30 | -1/+1 | ||
| | | | | | | | Co-authored-by: Kieran Siek <[email protected]> | ||||
| * | | Add missing dot to end of books category info | 2021-03-30 | -1/+1 | ||
| | | | | | | | Co-authored-by: Kieran Siek <[email protected]> | ||||
| * | | Merge branch 'dewikification' into resources-lists | 2021-03-30 | -0/+702 | ||
| |\| | |||||
| | * | Remove guide reference to `markdown2`. | 2021-03-26 | -3/+1 | ||
| | | | | | | | | | | | | | Now that we use a separate library for frontmatter (which uses pyyaml), we can simplify the guide and remove the reference to the old markdown library. | ||||
| | * | Refactor content app tests. | 2021-03-25 | -289/+285 | ||
| | | | | | | | | | | | | | The tests uses pyfakefs to simulate a fake filesystem that is reused over the content app tests. Test coverage for the app is brought to 100%. | ||||
| | * | Replace `markdown2` with `markdown` and `python-frontmatter`. | 2021-03-24 | -25/+81 | ||
| | | | | | | | | | | | | | This allows us to properly escape codeblocks within markdown, permalink to headers on a page, and decouples getting metadata from a file and getting generated HTML from the Markdown content. | ||||
| | * | Simplify pathlib code and specify file encoding. | 2021-03-24 | -12/+11 | ||
| | | | |||||
| | * | Improve variable and key names for page utils. | 2021-03-24 | -4/+4 | ||
| | | | |||||
| | * | Refactor common HTML into a base template. | 2021-03-24 | -1/+6 | ||
| | | | |||||
| | * | Undo change to events app. | 2021-03-24 | -5/+5 | ||
| | | | | | | | | | Renaming `PageView` to `PagesView` was accidental and unnecessary. | ||||
| | * | Improve phrasing and wording of documentation. | 2021-03-24 | -9/+9 | ||
| | | | |||||
| | * | Update guide to reflect changes in events app. | 2021-03-24 | -2/+90 | ||
| | | | | | | | | | Wording is also improved. | ||||
| | * | Propogate markdown language data to highlight.js | 2021-03-24 | -0/+1 | ||
| | | | |||||
| | * | Rename `short_description` to `description`. | 2021-03-24 | -84/+4 | ||
| | | | | | | | | | | | Given that there is no "long description", just `description` conveys the same information with brevity. | ||||
| | * | Fix content app tests. | 2021-03-24 | -45/+37 | ||
| | | | |||||
| | * | Simplify content app. | 2021-03-23 | -85/+41 | ||
| | | | | | | | | | | | | | | | | | | | Rather than having two views for the base page and all other pages, all pages now use the same view. The view context handler is simplified to take advantage of pathlib features. The markdown folder is now /content/resources/* rather than /content/resources/content/*, as the latter is unnecessary nesting. | ||||
| | * | Rename `articles` to `pages`. | 2021-03-23 | -142/+143 | ||
| | | | | | | | | | | | | | Articles was a good name, but we want an `articles` category in the future. `/pages/guides/` and `/pages/articles/` are clearer in name than `/articles/guides/` and `/articles/articles/`. | ||||
| | * | Simplify relevant_links configuration in markdown. | 2021-03-23 | -6/+1 | ||
| | | | |||||
| | * | Remove Github metadata feature. | 2021-03-23 | -88/+1 | ||
| | | | | | | | | | | | This feature is still under implementation debate, so it will be further discussed in another issue and implemeneted in a future PR. | ||||
| | * | Merge branch 'dewikification' into guides-app | 2020-11-28 | -0/+95 | ||
| | |\ | |||||
| | | * | Update pydis_site/apps/events/views/page.py | 2020-11-12 | -1/+1 | ||
| | | | | | | | | | | Co-authored-by: Jeremiah Boby <[email protected]> | ||||
| | | * | Use path in variable instead getting it every time in kwargs | 2020-11-08 | -5/+6 | ||
| | | | | |||||
| | | * | Apply changes of pages location to views and settings | 2020-10-29 | -21/+10 | ||
| | | | | |||||
| | | * | Fix resources pre-commit | 2020-10-29 | -1/+1 | ||
| | | | | |||||
| | | * | Move events pages to templates folder | 2020-10-29 | -177/+0 | ||
| | | | | |||||
| | | * | Port View to TemplateView for events page view | 2020-10-28 | -11/+11 | ||
| | | | | |||||
| | | * | Use path converter for event page path argument | 2020-10-28 | -6/+2 | ||
| | | | | |||||
| | | * | Use URL tag instead manually writing URL | 2020-10-28 | -5/+5 | ||
| | | | | |||||
| | | * | Rename events index page from events -> index | 2020-10-28 | -2/+2 | ||
| | | | | |||||
| | | * | Merge branch 'dewikification' into events-app | 2020-10-28 | -0/+36 | ||
| | | |\ | |||||
| | | * | | Create Summer Code Jam 2020 rules page | 2020-10-26 | -0/+68 | ||
| | | | | | |||||
| | | * | | Create Summer Code Jam 2020 page | 2020-10-26 | -0/+102 | ||
| | | | | | |||||
| | | * | | Create code jams info page with content ToDo! | 2020-10-26 | -0/+5 | ||
| | | | | | |||||
| | | * | | Create tests for event views | 2020-10-26 | -0/+50 | ||
| | | | | | |||||
| | | * | | Create testing event pages | 2020-10-26 | -0/+2 | ||
| | | | | | |||||
| | | * | | Create event page view | 2020-10-26 | -0/+31 | ||
| | | | | | |||||
| | | * | | Create events index page view | 2020-10-26 | -0/+7 | ||
| | | | | | |||||
| | | * | | Include events URLs to home URLs | 2020-10-26 | -1/+2 | ||
| | | | | | |||||
| | | * | | Create basic events app | 2020-10-26 | -0/+20 | ||
| | | | | | |||||