Better DB sync scripts (vchess --> tournament)
authorBenjamin Auder <benjamin.auder@somewhere>
Mon, 22 Mar 2021 20:40:07 +0000 (21:40 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Mon, 22 Mar 2021 20:40:07 +0000 (21:40 +0100)
TODO
client/src/translations/rules/Synochess/en.pug
client/src/translations/rules/Synochess/es.pug
client/src/translations/rules/Synochess/fr.pug
server/routes/users.js

diff --git a/TODO b/TODO
index 10788bd..1ab5046 100644 (file)
--- a/TODO
+++ b/TODO
@@ -5,3 +5,7 @@ If new live game starts in background, "new game" notify OK but not first move.
 "FreeBoard", re-using a lot of Board logic, but with SVG (empty) board + SVG (empty) reserves.
 Will be used for variants with custom non-rectangular board (Hex, at least)
 Or, with other board shapes (see greenchess.net for example)
+
+Would be nice to display some better variants names (Pacosako -> Paco-Ŝako etc),
+but the "formatted" name with uppercase + all lower cases would still be required.
+(For example in variants list, or tournament variant field).
index 5350d69..f078aa9 100644 (file)
@@ -29,16 +29,16 @@ h3 Special Rules
 
 ul
   li.
-    King Faceoff &mdash; As in Xiangqi, Kings may not face each other
+    King Faceoff &ndash; As in Xiangqi, Kings may not face each other
     (on a file or rank).
   li.
-    Reinforcement Soldiers &mdash; Black starts with two soldiers in hand.
+    Reinforcement Soldiers &ndash; Black starts with two soldiers in hand.
     Instead of moving a piece on the board, the Dynasty player can drop a
     soldier onto an open square in rank 5.
-  li Campmate &mdash; A king that reaches the final rank wins the game.
+  li Campmate &ndash; A king that reaches the final rank wins the game.
   li.
-    Stalemate &mdash; As in Xiangqi, stalemates
-    and moves repetitions are a loss.
+    Stalemate &ndash; As in Xiangqi, stalemate
+    and moves repetition are a loss.
 
 h3 Dynasty Pieces
 
@@ -47,7 +47,7 @@ p.
   hand), 2 Cannons, 2 Elephants, and 1 Advisor.
 p.
   The Chariots are equal to the Rooks and use the same abbreviation (R)
-  &mdash; the difference is purely cosmetic. Similarly, the Kings are the
+  &ndash; the difference is purely cosmetic. Similarly, the Kings are the
   same, but just appear different.
 
 ul
index 1f2bdf0..bcd4954 100644 (file)
@@ -29,17 +29,17 @@ h3 Reglas especiales
 
 ul
   li.
-    Rey opuestos &mdash; Como en Xiangqi, los reyes no pueden ser
+    Rey opuestos &ndash; Como en Xiangqi, los reyes no pueden ser
     cara a cara (en una columna o fila).
   li.
-    Soldados de refuerzo &mdash; Las negras comienzan con dos soldados en la
+    Soldados de refuerzo &ndash; Las negras comienzan con dos soldados en la
     mano. En lugar de jugar un movimiento, pueden dejar caer a un soldado en
     una casilla libre de la quinta fila.
   li.
-    "Mate de campo" &mdash; Si el rey llega a la última fila, entonces
+    "Mate de campo" &ndash; Si el rey llega a la última fila, entonces
     el juego está ganado.
   li.
-    Empate &mdash; Como en Xiangqi,
+    Empate &ndash; Como en Xiangqi,
     el empate y la repetición de jugadas pierden.
 
 h3 Piezas de la dinastía
@@ -48,7 +48,7 @@ p.
   Cuatro piezas nuevas del lado de la Dinastía: 6 Soldados (2 serán
   en paracaídas), 2 Cañones, 2 Elefantes y 1 Asesor.
 p.
-  Los Carros equivalen a torres y utilizan la misma abreviatura &mdash;
+  Los Carros equivalen a torres y utilizan la misma abreviatura &ndash;
   la diferencia es puramente cosmética. Asimismo, los Reyes son iguales
   piezas dibujadas de manera diferente.
 
index 7d5692d..d559ec6 100644 (file)
@@ -29,16 +29,16 @@ h3 Règles spéciales
 
 ul
   li.
-    Roi en vis-à-vis &mdash; Comme au Xiangqi, les Rois ne peuvent pas se
+    Roi en vis-à-vis &ndash; Comme au Xiangqi, les Rois ne peuvent pas se
     faire face (sur une colonne ou rangée).
   li.
-    Soldats en renfort &mdash; Les noirs démarrent avec deux soldats en main.
+    Soldats en renfort &ndash; Les noirs démarrent avec deux soldats en main.
     Au lieu de jouer un coup, ils peuvent parachuter un soldat sur une case
     libre de la 5eme rangée.
   li.
-    "Mat de camp" &mdash; Si le roi atteint la dernière rangée, alors
+    "Mat de camp" &ndash; Si le roi atteint la dernière rangée, alors
     la partie est gagnée.
-  li Pat &mdash; Comme au Xiangqi, le pat et la répétition de coups perdent.
+  li Pat &ndash; Comme au Xiangqi, le pat et la répétition de coups perdent.
 
 h3 Pièces de la Dynastie
 
@@ -46,7 +46,7 @@ p.
   Quatre nouvelles pièces du côté de la Dynastie : 6 Soldats (2 seront
   parachutés), 2 Canons, 2 Éléphants, et 1 Conseiller.
 p.
-  Les Chariots sont égaux aux tours, et utilisent la même abréviation &mdash;
+  Les Chariots sont égaux aux tours, et utilisent la même abréviation &ndash;
   la différence est purement cosmétique. De même, les Rois sont les mêmes
   pièces dessinées différemment.
 
index f1554ef..b14defb 100644 (file)
@@ -51,7 +51,7 @@ router.post('/register', access.unlogged, access.ajax, (req,res) => {
         };
         setAndSendLoginToken("Welcome to " + params.siteURL, user);
         // Update tournament DB (TODO: if error, log it)
-        exec(params.tourneyPath + "/dbsync/update_users.py");
+        exec(params.tourneyPath + "/dbsync/insert_user.py " + ret.id);
         res.json({});
       }
     });
@@ -105,6 +105,7 @@ router.put('/update', access.logged, access.ajax, (req,res) => {
       notify: !!req.body.notify,
     };
     UserModel.updateSettings(user);
+    exec(params.tourneyPath + "/dbsync/update_user.py " + ret.id);
     res.json({});
   }
 });