List of commits:
Subject Hash Author Date (UTC)
When we add a repo, we have some variables that are not filled f9b52eec5cd0decb886f87007a3d0a9826265a3a Catalin(ux) M. BOIE 2016-01-05 20:07:48
Small changes all over the place; first version with docker 657c8c4be46ae950d519320d1d54aa2f65a577d6 Catalin(ux) M. BOIE 2016-01-05 17:09:04
Cannot use env vars from cron 9c3b7123869564217493ab43c4bafdea2ce15702 Catalin(ux) M. BOIE 2016-01-03 08:45:51
Bump version to 0.44 bb334f3f3ec2af94da578b6c2e9202b339f80f36 Catalin(ux) M. BOIE 2016-01-02 23:25:39
Minor changes all over the place. 66c13a18b41d19e41e48aac537b735963bbb1f5a Catalin(ux) M. BOIE 2016-01-02 23:03:15
Set a timezone if is not set globally 0fb57c1d20aebfaaa6c1c48125b39aa8d7765923 Catalin(ux) M. BOIE 2016-01-02 21:09:41
If SELinux is not enabled, do not check the label 6a4a54c986eae48b6dfb56c33b5ac4498935669e Catalin(ux) M. BOIE 2016-01-02 09:13:32
0.43 release e0656f4559fa64d94a12bc650dd26fde02e0197c Catalin(ux) M. BOIE 2016-01-01 09:11:01
CSS fixes (more flex); removed 'between' template 3425b4b9d8744d21f2b581a9f09f563cd0c84e01 Catalin(ux) M. BOIE 2015-12-31 16:07:01
Drop old and empty slave tables 49acbf556027578733ed631c551b6cb3266d2af6 Catalin(ux) M. BOIE 2015-12-30 09:00:56
Fixes all over the code; made webhooks generic 9c1328fa3c207d9bc109c2dd486999318a215d84 Catalin(ux) M. BOIE 2015-12-29 07:40:56
Fixed submodule link (reported by Gabi B) 43e213676ffb27fabc4d0137337ac6e332185a33 Catalin(ux) M. BOIE 2015-12-20 08:07:14
Sort rights by prio for real f2626cb2fcfedd9c567b1fa50ce9521981241693 Catalin(ux) M. BOIE 2015-12-18 05:49:52
When editing rights, do not filter by uid. Reported by Gabi 1c50981db99bc9ba05cfa1a6e735eddc3af2a0e8 Catalin(ux) M. BOIE 2015-12-16 21:46:29
Rights and CSS fixes c16729a6930e8168b4c3fdf897319987d33b5ba7 Catalin(ux) M. BOIE 2015-12-13 19:25:35
Corrected urls to bug and notes 02032d2670f977cf4e40b2a1561527e0832a4ffa Catalin(ux) M. BOIE 2015-12-13 05:19:50
Random changes: TODO, CSS etc. 514ca23b83da81827e03c7ff8866aa29d75f0f5e Catalin(ux) M. BOIE 2015-12-11 17:56:38
Amazon CodeDeploy first "battle" plan d48b652f02ed413c089a462f493dbf7dbec27388 Catalin(ux) M. BOIE 2015-12-11 17:56:18
Explained more clear the block all rights rule 865dd66672abfb1fb0996a970f563dcc7d9a43d0 Catalin(ux) M. BOIE 2015-12-11 17:52:49
Show on user's homepage since when is a member f514219acda902ddb7ce34708ce6a107bed995b2 Catalin(ux) M. BOIE 2015-12-11 17:50:41
Commit f9b52eec5cd0decb886f87007a3d0a9826265a3a - When we add a repo, we have some variables that are not filled
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-01-05 20:07
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-01-05 20:07
Parent(s): 657c8c4be46ae950d519320d1d54aa2f65a577d6
Signing key:
Tree: aceb039e8d092305c1056aae141d36b152bf5938
File Lines added Lines deleted
inc/repo.inc.php 2 2
root/themes/default/repo/list/line.html 1 1
File inc/repo.inc.php changed (mode: 100644) (index c656ed9..35f844a)
... ... function rg_repo_cosmetic($db, &$row)
802 802 } }
803 803 $row['clone_of'] = $master_repo; $row['clone_of'] = $master_repo;
804 804
805 $row['creation'] = gmdate("Y-m-d", $row['itime']);
806 $row['disk_used'] = rg_1024($row['disk_used_mb'] * 1024 * 1024);
805 if (isset($row['disk_used_mb']))
806 $row['disk_used'] = rg_1024($row['disk_used_mb'] * 1024 * 1024);
807 807 } }
808 808
809 809 /* /*
File root/themes/default/repo/list/line.html changed (mode: 100644) (index fcdd4f2..2a70ad5)
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 3 <td><small>@@description_nlbr@@</small></td> <td><small>@@description_nlbr@@</small></td>
4 4 <td>@@clone_of@@</td> <td>@@clone_of@@</td>
5 <td>@@creation@@</td>
5 <td>@@itime_nice@@</td>
6 6 <td>@@if(@@public@@ == 1){{Public}}{{Private}}</td> <td>@@if(@@public@@ == 1){{Public}}{{Private}}</td>
7 7 <td>@@if("@@license@@" == ""){{Unspecified}}{{@@license@@}}</td> <td>@@if("@@license@@" == ""){{Unspecified}}{{@@license@@}}</td>
8 8 <td>@@disk_used@@</td> <td>@@disk_used@@</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