add check between git tag and specified app version
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 20 Mar 2014 07:12:26 +0000 (08:12 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.it>
Thu, 20 Mar 2014 07:12:26 +0000 (08:12 +0100)
INSTALL.sh
bin/points_test.sh [new file with mode: 0755]
sql/sql.d/070-add-mailmgmt.sql [new file with mode: 0644]

index 1966eca..2e934fe 100755 (executable)
@@ -95,6 +95,14 @@ if [ "$1" = "chk" ]; then
     for i in $(find -name '*.pho' -o -name '*.phh' -o -name '*.php'); do
         php5 -l $i
     done
+
+    taggit="$(git describe --tags | sed 's/^v//g')"
+    tagphp="$(grep "^\$G_brisk_version = " web/Obj/brisk.phh | sed 's/^[^"]\+"//g;s/".*//g')"
+    if [ "$taggit" != "v$tagphp" ]; then
+        echo
+       echo "WARNING: taggit: [$taggit] tagphp: [$tagphp]"
+        echo
+    fi
     exit 0
 fi
 
diff --git a/bin/points_test.sh b/bin/points_test.sh
new file mode 100755 (executable)
index 0000000..a54eabd
--- /dev/null
@@ -0,0 +1,3 @@
+ ./builder.sh del sql.d/068-points-normalization.sql
+ ./builder.sh res sql.d/066-insert-unnorm-games.sql.test
+ ./builder.sh add sql.d/068-points-normalization.sql
diff --git a/sql/sql.d/070-add-mailmgmt.sql b/sql/sql.d/070-add-mailmgmt.sql
new file mode 100644 (file)
index 0000000..8f8057a
--- /dev/null
@@ -0,0 +1,13 @@
+--
+--  Table to manage mails sent to users
+--
+DROP TABLE #PFX#mails;
+CREATE TABLE #PFX#mails (
+       code       SERIAL PRIMARY KEY,
+       ucode      integer REFERENCES #PFX#users (code) ON DELETE cascade ON UPDATE cascade,
+       type       integer,                           -- type of email
+       tstamp     timestamp DEFAULT to_timestamp(0), -- insert time
+       subj       text,                              -- email subject
+       body_txt   text,                              -- email body (text version)
+       body_htm   text,                              -- email body (html version)
+       refs       text);                             -- email references