From 7220b4451c51f9ea068fca0b649039562a8809d2 Mon Sep 17 00:00:00 2001 From: Seb35 Date: Tue, 1 Jan 2019 13:02:26 +0100 Subject: [PATCH] Some fun, countdown for 10 days --- js/durafront.js | 8 ++++++++ server.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/js/durafront.js b/js/durafront.js index 8034021..fc04b55 100644 --- a/js/durafront.js +++ b/js/durafront.js @@ -17,6 +17,14 @@ $( function() { $('#article-pjl-ppl').val('Au sixième alinéa de l’article 16 de la Constitution, les mots : « soixante députés ou soixante sénateurs » sont remplacés par les mots : « quarante députés ou quarante sénateurs ».'); + console.log(new Date().getMonth()); + console.log(new Date().getDate()); + var date = new Date(); + if( date.getMonth() == 0 && date.getDate() < 10 ) { + $('#amendement').val('I. - Au premier alinéa, remplacer le mot « ' + (date.getFullYear()-1) + ' » par « ' + date.getFullYear() + ' ».\n\nII. - ' + $('#amendement').val().replace('premier', 'troisième')); + $('#article-pjl-ppl').val('Bonne année ' + (date.getFullYear()-1) + ' !\n\n-- Sinon voici l’exemple réel ci-dessous ------\n\n' + $('#article-pjl-ppl').val()); + } + $('#amendement, #article-pjl-ppl').keyup( function(e) { if( e.originalEvent.keyCode !== 13 || e.originalEvent.ctrlKey !== true ) { diff --git a/server.py b/server.py index 80631cd..0a2a962 100644 --- a/server.py +++ b/server.py @@ -537,7 +537,7 @@ def printTree(self, tree): httpd = http.server.HTTPServer(('127.0.0.1', 8081), DuraLexSedLexHTTPRequestHandler) sa = httpd.socket.getsockname() t = time.time() - print(time.strftime('[%d/%b/%Y %H:%M:%S')+('%.5f]'%(t-int(t)))[1:], "***", "Serving HTTP on", sa[0], "port", sa[1], "...") + print("***", time.strftime('[%d/%b/%Y %H:%M:%S')+('%.5f]'%(t-int(t)))[1:], "***", "Serving HTTP on", sa[0], "port", sa[1], "...") try: httpd.serve_forever() except KeyboardInterrupt: