]> mop.ddnsfree.com - git repositories - brisk.git/log
brisk.git
29 hours agoshort <? tags turned into <?php: the page was unusable in the browser
Matteo Nastasi [Sun, 13 Sep 2026 10:32:06 +0000 (12:32 +0200)]
short <? tags turned into <?php: the page was unusable in the browser

109 occurrences of "<? echo ... ?>" in web/index.php (48) and
web/briskin5/index.php (61). Short tags only work with short_open_tag = On,
which is Off by default in php and is Off on debian 13; on the production
machine (debian 8) it is evidently On.

This is not a cosmetic problem. Without interpretation the text of the tag
ends up literally in the html, and in a javascript context such as

    var g_tables_n = <? echo TABLES_N; ?>;

it becomes a syntax error that prevents the compilation of the WHOLE <script>
block. As a consequence none of the variables declared in there is created,
"sess" included, and the room page is unusable: the browser console reports
"sess is not defined" and the buttons do nothing.

Every src/href with cache busting was broken too
("commons.js?v=<? echo BSK_BUSTING; ?>"), and now renders properly
("commons.js?v=997ebdc").

Converted to <?php instead of turning short_open_tag on: the directive is
discouraged and not guaranteed, while the explicit form works everywhere.
All 109 occurrences had the identical shape "<? echo", and none of them fell
inside a php string, so the substitution is mechanical. Checked that the
generated page no longer contains uninterpreted tags.

Found by the user opening the site with a real browser: it is the first
defect that came from the javascript client, which the curl tests could not
detect because they do not execute the page.

NOTE: this commit also carries two pre-existing changes from the working
copy, unrelated to the tag conversion: the inclusion of custom.js in
index.php (two lines) and $brisk_donate passed to $brisk_vertical_menu. They
were already there and were picked up by the "git add" of the whole file.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014M1jiEq9cHdE5SE5j6vFuE

29 hours agophp8: "string + string" fatal in index_wr.php
Matteo Nastasi [Sun, 13 Sep 2026 10:31:35 +0000 (12:31 +0200)]
php8: "string + string" fatal in index_wr.php

    echo "Get User Error:" + $argz[0];

A concatenation written in javascript style, with "+" instead of the php ".".
On php 5 and 7 it evaluated to 0+0 with a warning and printed "0"; since
php 8 adding two non numeric strings is a TypeError, and with no catch
anywhere the brisk-spush daemon died on the spot.

The branch is trivial to reach: a request to index_wr.php with an
unrecognised session is enough, an expired cookie for instance. Found by
sending a getchallenge after a daemon restart.

All similar cases were looked for: this is the only one in php code, the
other "+" between strings are inside javascript embedded in the html, or in
shell scripts quoted in comments.

Found by playing a real game in the container: five authenticated users,
table 4, the auction, 40 cards played, score saved.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014M1jiEq9cHdE5SE5j6vFuE

29 hours agofixes that showed up by actually running the application on debian 13
Matteo Nastasi [Sun, 13 Sep 2026 10:31:28 +0000 (12:31 +0200)]
fixes that showed up by actually running the application on debian 13

Found by bringing the whole stack up in a container: apache 2.4.68 with
mod_proxy_fdpass2, the brisk-spush daemon on php 8.4 with the ancillary
extension, postgresql 17. None of these was visible with the lint, with
loading the include chain, or with the tests on the objects: they only show
up by starting the daemon and serving a real request.

sac-a-push.phh: fatal when the daemon starts
 sig_handler() was registered with pcntl_signal() as
 array("Sac_a_push", "sig_handler"), that is in static form, but declared
 non static. Since php 8 that is no longer a valid callable and
 pcntl_signal() raises a TypeError: the daemon died before opening a socket.
 It is the same class of problem as the 15 static calls already fixed, but
 with the array() syntax: the check I had written looked for "Class::method"
 and did not see it. The other two callables in that form were checked as
 well (IPClassItem::compare and Cookie::create): both already static.

INSTALL.sh: Etc/ was born exposed on the web
 The Etc directory holds the configuration with $G_dbauth, that is the
 database credentials in clear, and it falls inside the DocumentRoot. The
 .pho extension is not associated with php, so the file was served as plain
 text: checked, HTTP 200 with the content. In production it is protected only
 because someone added a .htaccess by hand; a fresh installation was born
 without one. INSTALL.sh now creates it, in the apache 2.4 form with a 2.2
 fallback. After the change: HTTP 403.

