List of commits:
Subject Hash Author Date (UTC)
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
Do not allow adding bugs if not logged in 32db254689f7419fcea479985bbeff5cc579f7e7 Catalin(ux) M. BOIE 2020-08-17 06:45:46
markdown format improvements bc1cc389bc851af6d0fb186bcfaf47525e235b6b Catalin(ux) M. BOIE 2020-08-17 06:45:01
Set the user's last IP also if she never logged in 556ff3e7df07863f977caac1cb25906f8c307583 Catalin(ux) M. BOIE 2020-08-17 06:44:03
Cosmetic d2a744bd020154afa13961f9d3d3da4c51853ff4 Catalin(ux) M. BOIE 2020-08-17 06:42:23
Improved nginx ssl configuration (mostly stapling) a029f78cc3f66605dd95dfcc2abc9976ee1f7076 Catalin(ux) M. BOIE 2020-08-06 05:05:49
Tutorials updates (artifacts and CI) 36ee6f7b792f32a8567c3f2f31088559ab6cd27a Catalin(ux) M. BOIE 2020-08-05 06:16:33
Added Markdown test 23455db9b6ce8a82245f06de6e3d7c7e6b706464 Catalin(ux) M. BOIE 2020-07-31 05:41:46
Some SELinux cosmetic 3bafeaa06231a67dcc66d37b50a6f5411b2bfbf9 Catalin(ux) M. BOIE 2020-07-31 05:41:28
Mostly cosmetic plus some tests 1a538fff7a4886395612471211eeca0c091e6864 Catalin(ux) M. BOIE 2020-07-31 05:41:02
Added a custom Markdown parser 67b9687fb858ba1018d58edd276836a0411acd1e Catalin(ux) M. BOIE 2020-07-31 05:39:49
Add an index variable to rg_template_table f310f34a6c9a2a029d479d14d86e8ea2393ee3dd Catalin(ux) M. BOIE 2020-07-31 05:39:29
Commit fd51b92442fb83fc6941f94b22236f5014f0062c - Some state was not under transaction
Author: Catalin(ux) M. BOIE
Author date (UTC): 2020-08-19 03:24
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2020-08-19 03:24
Parent(s): 2a8469e3416e63e9bb21ba0e412583fc69fea115
Signing key:
Tree: 0369b775d4d217571fa9451be27af8c2bae3d4bc
File Lines added Lines deleted
inc/struct.inc.php 6 4
File inc/struct.inc.php changed (mode: 100644) (index 897aca9..da1fbdd)
... ... function rg_sql_struct_slaves_update($db)
957 957 } }
958 958 $rows = rg_sql_num_rows($res); $rows = rg_sql_num_rows($res);
959 959 rg_sql_free_result($res); rg_sql_free_result($res);
960 if ($rows > 0)
960 if ($rows > 0) {
961 rg_log('Table already exists.');
961 962 continue; continue;
963 }
962 964
963 965 $sql = 'CREATE TABLE ' . $slave_table $sql = 'CREATE TABLE ' . $slave_table
964 966 . ' (CHECK(itime >= ' . $ts . ' AND itime <= ' . ($next_ts - 1) . '))' . ' (CHECK(itime >= ' . $ts . ' AND itime <= ' . ($next_ts - 1) . '))'
 
... ... function rg_sql_struct_slaves_update($db)
1010 1012 break; break;
1011 1013 } }
1012 1014
1013 if (rg_sql_commit($db) !== TRUE)
1014 break;
1015
1016 1015 $r = rg_state_set($db, 'slaves_create_last_list', $cur_list); $r = rg_state_set($db, 'slaves_create_last_list', $cur_list);
1017 1016 if ($r !== TRUE) { if ($r !== TRUE) {
1018 1017 rg_log('Cannot set slaves_create_last_list (' . rg_state_error() . ')'); rg_log('Cannot set slaves_create_last_list (' . rg_state_error() . ')');
1019 1018 break; break;
1020 1019 } }
1021 1020
1021 if (rg_sql_commit($db) !== TRUE)
1022 break;
1023
1022 1024 $rollback = 0; $rollback = 0;
1023 1025 $ret = TRUE; $ret = TRUE;
1024 1026 break; break;
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main