Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Small corrections | 68c2120f6bb1cd04e3c35b18fee8c2ce89c525bb | Catalin(ux) M. BOIE | 2017-07-09 06:36:59 |
tests: deal with the case when ControlMaster is not 'no' | 7fc439c93b2e9df218292d20fbe50606d770955f | Catalin(ux) M. BOIE | 2017-07-09 06:35:36 |
Do not use http_host anymore | af14b07381106cbc015aa6620d587b7e64ce7ed5 | Catalin(ux) M. BOIE | 2017-07-09 06:34:32 |
ssh_host and git_host must not depend on http host | 4677add26d7c03541cdd412d9fdc420ec79867b2 | Catalin(ux) M. BOIE | 2017-07-09 06:31:52 |
TODO: some updates | 5b264972f3127c9fcceab83014598957d4dd38b1 | Catalin(ux) M. BOIE | 2017-07-09 06:30:32 |
duilder: add also samples directory | e5c3dc7c1dc5db3062705838082d96e0579e42db | Catalin(ux) M. BOIE | 2017-07-09 06:29:34 |
More debugging added to webhooks | 87d72dd3b50917b04e072d95ca22a0d639853701 | Catalin(ux) M. BOIE | 2017-07-09 06:28:38 |
Anonymize also admin init parameters | 18786c9c9c1329e08f07120aa8a8d93a9630989b | Catalin(ux) M. BOIE | 2017-07-06 18:37:28 |
Activate the caching also for HTTP/2.0 | 063b7e36532874272048f1d193176499e834b0a0 | Catalin(ux) M. BOIE | 2017-07-06 18:24:34 |
Improve host name auto-detection problems to work in VM env | b56dd82ac1db3ca2cc4478af65b27909f05dd228 | Catalin(ux) M. BOIE | 2017-07-06 17:58:10 |
compare: added number of lines | c847d9da61749de86ffa0199f26cd68f4b80cc3a | Catalin(ux) M. BOIE | 2017-07-06 17:53:57 |
Added a make target to compute the number of lines | 8695380c12480b1b7b8bc9c5f1ec63a115742d9f | Catalin(ux) M. BOIE | 2017-07-06 17:53:16 |
tests: fixed wh_http - time race closed | 8f182423103c8fc2a4be10840b08be0564e2c814 | Catalin(ux) M. BOIE | 2017-07-02 07:01:12 |
Add texts about the under age and about what laws you have to respect | 65af692eec97a62e7c2212e558aa3b6bc4d925ba | Catalin(ux) M. BOIE | 2017-07-01 20:21:06 |
If we get an error when checking the db version, just exit, do not try to do updates. | 20a3c8e9fbcadcab05c1a24428b06c7dc6c39f7d | Catalin(ux) M. BOIE | 2017-06-30 18:56:45 |
rpm: Forgot to create nginx conf.d folder | a2d33471bd782be5aea6ea72f8e21842fc3be07d | Catalin(ux) M. BOIE | 2017-06-25 10:25:42 |
Bumped version to 0.69 | 2411fe5ef068cf6a8b546edcecaac25363755275 | Catalin(ux) M. BOIE | 2017-06-25 08:20:15 |
TODO updates | 56321b504fdcb1724f590981b29e6731ba0c8607 | Catalin(ux) M. BOIE | 2017-06-25 08:19:11 |
tests: switch to nginx; small fixes for the 'log' test | 6c75b7de3db4135071155fcaebc4b7220ee966ed | Catalin(ux) M. BOIE | 2017-06-25 08:18:20 |
Apache sample config fixes | a030309a796a84b99bc9568fe81291305492bf10 | Catalin(ux) M. BOIE | 2017-06-25 07:59:46 |
File | Lines added | Lines deleted |
---|---|---|
inc/admin.inc.php | 1 | 1 |
inc/ssh.inc.php | 2 | 2 |
File inc/admin.inc.php changed (mode: 100644) (index 3defc63..de14172) | |||
... | ... | function rg_init($db, $rg) | |
251 | 251 | // Makes no sense to confirm the admin account | // Makes no sense to confirm the admin account |
252 | 252 | $rg['rg_account_email_confirm'] = 0; | $rg['rg_account_email_confirm'] = 0; |
253 | 253 | ||
254 | $ret .= rg_template('user/create_ok.html', $rg, TRUE /* xss */); | ||
254 | $ret .= rg_template('user/create_ok.html', $rg, TRUE /*xss*/); | ||
255 | 255 | $load_form = FALSE; | $load_form = FALSE; |
256 | 256 | break; | break; |
257 | 257 | } | } |
File inc/ssh.inc.php changed (mode: 100644) (index 60f67ef..3e530d8) | |||
... | ... | function rg_ssh_status($db, $uid) | |
15 | 15 | ||
16 | 16 | echo 'Here will be the status.' . "\n"; | echo 'Here will be the status.' . "\n"; |
17 | 17 | ||
18 | // also details about payments: warn if disk space is low etc. | ||
18 | // also details about payments, warn if disk space is low etc. | ||
19 | 19 | } | } |
20 | 20 | ||
21 | 21 | /* | /* |
... | ... | function rg_ssh_totp($db, $ip, $uid, $paras) | |
255 | 255 | ||
256 | 256 | $r = rg_totp_unenroll($db, $uid); | $r = rg_totp_unenroll($db, $uid); |
257 | 257 | if ($r !== TRUE) { | if ($r !== TRUE) { |
258 | fwrite(STDERR< 'Error: ' . rg_totp_error() . ".\n"); | ||
258 | fwrite(STDERR, 'Error: ' . rg_totp_error() . ".\n"); | ||
259 | 259 | break; | break; |
260 | 260 | } | } |
261 | 261 |