Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Sep 2, 2023
1 parent 76a30ec commit a6033d1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions material/plugins/blog/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def on_page_markdown(self, markdown, *, page, config, files):
# We set the contents of the view to its title if pagination should
# not keep the content of the original view on paginaged views
if not self.config.pagination_keep_content:
view = self._resolve_canonical(page)
view = self._resolve_original(page)
if view in self._resolve_views(self.blog):
assert isinstance(page, View)
if page.pages.index(page):
Expand Down Expand Up @@ -324,7 +324,7 @@ def on_page_context(self, context, *, page, config, nav):

# Skip if page is not a view managed by this instance - this plugin has
# support for multiple instances, which is why this check is necessary
view = self._resolve_canonical(page)
view = self._resolve_original(page)
if view not in self._resolve_views(self.blog):
return

Expand Down Expand Up @@ -514,20 +514,20 @@ def _resolve_views(self, view: View):
assert isinstance(next, View)
yield next

# Resolve canonical page of a page, which might be a view
def _resolve_canonical(self, page: Page):
if isinstance(page, View):
return page.pages[0]
else:
return page

# Resolve siblings of a navigation item
def _resolve_siblings(self, item: StructureItem, nav: Navigation):
if isinstance(item.parent, Section):
return item.parent.children
else:
return nav.items

# Resolve original page or view (e.g. for paginated views)
def _resolve_original(self, page: Page):
if isinstance(page, View):
return page.pages[0]
else:
return page

# -------------------------------------------------------------------------

# Generate views for archive - analyze posts and generate the necessary
Expand Down Expand Up @@ -641,7 +641,7 @@ def _attach(self, parent: StructureItem, pages: list[Page]):
# If the page is a view, we know that we generated it and need to
# link its siblings back to the view
if isinstance(page, View):
view = self._resolve_canonical(page)
view = self._resolve_original(page)
if tail: tail.next_page = view
if head: head.previous_page = view

Expand Down
20 changes: 10 additions & 10 deletions src/plugins/blog/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def on_page_markdown(self, markdown, *, page, config, files):
# We set the contents of the view to its title if pagination should
# not keep the content of the original view on paginaged views
if not self.config.pagination_keep_content:
view = self._resolve_canonical(page)
view = self._resolve_original(page)
if view in self._resolve_views(self.blog):
assert isinstance(page, View)
if page.pages.index(page):
Expand Down Expand Up @@ -324,7 +324,7 @@ def on_page_context(self, context, *, page, config, nav):

# Skip if page is not a view managed by this instance - this plugin has
# support for multiple instances, which is why this check is necessary
view = self._resolve_canonical(page)
view = self._resolve_original(page)
if view not in self._resolve_views(self.blog):
return

Expand Down Expand Up @@ -514,20 +514,20 @@ def _resolve_views(self, view: View):
assert isinstance(next, View)
yield next

# Resolve canonical page of a page, which might be a view
def _resolve_canonical(self, page: Page):
if isinstance(page, View):
return page.pages[0]
else:
return page

# Resolve siblings of a navigation item
def _resolve_siblings(self, item: StructureItem, nav: Navigation):
if isinstance(item.parent, Section):
return item.parent.children
else:
return nav.items

# Resolve original page or view (e.g. for paginated views)
def _resolve_original(self, page: Page):
if isinstance(page, View):
return page.pages[0]
else:
return page

# -------------------------------------------------------------------------

# Generate views for archive - analyze posts and generate the necessary
Expand Down Expand Up @@ -641,7 +641,7 @@ def _attach(self, parent: StructureItem, pages: list[Page]):
# If the page is a view, we know that we generated it and need to
# link its siblings back to the view
if isinstance(page, View):
view = self._resolve_canonical(page)
view = self._resolve_original(page)
if tail: tail.next_page = view
if head: head.previous_page = view

Expand Down

0 comments on commit a6033d1

Please sign in to comment.