Šī lapa labāk darbojas, ja pārlūkam ir iespējots JavaScript.
Sākums
Palīdzība
Pierakstīties
ben
/
calefaction
spogulis no
https://github.com/earwig/calefaction
Vērot
1
Pievienot zvaigznīti
1
Atdalīts
0
Kods
Laidieni
0
Aktivitāte
Pārlūkot izejas kodu
Add EVE date to footer.
master
Ben Kurtovic
pirms 8 gadiem
vecāks
681030e8d6
revīzija
bf7e58dba9
3 mainītis faili
ar
21 papildinājumiem
un
0 dzēšanām
Dalītais skats
Salīdzināšanas iespējas
Rādīt statistiku
Lejupielādēt ielāpa failu
Lejupielādēt izmaiņu failu
+6
-0
calefaction/eve/__init__.py
+13
-0
calefaction/eve/clock.py
+2
-0
templates/_base.mako
+ 6
- 0
calefaction/eve/__init__.py
Parādīt failu
@@ -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
Parādīt failu
@@ -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
Parādīt failu
@@ -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>.
Rakstīt
Priekšskatītījums
Notiek ielāde…
Atcelt
Saglabāt