List of commits:
Subject Hash Author Date (UTC)
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
Mostly cosmetic in Source page cac471307a58104fbfa7838b34a7e2ffd2e05260 Catalin(ux) M. BOIE 2020-07-31 05:38:48
Do not log bots connections ef9cdff6a0cbd559f1833e46a66cbbbe726d3d99 Catalin(ux) M. BOIE 2020-07-31 05:38:13
Comparison update b67344452d66b2ed8ef53f65470d53f8b40fe59e Catalin(ux) M. BOIE 2020-07-31 05:37:38
Commit 929b95c5d842ffe306031f2ba99d23e435855155 - Fixed some spaces in profiling
Author: Catalin(ux) M. BOIE
Author date (UTC): 2020-08-18 07:11
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2020-08-18 07:11
Parent(s): 2ef5795e53a26fdc1f9a2adda7bbf7a4f4ccb81f
Signer:
Signing key:
Signing status: N
Tree: 1a7bfc526f6a0ce62f552bd3d2b4d77575bdf950
File Lines added Lines deleted
inc/prof.inc.php 14 9
root/themes/default/admin/mails/invites/invites.html 0 0
root/themes/default/admin/mails/invites/sent.html 0 0
File inc/prof.inc.php changed (mode: 100644) (index 7a5d334..ad270b8)
... ... function rg_prof_text()
148 148 { {
149 149 global $rg_prof_main; global $rg_prof_main;
150 150
151 $ret = "";
151 $ret = '';
152 $limit = 28;
152 153
153 154 // get all possible variables // get all possible variables
154 155 $vars = array(); $vars = array();
 
... ... function rg_prof_text()
160 161 // sort by time_ms // sort by time_ms
161 162 uasort($rg_prof_main, "rg_prof_sort"); uasort($rg_prof_main, "rg_prof_sort");
162 163
163 $ret .= str_pad("Profiling:", 22, ' ');
164 foreach ($vars as $k => $v)
165 $ret .= "\t" . $k;
164 $add = '';
165 $ret .= str_pad('Profiling:', $limit, ' ');
166 foreach ($vars as $k => $v) {
167 $ret .= $add . $k;
168 $add = "\t";
169 }
166 170 $ret .= "\n"; $ret .= "\n";
167 171
168 172 $add = ""; $add = "";
 
... ... function rg_prof_text()
173 177 $ret .= $add; $ret .= $add;
174 178 $add = "\n"; $add = "\n";
175 179
176 if (strlen($label) >= 21)
177 $ret .= $label . "\n" . str_pad('', 22, ' ');
180 if (strlen($label) >= $limit)
181 $ret .= $label . "\n" . str_pad('', $limit, ' ');
178 182 else else
179 $ret .= str_pad($label, 22, ' ');
183 $ret .= str_pad($label, $limit, ' ');
180 184
185 $add2 = '';
181 186 foreach ($vars as $k => $junk) { foreach ($vars as $k => $junk) {
182 187 if (!isset($per_label[$k])) if (!isset($per_label[$k]))
183 188 $v = 0; $v = 0;
184 189 else else
185 190 $v = $per_label[$k]; $v = $per_label[$k];
186 $ret .= "\t$v";
191 $ret .= $add2 . $v;
192 $add2 = "\t";
187 193 } }
188 194 } }
189 195
 
... ... function rg_prof_log()
198 204 rg_log("peak: " . sprintf("%.2f MiB", memory_get_peak_usage(TRUE) / 1024 / 1024)); rg_log("peak: " . sprintf("%.2f MiB", memory_get_peak_usage(TRUE) / 1024 / 1024));
199 205 } }
200 206
201 ?>
File root/themes/default/admin/mails/invites/invites.html renamed from root/themes/default/admin/invites/invites.html (similarity 100%)
File root/themes/default/admin/mails/invites/sent.html renamed from root/themes/default/admin/invites/sent.html (similarity 100%)
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