WARNING.txt: the suggested ProxyPass lines did not work
 It is the text INSTALL.sh prints to the administrator as the configuration
 to write, and it was wrong in three ways:
  - "fd:///path" is refused at configuration time by apache 2.4.68
    ("ProxyPass URL must be absolute!"); "fd://localhost/path" is needed
  - it mentioned a single "brisk.sock", from before the pool existed: the
    path is the prefix and the module appends "<N>.sock" to it
  - the hardcoded path /var/www/brisk-priv ignored the -U option
 Rewritten with the form verified to work, plus the note that the first
 argument must be an exact path and not a prefix with a trailing slash.

The file also lists, and this part was already right, which urls go to the
daemon: index.php, index_wr.php, index_rd.php, index_rd_wss.php and the
matching ones under briskin5. Everything else is served by apache.

Final check in the container: GET /brisk/index.php answers 200 with the game
page (19725 bytes), the .css are served by apache, Obj/, spush/ and
briskin5/Obj/ answer 403, Etc/ answers 403, and the daemon does not emit a
single warning or deprecation while serving the requests.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014M1jiEq9cHdE5SE5j6vFuE

29 hours agopostgresql 10+ compatibility (debian 13 ships 17)
Matteo Nastasi [Sun, 13 Sep 2026 10:31:03 +0000 (12:31 +0200)]
postgresql 10+ compatibility (debian 13 ships 17)

Found by running the code against a real database: neither the lint nor
loading the sources could see them.

