Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Default statistics are now per month | c312ad532190fe566f2243881a883568b4f77c23 | Catalin(ux) M. BOIE | 2020-08-23 12:35:36 |
events: when splitting an event we need a transaction | e685c800814365661b348c0d04aa8c0b3605ed7e | Catalin(ux) M. BOIE | 2020-08-21 04:35:17 |
Fix for a bug preventing partition table to be created in advance | 51049495934efa8c7bca710c6f2538f34bc4de9a | Catalin(ux) M. BOIE | 2020-08-20 04:03:49 |
cron fixes | 910c74f83740da015d654193025cd6433324a1da | Catalin(ux) M. BOIE | 2020-08-20 03:41:07 |
replaced 'slave' with 'part' | 348a2afcaedd77c7513b5e7dd05364f5e9ae7a87 | Catalin(ux) M. BOIE | 2020-08-20 03:40:43 |
Make cron tasks more resilient in case the machine is stopped | afbe8607b4608862787bf696f71027beb345701f | Catalin(ux) M. BOIE | 2020-08-19 06:08:34 |
Cosmetic | 21956573027d83eb45913b6bf30eeb57e602aea4 | Catalin(ux) M. BOIE | 2020-08-19 06:07:45 |
Added time of upload for artifacts | fd33fe0aeef09f66d74f3ec1554312a2fa5e2642 | Catalin(ux) M. BOIE | 2020-08-19 06:06:54 |
css fixes for table scroll | 77e486f3c9e3c9356985d3c21bc713d8a8d0e223 | Catalin(ux) M. BOIE | 2020-08-19 06:02:09 |
Added git repo size | 9828b1fe96e2217ead8863f7a7c0ee3599d16633 | Catalin(ux) M. BOIE | 2020-08-19 06:01:27 |
Change artifacts path to be able to compute correct sizes | efff16c88415dfca0a4b52981b44620e52778c03 | Catalin(ux) M. BOIE | 2020-08-19 05:56:17 |
Some state was not under transaction | fd51b92442fb83fc6941f94b22236f5014f0062c | Catalin(ux) M. BOIE | 2020-08-19 03:24:28 |
Added artifacts size to repos and users tables | 2a8469e3416e63e9bb21ba0e412583fc69fea115 | Catalin(ux) M. BOIE | 2020-08-19 03:23:58 |
No need to invalidate last part ts because we already check | 75cf0ae1721d9473bb8df780cc61f5c6247a7a6c | Catalin(ux) M. BOIE | 2020-08-19 03:20:19 |
Fixed some spaces in profiling | 929b95c5d842ffe306031f2ba99d23e435855155 | Catalin(ux) M. BOIE | 2020-08-18 07:11:30 |
Added a link to tutorials in the welcome mail | 2ef5795e53a26fdc1f9a2adda7bbf7a4f4ccb81f | Catalin(ux) M. BOIE | 2020-08-17 07:08:15 |
Change the mail goal | bffa2a1f9a4b185916b700b3e8455bbf6f7a82bf | Catalin(ux) M. BOIE | 2020-08-17 06:59:35 |
One of the tests was not ran | bb295b59daee2158c1a9c435a267d4d2377d36e9 | Catalin(ux) M. BOIE | 2020-08-17 06:47:52 |
Doc improvement | 039b77222a8fb6e38be0b9a35329c13f86c890af | Catalin(ux) M. BOIE | 2020-08-17 06:47:27 |
Fixed form generation test | b1ca5d96c15271fbe8a595a22227d15f917779dc | Catalin(ux) M. BOIE | 2020-08-17 06:46:56 |
File | Lines added | Lines deleted |
---|---|---|
inc/stats/stats.php | 2 | 2 |
File inc/stats/stats.php changed (mode: 100644) (index bdaf029..62f8587) | |||
1 | 1 | <?php | <?php |
2 | 2 | include_once(__DIR__ . '/../graph.inc.php'); | include_once(__DIR__ . '/../graph.inc.php'); |
3 | 3 | ||
4 | $_sub = empty($paras) ? 'year' : array_shift($paras); | ||
4 | $_sub = empty($paras) ? 'month' : array_shift($paras); | ||
5 | 5 | switch ($_sub) { | switch ($_sub) { |
6 | default: | ||
6 | 7 | case 'month': | case 'month': |
7 | 8 | $period = 'hour'; | $period = 'hour'; |
8 | 9 | $start = gmmktime(0, 0, 0, gmdate('m') - 1, gmdate('d'), gmdate('Y')); | $start = gmmktime(0, 0, 0, gmdate('m') - 1, gmdate('d'), gmdate('Y')); |
... | ... | case '12hours': | |
16 | 17 | break; | break; |
17 | 18 | ||
18 | 19 | case 'year': | case 'year': |
19 | default: | ||
20 | 20 | $period = 'day'; | $period = 'day'; |
21 | 21 | $start = gmmktime(0, 0, 0, gmdate('m'), gmdate('d'), gmdate('Y') - 1); | $start = gmmktime(0, 0, 0, gmdate('m'), gmdate('d'), gmdate('Y') - 1); |
22 | 22 | $end = gmmktime(0, 0, 0, gmdate('m'), gmdate('d') + 1, gmdate('Y')) - 1; | $end = gmmktime(0, 0, 0, gmdate('m'), gmdate('d') + 1, gmdate('Y')) - 1; |