Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
ben
/
calefaction
réplica de
https://github.com/earwig/calefaction
Seguir
1
Destacar
1
Fork
0
Código
Lanzamientos
0
Actividad
Explorar el Código
Add EVE date to footer.
master
Ben Kurtovic
hace 8 años
padre
681030e8d6
commit
bf7e58dba9
Se han
modificado 3 ficheros
con
21 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+6
-0
calefaction/eve/__init__.py
+13
-0
calefaction/eve/clock.py
+2
-0
templates/_base.mako
+ 6
- 0
calefaction/eve/__init__.py
Ver fichero
@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
from .clock import Clock
from .image import ImageServer
__all__ = ["EVE"]
@@ -7,8 +8,13 @@ __all__ = ["EVE"]
class EVE:
def __init__(self):
self._clock = Clock()
self._image = ImageServer()
@property
def clock(self):
return self._clock
@property
def image(self):
return self._image
+ 13
- 0
calefaction/eve/clock.py
Ver fichero
@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
from datetime import datetime
__all__ = ["Clock"]
YEAR_DELTA = 1898
class Clock:
def now(self):
dt = datetime.utcnow()
return str(dt.year - YEAR_DELTA) + dt.strftime("-%m-%d %H:%M")
+ 2
- 0
templates/_base.mako
Ver fichero
@@ -44,6 +44,8 @@
<%block name="footer">
<footer>
<div>
YC ${g.eve.clock.now()}
•
Running <a href="https://github.com/earwig/calefaction">Calefaction</a> ${g.version}
•
<a href="https://eveonline.com">EVE Online</a> and all related trademarks are property of <a href="https://ccpgames.com">CCP hf</a>.
Escribir
Vista previa
Cargando…
Cancelar
Guardar