List of commits:
Subject Hash Author Date (UTC)
Limit the desciption of the project to 100 chars to be able to pack more repos per page 1d2714726347b1eb9f113bd9c4d65d301d6502bd Catalin(ux) M. BOIE 2019-09-22 04:59:11
Changed CIF 47e6a7b3939898729d4344b8e3a01ac0dbd3e3b1 Catalin(ux) M. BOIE 2019-09-22 04:42:59
Added git_log1_strange.php to generate strange filenames 66083c9e3e6633c953bd5e77f28d993687ef2b73 Catalin(ux) M. BOIE 2019-09-17 20:01:10
tests: cosmetic stuff 7688f7b901e0fe3a94e2fcb62755af159212d053 Catalin(ux) M. BOIE 2019-09-17 20:00:04
If rg_dir_load returns false, propagate the error 6c8640b1200ae7859097e66dd73ba75857a845a5 Catalin(ux) M. BOIE 2019-09-17 19:48:25
rg_exec - do not return if the program closes stderr c619b6bc77b3a9bd1c4dea8a01ba3422620f4c90 Catalin(ux) M. BOIE 2019-09-17 19:47:26
rg_git_from_to: if to is empty, ignore it. 310506eab4b45a96cd75b69cfe72c54c7c5aa0e6 Catalin(ux) M. BOIE 2019-09-17 19:30:44
TODO changes 25a5232ed436fe23e7f21c8caa6934d3bfcbd6d7 Catalin(ux) M. BOIE 2019-09-17 19:25:33
Did some debug changes for git 25fbc904e16076cc6117a1bb900326344dba9d37 Catalin(ux) M. BOIE 2019-09-17 19:24:23
Add rg_log_sid value to all push methods, to be able to identify the log from the user reports 4111a8a6ba1e100b3e01d277b2bc7968df9639b1 Catalin(ux) M. BOIE 2019-09-17 19:06:32
AUTHORS file update 69efc5c7617404728506b380a57cf8336a45c2fc Catalin(ux) M. BOIE 2019-09-17 19:03:59
Added TLS1.3 to the list of protocols for nginx c9fe2cc833c1a9636eab4baa2c388b2ea073ecbb Catalin(ux) M. BOIE 2019-09-17 19:03:23
History updates 3de26500d13dc1eafa00fa4721704c5cfe372fd7 Catalin(ux) M. BOIE 2019-09-17 19:01:08
Destroy confirmation link after use 6794a957bf695525b1a171eb6b602d228fd0f725 Catalin(ux) M. BOIE 2019-04-01 17:41:47
Show rg_log_sid into the user output to help identifying the logs f272e87bcb5fef0e34459c5025b3d4bc796dab6d Catalin(ux) M. BOIE 2018-08-29 21:40:36
SELinux updates 04b76e731f34762838434e8412e283be7360d188 Catalin(ux) M. BOIE 2018-08-29 21:36:29
Corrected wrong help for ssh 2fa 04f8223c0c8fc585d3c7882c17ba4ecb7c22d0b5 Catalin(ux) M. BOIE 2018-08-29 21:36:16
ldap changes 89e6848701e4c27d0f089393c7591302c45c57d4 Catalin(ux) M. BOIE 2018-08-29 21:35:56
Allow login token to be appended to the password 8a5b003845f54d2771beaec7b14b96b2029ee9db Catalin(ux) M. BOIE 2018-08-29 21:35:16
Cosmetic changes for the theme e8ed0db5fd9b41c5a63e1e171adb615a33817da8 Catalin(ux) M. BOIE 2018-08-29 21:32:36
Commit 1d2714726347b1eb9f113bd9c4d65d301d6502bd - Limit the desciption of the project to 100 chars to be able to pack more repos per page
Author: Catalin(ux) M. BOIE
Author date (UTC): 2019-09-22 04:59
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2019-09-22 04:59
Parent(s): 47e6a7b3939898729d4344b8e3a01ac0dbd3e3b1
Signer:
Signing key:
Signing status: N
Tree: b237b1ab8aef454653f0ad1f5005e2e03c19103c
File Lines added Lines deleted
inc/repo.inc.php 6 0
root/themes/default/repo/add_edit.html 1 1
root/themes/default/repo/list/line.html 1 1
File inc/repo.inc.php changed (mode: 100644) (index 9d8052a..180a48a)
... ... function rg_repo_cosmetic($db, &$row)
113 113 if (strlen(substr($row['description'], 0, 1)) == 1) { if (strlen(substr($row['description'], 0, 1)) == 1) {
114 114 $_a = rg_xss_safe($row['description']); $_a = rg_xss_safe($row['description']);
115 115 $row['HTML:description_nlbr'] = nl2br($_a); $row['HTML:description_nlbr'] = nl2br($_a);
116
117 if (mb_strlen($row['description']) > 100)
118 $row['HTML:description_short_nlbr'] = nl2br(mb_substr($row['description'], 0, 100)) . '...';
119 else
120 $row['HTML:description_short_nlbr'] = $row['HTML:description_nlbr'];
116 121 } else { } else {
117 122 $row['HTML:description_nlbr'] = 'n/a'; $row['HTML:description_nlbr'] = 'n/a';
123 $row['HTML:description_short_nlbr'] = 'n/a';
118 124 } }
119 125
120 126 if (isset($row['itime'])) if (isset($row['itime']))
File root/themes/default/repo/add_edit.html changed (mode: 100644) (index e7a336a..be135af)
23 23 </p> </p>
24 24
25 25 <p> <p>
26 <label for="description">Description</label><br />
26 <label for="description">Description (keep it under 100 chars)</label><br />
27 27 <textarea name="description" id="description" rows="4" cols="30">@@ri::description@@</textarea> <textarea name="description" id="description" rows="4" cols="30">@@ri::description@@</textarea>
28 28 </p> </p>
29 29
File root/themes/default/repo/list/line.html changed (mode: 100644) (index 680b1bf..52ce6b4)
1 1 <tr> <tr>
2 2 <td><a href="@@url_user@@">@@owner@@</a> / <a href="@@url_repo@@">@@name@@</a> (#@@repo_id@@)</td> <td><a href="@@url_user@@">@@owner@@</a> / <a href="@@url_repo@@">@@name@@</a> (#@@repo_id@@)</td>
3 <td><small>@@description_nlbr@@</small></td>
3 <td><small>@@description_short_nlbr@@</small></td>
4 4 <td>@@master_name@@</td> <td>@@master_name@@</td>
5 5 <td>@@itime_nice@@</td> <td>@@itime_nice@@</td>
6 6 <td>@@if(@@public@@ == 1){{Public}}{{Private}}</td> <td>@@if(@@public@@ == 1){{Public}}{{Private}}</td>
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