UPDATE ... SET (col) = (val)
Since postgresql 10 the parenthesised form on a SINGLE column is an error
("source for a multiple-column UPDATE item must be a sub-SELECT or ROW()
expression"): (val) is not a ROW but a parenthesised expression. The multi
column form is still valid, checked on the server: of the 11 parenthesised
UPDATEs in the project only 4 need fixing, the other 7 are left alone.

  dbase_pgsql.phh  SET (lintm)     user_update_login_time()
                   SET (pass)      user_update_passwd()
                   SET (tos_vers)  user_tos_update()
                   SET (game_cnt)  bin5_points_save()
  sql.d/085-tourn-update.sql  two SET (name)

This is not a consequence of the php 8 port: they were already broken on any
postgresql >= 10. They cover password recovery and the acceptance of the
terms of service.

int2four()
The literal 0xffffffff00000000 is above PHP_INT_MAX, so php treats it as a
float and the or converts it back to int: since 8.1 that is the "Implicit
conversion from float to int loses precision" deprecation, emitted on every
call (the function sits in the self-registration check path). Rewritten with
~0xffffffff, same bit pattern but an integer. Identical values, compared on
0, 1, 0x7fffffff, 0x80000000, 0xc0a80001 and 0xffffffff.

Checked against a real database (postgresql 17, schema rebuilt from scratch
with sql/builder.sh: 18 files, 12 tables, 6 views, 0 errors): connection,
queries, user_add, login_exists, getrecord_bylogin, the three fixed UPDATEs,
the two multi column ones, transactions and selfreg. No warnings, no
deprecations. The error branch of BriskDB::query() was checked too, by
forcing a query on a non existing table: it logs with pg_last_error(), does
not raise a TypeError, and the connection survives the recovery.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014M1jiEq9cHdE5SE5j6vFuE

29 hours agoport to php 8.4 (debian 13)
Matteo Nastasi [Sun, 13 Sep 2026 10:30:35 +0000 (12:30 +0200)]
port to php 8.4 (debian 13)

The code was written for php 5. Minimal changes to make it run cleanly on
8.4, with no restructuring.

Fatal errors
- split() -> explode() (removed in 7.0), 5 places
- "$x =& new Class()" -> "= new" (removed in 7.0), 7 places
- 41 php4 style constructors -> __construct(). A non obvious case: Bin5_user
  defined "function User() {}", which on php5 was its constructor because it
  overrode the slot inherited from User; that one was renamed too.
- 15 static calls to non static methods (Challenges::load_data(),
  Hardbans::add(), Table::create(), ...): E_STRICT on php5, Error since 8.0.
  "static" added to the 8 declarations, none of them uses $this.
- 5 overrides with incompatible signatures (spawn, copy, load_step,
  unproxy_step, page_sync): E_STRICT on php5, fatal since 8.0. The useless
  "&" on objects were dropped and the parameters of three methods reordered,
  with the two call sites adjusted.
- dbase_pgsql.phh: pg_result_status($res) was called in the branch where
  $res is FALSE. Since 8.0 results are \PgSql\Result objects and no longer
  resources, so it is not a warning any more but a fatal TypeError - and in
  the connection recovery path, of all places. Replaced with pg_last_error().
- dbase_pgsql.phh: "${rules_name}::game_description(...)" was a variable
  variable whose name came from an undefined constant; on php5 it degraded to
  a string with a notice and resolved to $rules_name by accident, on php8 it
  is a fatal Error.
- dbase_file.phh: define() with an unquoted constant name, same mechanism.
- usermgmt.php: "break" outside any loop. On php5 it was a runtime fatal,
  since 7.0 it is a compile time one: the file did not load any more.

Deprecations
- 245 "var $prop" -> public
- 29 occurrences of "${var}" inside strings -> "{$var}" (8.2)
- 29 dynamic properties declared (8.2). User declared $brisk but the code
  always uses $room: renamed, nobody reads $user->brisk.
- 53 pg_numrows() -> pg_num_rows(): the alias is deprecated in 8.4
- strftime() -> date(), shmop_close() -> unset()
- room_join_wakeup(): removed a default followed by a mandatory parameter

mbstring.func_overload
It was set to 7 in the .htaccess files and was removed in 8.0. All 62 call
sites of strlen/substr/strpos were examined: they are either pure ASCII or
deliberately byte oriented, and moving to php8 fixes them, given that the
websocket frame parsing in transports.phh and the fwrite accounting in
sac-a-push.phh would have been wrong under overload. No change needed: where
character semantics were required the author already used explicit mb_*.
The only exception is index_wr.php, where mail() is no longer remapped onto
mb_send_mail(): mb_encode_mimeheader() was added on the subject and on the
user name, which otherwise ended up as raw UTF-8 in the headers.

Configuration (debian 13)
- .htaccess: func_overload removed, internal_encoding/http_input replaced by
  default_charset; the php_value block now sits inside <IfModule mod_php.c>
  because with PHP-FPM apache would answer 500
- the three .htaccess that protect the sources used the apache 2.2 syntax
  (Order/Deny), which needs mod_access_compat: now "Require all denied" with
  a fallback
- system/etc_php5_conf.d_mbstring.ini -> etc_php8.4_conf.d_brisk.ini
- INSTALL.sh: "php5 -l" -> "php -l"

Checked: php -l clean on 64 files; the whole include chain of the daemon
loads with E_ALL without warnings or deprecations; the tests in test/ pass.
Not yet verified against a database: dbase_pgsql.phh was only checked
statically.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014M1jiEq9cHdE5SE5j6vFuE

29 hours agoPHPMailer 5.1 replaced by a vendored 7.1.1
Matteo Nastasi [Sun, 13 Sep 2026 10:28:36 +0000 (12:28 +0200)]
PHPMailer 5.1 replaced by a vendored 7.1.1

The class.phpmailer.php in web/Obj/ was the 5.1 release from 2009 and does
not run on php 8: it uses each() (removed in 8.0),
get_magic_quotes_runtime() and set_magic_quotes_runtime() (removed in 8.0)
and php4 style constructors.

Replaced by PHPMailer 7.1.1 in web/Obj/PHPMailer/ (src/ plus the italian
language file and the LICENSE). 7.x was chosen over 6.x because 7.0.0 is
identical to 6.11.1: the major bump only signals a compatibility break for
those who extend the class (lang(), setLanguage() and $language became
static), and here PHPMailer is not extended. It is the line maintained for
php 8.4. No composer: the project does not use it, and INSTALL.sh already
copies files recursively - only LICENSE and VENDOR.txt had to be added to
the list of copied names.

mail.phh adjusted: namespace PHPMailer\PHPMailer, explicit require of the
three files (no autoloader), setFrom() instead of assigning From/FromName
directly.

A missing catch was added too: brisk_mail() builds PHPMailer with
exceptions=TRUE, so send() throws instead of returning FALSE, but none of
the 7 callers catches and all of them test for "== FALSE". A delivery error
killed the spush daemon. The exception is now logged and reported as FALSE,
which is what the callers already expected.

NOTE: msgHTML() overwrites AltBody with its own conversion of the html, so
the text passed to brisk_mail() is discarded. This was already the case
with 5.1, and the behaviour is left untouched (see the comment in the file).

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014M1jiEq9cHdE5SE5j6vFuE

6 years agofix missing bold for your account item master
Matteo Nastasi [Tue, 12 May 2020 11:59:40 +0000 (13:59 +0200)]
fix missing bold for your account item

6 years agonb cards css added
Matteo Nastasi [Sun, 10 May 2020 12:56:56 +0000 (14:56 +0200)]
nb cards css added

6 years agoadd new (old) 'no border' deck
Matteo Nastasi [Sun, 10 May 2020 12:46:50 +0000 (14:46 +0200)]
add new (old) 'no border' deck

6 years agoversion update to 5.10.0 sprites v5.10.0
Matteo Nastasi [Tue, 5 May 2020 05:54:01 +0000 (07:54 +0200)]
version update to 5.10.0

6 years agotypo fixed
Matteo Nastasi [Mon, 4 May 2020 06:23:21 +0000 (08:23 +0200)]
typo fixed

6 years agoproper language management for deck reload (and close button)
Matteo Nastasi [Mon, 4 May 2020 06:22:09 +0000 (08:22 +0200)]
proper language management for deck reload (and close button)

6 years agorenamed close button
Matteo Nastasi [Mon, 4 May 2020 06:09:30 +0000 (08:09 +0200)]
renamed close button

6 years agoupdate img preload
Matteo Nastasi [Mon, 4 May 2020 06:07:24 +0000 (08:07 +0200)]
update img preload

6 years agotypo fixed
Matteo Nastasi [Mon, 4 May 2020 05:47:06 +0000 (07:47 +0200)]
typo fixed

6 years agoupdate cards_yy.css
Matteo Nastasi [Mon, 4 May 2020 05:41:28 +0000 (07:41 +0200)]
update cards_yy.css

6 years agocss for 'yy' deck added
Matteo Nastasi [Mon, 4 May 2020 05:32:29 +0000 (07:32 +0200)]
css for 'yy' deck added

6 years agoseeds chooser updated and dynamic empty card use
Matteo Nastasi [Mon, 4 May 2020 05:28:57 +0000 (07:28 +0200)]
seeds chooser updated and dynamic empty card use

6 years agoimages caching disabled
Matteo Nastasi [Mon, 4 May 2020 05:19:22 +0000 (07:19 +0200)]
images caching disabled

6 years agodynamic h and w adjusted
Matteo Nastasi [Sun, 3 May 2020 19:21:03 +0000 (21:21 +0200)]
dynamic h and w adjusted

6 years agog_deck test [2]
Matteo Nastasi [Sun, 3 May 2020 19:17:35 +0000 (21:17 +0200)]
g_deck test [2]

6 years agog_deck test
Matteo Nastasi [Sun, 3 May 2020 19:14:03 +0000 (21:14 +0200)]
g_deck test

6 years agotypo fixed in css
Matteo Nastasi [Sun, 3 May 2020 13:38:21 +0000 (15:38 +0200)]
typo fixed in css

6 years agopartial css spacing update
Matteo Nastasi [Sun, 3 May 2020 13:31:34 +0000 (15:31 +0200)]
partial css spacing update

6 years agofixed callerimg placement (and visibility) [2]
Matteo Nastasi [Sun, 3 May 2020 12:41:19 +0000 (14:41 +0200)]
fixed callerimg placement (and visibility) [2]

6 years agofixed callerimg placement (and visibility)
Matteo Nastasi [Sun, 3 May 2020 12:40:07 +0000 (14:40 +0200)]
fixed callerimg placement (and visibility)

6 years agoinvestigation about callerimg placement [2]
Matteo Nastasi [Sun, 3 May 2020 12:32:55 +0000 (14:32 +0200)]
investigation about callerimg placement [2]

6 years agoinvestigation about callerimg placement
Matteo Nastasi [Sun, 3 May 2020 12:24:53 +0000 (14:24 +0200)]
investigation about callerimg placement

6 years agotypo fixed
Matteo Nastasi [Sun, 3 May 2020 12:09:32 +0000 (14:09 +0200)]
typo fixed

6 years agotentative to fix dynamic callerid position
Matteo Nastasi [Sun, 3 May 2020 12:06:39 +0000 (14:06 +0200)]
tentative to fix dynamic callerid position

6 years agotypo fixed
Matteo Nastasi [Sun, 3 May 2020 12:00:12 +0000 (14:00 +0200)]
typo fixed

6 years agoupdate 'callerimg' placing
Matteo Nastasi [Sun, 3 May 2020 11:57:50 +0000 (13:57 +0200)]
update 'callerimg' placing

6 years agofixed callerimg set
Matteo Nastasi [Sun, 3 May 2020 11:49:59 +0000 (13:49 +0200)]
fixed callerimg set

6 years agodisabled class cleanup for played cards
Matteo Nastasi [Sun, 3 May 2020 11:40:31 +0000 (13:40 +0200)]
disabled class cleanup for played cards

6 years agomove all 'src' assign to 'data-card-id' logic
Matteo Nastasi [Sun, 3 May 2020 11:29:22 +0000 (13:29 +0200)]
move all 'src' assign to 'data-card-id' logic

6 years agohalf border resize
Matteo Nastasi [Sun, 3 May 2020 11:00:11 +0000 (13:00 +0200)]
half border resize

6 years agomicroadjust of north east player
Matteo Nastasi [Sun, 3 May 2020 09:12:26 +0000 (11:12 +0200)]
microadjust of north east player

6 years agomicroadjust of east player
Matteo Nastasi [Sun, 3 May 2020 09:01:04 +0000 (11:01 +0200)]
microadjust of east player

6 years agoremove border size in card dimension computation and code cleanup
Matteo Nastasi [Sun, 3 May 2020 08:47:57 +0000 (10:47 +0200)]
remove border size in card dimension computation and code cleanup

6 years agotypo fixed
Matteo Nastasi [Sun, 3 May 2020 08:43:28 +0000 (10:43 +0200)]
typo fixed

6 years agoadjust static variables with card dimensions
Matteo Nastasi [Sun, 3 May 2020 08:42:01 +0000 (10:42 +0200)]
adjust static variables with card dimensions

6 years agoassign sprites to owned cards
Matteo Nastasi [Sun, 3 May 2020 08:35:18 +0000 (10:35 +0200)]
assign sprites to owned cards

6 years agoremoved borders from sprited cards
Matteo Nastasi [Sun, 3 May 2020 08:05:56 +0000 (10:05 +0200)]
removed borders from sprited cards

6 years agofirst tranche of card images substitution
Matteo Nastasi [Sun, 3 May 2020 07:57:31 +0000 (09:57 +0200)]
first tranche of card images substitution

6 years agoadd new sp-card class to use with new sprites
Matteo Nastasi [Sun, 3 May 2020 07:52:16 +0000 (09:52 +0200)]
add new sp-card class to use with new sprites

6 years agosubstitute card id '40' with 'cover' to be more clear and back-compatible
Matteo Nastasi [Sun, 3 May 2020 07:32:16 +0000 (09:32 +0200)]
substitute card id '40' with 'cover' to be more clear and back-compatible

6 years agoadd css for cards 'xx'
Matteo Nastasi [Sun, 3 May 2020 06:38:36 +0000 (08:38 +0200)]
add css for cards 'xx'

6 years agoenabled deck select at table preferences
Matteo Nastasi [Sat, 2 May 2020 16:25:54 +0000 (18:25 +0200)]
enabled deck select at table preferences

6 years agoconsistency to add minute to apprentices tables minuta-appr
Matteo Nastasi [Tue, 28 Apr 2020 16:21:58 +0000 (18:21 +0200)]
consistency to add minute to apprentices tables

6 years agoadd match check on ttype to generate ranking just on certified and guaranteed users
Matteo Nastasi [Tue, 28 Apr 2020 16:06:17 +0000 (18:06 +0200)]
add match check on ttype to generate ranking just on certified and guaranteed users

6 years agoadd new ttype field to match table
Matteo Nastasi [Tue, 28 Apr 2020 15:48:45 +0000 (17:48 +0200)]
add new ttype field to match table

6 years agomissing g_listen entry substitution fixed
Matteo Nastasi [Sat, 18 Apr 2020 15:37:23 +0000 (17:37 +0200)]
missing g_listen entry substitution fixed

6 years agoupdate version
Matteo Nastasi [Sat, 18 Apr 2020 13:52:08 +0000 (15:52 +0200)]
update version

6 years agoISOLAUTH to 0x04 (test)
Matteo Nastasi [Sat, 18 Apr 2020 13:43:07 +0000 (15:43 +0200)]
ISOLAUTH to 0x04 (test)

6 years agomove to jquery 3.4.1
Matteo Nastasi [Sat, 18 Apr 2020 12:47:12 +0000 (14:47 +0200)]
move to jquery 3.4.1

6 years agomixed content issue fixed
Matteo Nastasi [Sat, 18 Apr 2020 12:42:02 +0000 (14:42 +0200)]
mixed content issue fixed

6 years agomixed content issue fixed
Matteo Nastasi [Sat, 18 Apr 2020 12:40:54 +0000 (14:40 +0200)]
mixed content issue fixed

6 years agouse JQuery for complex selections
Matteo Nastasi [Sat, 18 Apr 2020 12:39:06 +0000 (14:39 +0200)]
use JQuery for complex selections

6 years agotypo fixed
Matteo Nastasi [Sat, 18 Apr 2020 12:12:01 +0000 (14:12 +0200)]
typo fixed

6 years agouse class instead of id to hide tables
Matteo Nastasi [Sat, 18 Apr 2020 12:07:58 +0000 (14:07 +0200)]
use class instead of id to hide tables

6 years agotypo fixed
Matteo Nastasi [Sat, 18 Apr 2020 11:38:48 +0000 (13:38 +0200)]
typo fixed

6 years agojust all or authenticated users prefs options
Matteo Nastasi [Sat, 18 Apr 2020 11:25:16 +0000 (13:25 +0200)]
just all or authenticated users prefs options

6 years agoremove 'auth' as possible listen state
Matteo Nastasi [Sat, 18 Apr 2020 10:52:31 +0000 (12:52 +0200)]
remove 'auth' as possible listen state

6 years agopreference refactoring
Matteo Nastasi [Sat, 18 Apr 2020 10:47:55 +0000 (12:47 +0200)]
preference refactoring

6 years agoMerge branch 'master' into post-bold2
Matteo Nastasi [Sat, 18 Apr 2020 09:35:24 +0000 (11:35 +0200)]
Merge branch 'master' into post-bold2

6 years agoupdate version to 5.9.0 busting v5.9.0
Matteo Nastasi [Sat, 18 Apr 2020 09:29:50 +0000 (11:29 +0200)]
update version to 5.9.0

6 years agobumbed js files in transports.phh
Matteo Nastasi [Sat, 18 Apr 2020 09:27:15 +0000 (11:27 +0200)]
bumbed js files in transports.phh

6 years agoadd busting to briskin5/index.php (.js and .css files)
Matteo Nastasi [Sat, 18 Apr 2020 09:05:23 +0000 (11:05 +0200)]
add busting to briskin5/index.php (.js and .css files)

6 years agoadd busting to index.php (.css files)
Matteo Nastasi [Sat, 18 Apr 2020 09:01:29 +0000 (11:01 +0200)]
add busting to index.php (.css files)

6 years agoadd busting to index.php
Matteo Nastasi [Sat, 18 Apr 2020 08:59:18 +0000 (10:59 +0200)]
add busting to index.php

6 years agoBSK_BUSTING valorization during installation (hash or brisk version if hash not found)
Matteo Nastasi [Sat, 18 Apr 2020 08:48:52 +0000 (10:48 +0200)]
BSK_BUSTING valorization during installation (hash or brisk version if hash not found)

6 years agoalign with good part of post-bold branch (WIP isolation)
Matteo Nastasi [Sat, 18 Apr 2020 08:23:45 +0000 (10:23 +0200)]
align with good part of post-bold branch (WIP isolation)

6 years agoadd bold for your user to js code j_stand_cont()
Matteo Nastasi [Fri, 17 Apr 2020 06:30:16 +0000 (08:30 +0200)]
add bold for your user to js code j_stand_cont()

6 years agoadd bold for your user to js code j_stand_cont()
Matteo Nastasi [Fri, 17 Apr 2020 06:08:25 +0000 (08:08 +0200)]
add bold for your user to js code j_stand_cont()

6 years agoremove bold from standup_content for your user (WIP)
Matteo Nastasi [Fri, 17 Apr 2020 06:00:39 +0000 (08:00 +0200)]
remove bold from standup_content for your user (WIP)

6 years agoadd bold for your user to js code
Matteo Nastasi [Fri, 17 Apr 2020 05:42:03 +0000 (07:42 +0200)]
add bold for your user to js code

6 years agoremove bold from table_content for your user (WIP)
Matteo Nastasi [Fri, 17 Apr 2020 05:40:44 +0000 (07:40 +0200)]
remove bold from table_content for your user (WIP)

6 years agoassign myname js variable
Matteo Nastasi [Fri, 17 Apr 2020 05:32:55 +0000 (07:32 +0200)]
assign myname js variable

6 years agoupdate version to 5.8.0 v5.8.0
Matteo Nastasi [Fri, 17 Apr 2020 04:55:23 +0000 (06:55 +0200)]
update version to 5.8.0

6 years agoindentation refactoring of brisk.phh file
Matteo Nastasi [Thu, 16 Apr 2020 15:59:55 +0000 (17:59 +0200)]
indentation refactoring of brisk.phh file

6 years agolog_legal function usable without a valid user instance as parameter add-profile
Matteo Nastasi [Thu, 16 Apr 2020 09:50:01 +0000 (11:50 +0200)]
log_legal function usable without a valid user instance as parameter

6 years agoadd G_profile to config template
Matteo Nastasi [Thu, 16 Apr 2020 07:15:38 +0000 (09:15 +0200)]
add G_profile to config template

6 years agoadd some basic profiling
Matteo Nastasi [Thu, 16 Apr 2020 07:07:24 +0000 (09:07 +0200)]
add some basic profiling

6 years agofix wrong out_queue placement
Matteo Nastasi [Sun, 12 Apr 2020 06:36:36 +0000 (08:36 +0200)]
fix wrong out_queue placement

6 years agotry close when socket return 0 bytes
Matteo Nastasi [Sat, 11 Apr 2020 15:36:52 +0000 (17:36 +0200)]
try close when socket return 0 bytes

6 years agowebsocket graceful shutdown and safety queue
Matteo Nastasi [Sat, 11 Apr 2020 15:36:22 +0000 (17:36 +0200)]
websocket graceful shutdown and safety queue

6 years agoMerge remote-tracking branch 'origin/master' into wr-on-ws
Matteo Nastasi [Sat, 11 Apr 2020 07:23:30 +0000 (09:23 +0200)]
Merge remote-tracking branch 'origin/master' into wr-on-ws

Conflicts:
web/Obj/brisk.phh

6 years agoupdate version to 5.7.0
Matteo Nastasi [Sat, 11 Apr 2020 06:07:49 +0000 (08:07 +0200)]
update version to 5.7.0

6 years agofixed direct_socket string fdpass2-pool fdpass2-pull
Matteo Nastasi [Sat, 4 Apr 2020 19:00:54 +0000 (21:00 +0200)]
fixed direct_socket string

6 years agosharding on sockets with input data
Matteo Nastasi [Sat, 4 Apr 2020 18:58:52 +0000 (20:58 +0200)]
sharding on sockets with input data

6 years agopull of unix socket to interact with apache2
Matteo Nastasi [Sat, 4 Apr 2020 11:24:18 +0000 (13:24 +0200)]
pull of unix socket to interact with apache2

6 years agorefine ping management
Matteo Nastasi [Tue, 31 Mar 2020 11:45:57 +0000 (13:45 +0200)]
refine ping management

6 years agoupdate version to 5.6.1
Matteo Nastasi [Tue, 31 Mar 2020 11:10:19 +0000 (13:10 +0200)]
update version to 5.6.1

6 years agofix ping request and _rd close case
Matteo Nastasi [Tue, 31 Mar 2020 11:06:56 +0000 (13:06 +0200)]
fix ping request and _rd close case

6 years agoupdate 'ws_msg' content v5.6.0
Matteo Nastasi [Sun, 29 Mar 2020 18:26:34 +0000 (20:26 +0200)]
update 'ws_msg' content

6 years agosome cleanup
Matteo Nastasi [Sun, 29 Mar 2020 18:23:37 +0000 (20:23 +0200)]
some cleanup

6 years agotypo fixed
Matteo Nastasi [Sun, 29 Mar 2020 18:20:01 +0000 (20:20 +0200)]
typo fixed

6 years agoupdate version to 5.6.0
Matteo Nastasi [Sun, 29 Mar 2020 18:17:33 +0000 (20:17 +0200)]
update version to 5.6.0

6 years agomanage briskin5 index_wr.php
Matteo Nastasi [Sun, 29 Mar 2020 18:15:54 +0000 (20:15 +0200)]
manage briskin5 index_wr.php

6 years agofix typo
Matteo Nastasi [Sun, 29 Mar 2020 14:06:45 +0000 (16:06 +0200)]
fix typo