semplifica passaggio al nuovo anno

This commit is contained in:
boyska 2020-07-18 14:51:34 +02:00
parent 815defb65f
commit ad97c05a3b
4 changed files with 17 additions and 12 deletions

View file

@ -9,8 +9,6 @@ copia ed aggiorna le date. Dove?
* `content/pages/index.*` ci sono le date/luogo
* `content/pages/info*` c'è sicuramente roba da cambiare
* `pelicanconf.py`
- cambia il SITEURL e anche la DEFAULT_DATE per l'anno nuovo
- cambia SITENAME incrementando l'esadecimale
* `publishconf.py` cambia il SITEURL
- cambia la variabile YEAR
* `talks/meta.yaml`: cambia la startdate: deve essere quella del primo giorno da mettere in programma, quindi
potrebbe anche essere il mercoledì o il giovedì

View file

@ -2,10 +2,14 @@
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# da un anno all'altro cambiare solo la variabile YEAR è sufficiente per le operazioni più base!
YEAR = 2020
EDITION = hex(YEAR - 1997)
AUTHOR = "Hackmeeting"
SITENAME = "Hackmeeting 0x17"
SITENAME = "Hackmeeting %s" % EDITION
CC_LICENSE = "by-nc-sa"
SITEURL = "/hackit20"
SITEURL = "/hackit%d" % (YEAR - 2000)
PATH = "content"
PAGE_PATHS = ["pages"]
@ -38,7 +42,7 @@ USE_OPEN_GRAPH = False # COL CAZZO
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
DEFAULT_DATE = (2019, 3, 1)
DEFAULT_DATE = (YEAR, 3, 1)
TYPOGRIFY = True
PAGE_ORDER_BY = "navbar_sort"

View file

@ -1,13 +1,14 @@
#!/usr/bin/env python
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
# This file is only used if you use `make publish` or
# explicitly specify it as your config file.
import os
import sys
sys.path.append(os.curdir)
from pelicanconf import *
SITEURL = 'https://hackmeeting.org/hackit20/'
sys.path.append(os.curdir) # isort:skip
from pelicanconf import * # isort:skip
from pelicanconf import YEAR # isort:skip
SITEURL = "https://hackmeeting.org/hackit%d/" % (YEAR - 2000)

2
pyproject.toml Normal file
View file

@ -0,0 +1,2 @@
[tool.black]
line-length=79