Subject | Hash | Author | Date (UTC) |
---|---|---|---|
If a repo is non-existent, we should not try to use the id | bcb08f74e21556aa750920335ebec2f965e72f36 | Catalin(ux) M. BOIE | 2020-06-10 08:05:43 |
If no activity, average elap is not computed correctly | a7d4f0042c912d29f7943e0446820a477f42d6f7 | Catalin(ux) M. BOIE | 2020-06-09 07:03:21 |
When a user is requesting an e-mail confirmation operation, ignore if the e-mail was confirmed | 62c387ed431d0c46d16e534cc1c954557ee389f7 | Catalin(ux) M. BOIE | 2020-06-08 06:42:22 |
Reverse test messed the creation of partition tables; more debugging | d820816c2624549e0b0e1634523717cda0b7ba66 | Catalin(ux) M. BOIE | 2020-06-05 17:33:08 |
We need to prepare the partition tables before some inserts | 07a12d1c79104b4707a9d43463fa9c11a4697293 | Catalin(ux) M. BOIE | 2020-06-05 15:55:43 |
.spec updates | 5fe0aca1b4a3bfd8c1c8db95409faf512ad09b43 | Catalin(ux) M. BOIE | 2020-06-04 22:03:57 |
Switch to Podman (because of Fedora 32) and fix the worker service in the spec file | 05b3866cd09b0aa8367d3b5755f45ea7274658de | Catalin(ux) M. BOIE | 2020-06-04 15:50:41 |
Added sample configuration for workers | df36ccd20e40987a4ca2355062ee1312aa2ee3a2 | Catalin(ux) M. BOIE | 2020-06-04 15:14:52 |
Avoid complains from install for systemd daemon-reload | 683a92542cc0608293ceefc111a05e1eb328a2d8 | Catalin(ux) M. BOIE | 2020-06-04 15:09:57 |
Small stuff | e64a838d032e54587ab3110ab8bb04a0cde78231 | Catalin(ux) M. BOIE | 2020-06-04 14:49:56 |
Lots of changes | b8164d9e1e263eb4db75e32430f0753b63d0028e | Catalin(ux) M. BOIE | 2020-06-04 07:14:35 |
Lots of small fixes and functional tests | ad2c8f4ce214896cb5984031dbd916467878ccfd | Catalin(ux) M. BOIE | 2020-05-16 09:30:47 |
Lots of things, mostly worker fixes | 8768227306ef89ecc51d392cf986e75a7044dde4 | Catalin(ux) M. BOIE | 2020-04-10 15:27:11 |
Added functional test for HTTP 304 code | 93205ec14d1073c434360abf7ea525a75407b1ab | Catalin(ux) M. BOIE | 2020-04-02 14:05:49 |
Lots of changes all over the place | 3ddbd9e686f514eed1e715d7702a910ca3f8b22c | Catalin(ux) M. BOIE | 2020-04-01 07:17:57 |
More tests updates | d5d45ace725f6ab336998a328136a2f7f9474df1 | Catalin(ux) M. BOIE | 2020-04-01 05:30:54 |
Lots of tests updates | 183c4af52e56ae4e4fd74a35e2b17ac79952aec6 | Catalin(ux) M. BOIE | 2020-03-20 16:10:33 |
Improved a little bit the mail reporting for admin | 576f96d554b1e273391ac54404bf5f885325e5e8 | Catalin(ux) M. BOIE | 2020-03-03 19:25:17 |
Worker and builder big changes | 90f596e4fd8fa291b1da831bce609b486c7a5875 | Catalin(ux) M. BOIE | 2020-01-06 13:31:20 |
Samples update (switch to systemd services for builder and worker) | 8bfde1fb79778d024350bf5d75f076fb5e178512 | Catalin(ux) M. BOIE | 2020-01-06 12:50:21 |
File | Lines added | Lines deleted |
---|---|---|
root/index.php | 3 | 2 |
File root/index.php changed (mode: 100644) (index bfc0c5d..01b217b) | |||
... | ... | $rg['rg_theme_url'] = '/themes/' . rawurlencode($rg_theme); | |
56 | 56 | $rg['login_ui'] = rg_user_empty(); | $rg['login_ui'] = rg_user_empty(); |
57 | 57 | $rg['target_ui'] = array("ok" => 1, "exists" => 0, "uid" => 0); | $rg['target_ui'] = array("ok" => 1, "exists" => 0, "uid" => 0); |
58 | 58 | $rg['page_ui'] = array("ok" => 1, "exists" => 0, "uid" => 0); | $rg['page_ui'] = array("ok" => 1, "exists" => 0, "uid" => 0); |
59 | $rg['ri'] = array("repo_id" => 0, "uid" => 0); | ||
59 | $rg['ri'] = array('exists' => 0, 'repo_id' => 0, 'uid' => 0); | ||
60 | 60 | $rg['bug'] = array("bug_id" => 0); | $rg['bug'] = array("bug_id" => 0); |
61 | 61 | $rg['https'] = strcmp(rg_var_str('HTTPS'), 'on') == 0 ? 1 : 0; | $rg['https'] = strcmp(rg_var_str('HTTPS'), 'on') == 0 ? 1 : 0; |
62 | 62 | ||
... | ... | if ($r === TRUE) { | |
284 | 284 | $_c = rg_template('index.html', $rg, TRUE /*xss*/); | $_c = rg_template('index.html', $rg, TRUE /*xss*/); |
285 | 285 | ||
286 | 286 | rg_stats_conns_set('uid', $rg['page_ui']['uid']); | rg_stats_conns_set('uid', $rg['page_ui']['uid']); |
287 | rg_stats_conns_set('repo_id', $rg['ri']['repo_id']); | ||
287 | if ($rg['ri']['exists'] > 0) | ||
288 | rg_stats_conns_set('repo_id', $rg['ri']['repo_id']); | ||
288 | 289 | } | } |
289 | 290 | ||
290 | 291 | if ($skip_etag_and_compression == FALSE) { | if ($skip_etag_and_compression == FALSE) { |