List of commits:
Subject Hash Author Date (UTC)
Add a history entry when a repo is created. 884f64b72469b10a14b086e6572b6e464ce23378 Catalin(ux) M. BOIE 2015-07-06 03:49:37
Cache improvements (no wait when no needed) and layout changes. e51ecf91f18a7533a009530075bb0710e4caae63 Catalin(ux) M. BOIE 2015-07-02 19:39:46
Seems empty additional_headers will trigger a nasty error in php. 3aaa0b5b7cc18277a8ca4b404c40b0eb15383681 Catalin(ux) M. BOIE 2015-07-02 04:53:58
Improved ls-tree operation a little bit. bb450d8c2e47b30b98f6571ef80ae310387b4823 Catalin(ux) M. BOIE 2015-06-26 04:07:16
Lots of fixes, mostly cache performance ones. c42469d7e9ea84b23776c945cb0dd46ea82a589f Catalin(ux) M. BOIE 2015-06-24 04:22:07
Use HTTP/1.1 caching only with HTTP/1.1 protocol. 7998f5b0ba9cbd06deb5a5e5270629f9213cf2b7 Catalin(ux) M. BOIE 2015-06-18 21:46:13
Bumpped version to 0.34 65d54e7a4a50527a22a4a325a2fb423b60acc77d Catalin(ux) M. BOIE 2015-06-09 16:06:42
More stuff in TODO. 16bce74aefff9696959c7b186031a4b4e36a1d79 Catalin(ux) M. BOIE 2015-06-09 16:05:05
More design stuff. a87db7c7448cd59cd2f56fb108c5ed12f01d4e06 Catalin(ux) M. BOIE 2015-06-09 16:04:49
Fixed UTF-8 chars whn connecting by ssh and issueing command repos c363832f1e7c6bc3672f823ac5c0c2f3244b4615 Catalin(ux) M. BOIE 2015-06-09 16:04:04
Add caching by using ETag / If-None-Match 132cd07d19e33b382ab4e7a0a0b0e057fe316652 Catalin(ux) M. BOIE 2015-06-09 16:03:27
Add debug support for rpm instalation. c091b24f82c135b5606181f417d2f18151d951ae Catalin(ux) M. BOIE 2015-06-06 11:00:44
SSH key fingerprint: add SHA256 support f774edcd0c17f66dd4de54aa35a543bbafaff609 Catalin(ux) M. BOIE 2015-06-04 20:31:35
Put features first in menu 33a9cef11227407d2cdf63056e71b66dd6106f62 Catalin(ux) M. BOIE 2015-06-02 19:44:51
Switch to v2 images e0d94a44d7093be83b82ea5227c0afcba22a5d27 Catalin(ux) M. BOIE 2015-05-27 03:36:13
Remove 'qcow2' reference because was not the place ec800590fd07b69f377387c8353d50f6a9430ff8 Catalin(ux) M. BOIE 2015-05-27 03:35:32
Instruct used to follow the README file after rpm install 1e1f092339a0fb4ab7c7ead080d68c1d04686d29 Catalin(ux) M. BOIE 2015-05-27 03:30:23
Lots of fixes, mostly on templating stuff. eb7e8f94fa4a2f5d82f913bcd7113287172cd450 Catalin(ux) M. BOIE 2015-05-25 18:51:36
Lots of changes all over the place. 9b39ce5e62255ff390926ef11c37b98d1d8751d2 Catalin(ux) M. BOIE 2015-05-22 03:25:46
Invites now accepts a file as the body of the e-mail and php_errormsg fixes. 31ccba6e43e02c34fa2139fe352c3799feecd249 Catalin(ux) M. BOIE 2015-05-09 04:17:40
Commit 884f64b72469b10a14b086e6572b6e464ce23378 - Add a history entry when a repo is created.
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-07-06 03:49
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-07-06 03:49
Parent(s): e51ecf91f18a7533a009530075bb0710e4caae63
Signing key:
Tree: 8a25db652881bd8505b2894ba0d210f032ff3df0
File Lines added Lines deleted
inc/repo.inc.php 12 5
File inc/repo.inc.php changed (mode: 100644) (index d59afe3..7747d9a)
... ... function rg_repo_event_new($db, $event)
274 274 $x['notification'] .= "-notify"; $x['notification'] .= "-notify";
275 275 $ret[] = $x; $ret[] = $x;
276 276
277 // TODO: notify watchers
277 // add a history entry
278 $x = $event;
279 $x['category'] = 3006;
280 $x['prio'] = 50;
281 $ret[] = $x;
282
283 // TODO: notify watchers of the user
278 284
279 285 return $ret; return $ret;
280 286 } }
 
... ... function rg_repo_edit($db, $login_ui, &$new)
973 979
974 980 if ($new['repo_id'] == 0) { if ($new['repo_id'] == 0) {
975 981 $cat = 3000; $cat = 3000;
976 $hcat = REPO_CAT_UPDATE;
977 $hmess = "Repository was updated";
982 $hcat = REPO_CAT_CREATE;
983 $hmess = "Repository was created";
978 984 $notification = "repo_create-" . $login_ui['uid'] $notification = "repo_create-" . $login_ui['uid']
979 985 . "-" . $row['repo_id']; . "-" . $row['repo_id'];
980 986 $old_description = ""; $old_description = "";
981 987 $new['repo_id'] = $row['repo_id']; $new['repo_id'] = $row['repo_id'];
982 988 } else { } else {
983 989 $cat = 3002; $cat = 3002;
984 $hcat = REPO_CAT_CREATE;
985 $hmess = "Repository was created";
990 $hcat = REPO_CAT_UPDATE;
991 $hmess = "Repository was updated";
986 992 $notification = ""; $notification = "";
987 993 $old_description = $ri['description']; $old_description = $ri['description'];
994 // TODO: we should log what changed
988 995 } }
989 996
990 997 $event = array('category' => $cat, 'prio' => 50, $event = array('category' => $cat, 'prio' => 50,
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