List of commits:
Subject Hash Author Date (UTC)
Fetch for public repo smust have prio 1 not 30001 4dc521603485fd804d4cdeed0819c432f1120e55 Catalin(ux) M. BOIE 2015-12-11 17:30:26
Added 'lock repo' feature 64c5b48e8f769d5f4357ecba80529d649d65df6f Catalin(ux) M. BOIE 2015-12-11 17:28:47
trim description - eles an empty line will show up e512914d92723c7f8aecab4fcf99edbffbc8e795 Catalin(ux) M. BOIE 2015-12-08 19:15:40
First draft for Amazon 8eb80fe68d9586688e4b9b16f0cd80f936501af8 Catalin(ux) M. BOIE 2015-12-08 18:47:17
Add 'watch' button for user; corrected 'watch' bugs 73ca78916920d60c12725c709d136e80238aa1eb Catalin(ux) M. BOIE 2015-12-07 19:49:48
TODO updates, log last webhook output 24895c5ccb8c47315bd6897f2a60f9c8c3b3d6b1 Catalin(ux) M. BOIE 2015-12-06 17:04:56
keys: add some caching and prevent updating first_use if not necessary 35a152bc27fb1791f3f9d8ad1287c3847ed334a1 Catalin(ux) M. BOIE 2015-12-05 17:21:19
Deal correctly with cache regarding last_bug_id 705351cdea6af55f9dd61de0d85d41b8ac33fc88 Catalin(ux) M. BOIE 2015-12-03 21:01:08
Settle to Affero GPLv3+ 679d4032059256a01610e65cbff5496d32d9fc7d Catalin(ux) M. BOIE 2015-12-03 19:40:12
Missing Affero dee2c08fc8a0371ac37f6f00bf7f3e2e01f92e92 Catalin(ux) M. BOIE 2015-12-03 19:36:10
DO not show 2fa hint for a visiting user 4ff8837ef0f45572592f1d81724737b3732a046a Catalin(ux) M. BOIE 2015-12-03 17:25:24
Let the user choose the e-mail, no defaults should be suggested 09450741613a407c09bb465bff8a3c19c565df9a Catalin(ux) M. BOIE 2015-12-02 18:12:08
Pass uid for all events; more fixes for unit tests 866e43baf739ae7072949559d1c7e089c086af76 Catalin(ux) M. BOIE 2015-11-19 19:28:26
404 http error was receive for showing blobs ending in .php or .html ff87d956360a86e88a751d4c391585c84bb1e132 Catalin(ux) M. BOIE 2015-11-18 20:32:50
When creating an array, last_bug_id is set now correctly f679840c7ac3879aae69f488c561a5bd73ce71f1 Catalin(ux) M. BOIE 2015-11-18 19:14:48
We allow empty description for bugs c5a1b4057963eac575cc3d0d4872c4519fea80b0 Catalin(ux) M. BOIE 2015-11-18 18:26:39
Show the repo # on main repo page c72f4d8627ab577a92c5531ed7afb9e55a6bfd1b Catalin(ux) M. BOIE 2015-11-18 18:25:00
Bumped version to 0.42 8e9fab68ff08040402c0aa25539d1e8b29258f7d Catalin(ux) M. BOIE 2015-11-18 18:14:40
Renamed the virtual machines files 040c9f3a87826a52713b3b5f48d19c83236f8aa8 Catalin(ux) M. BOIE 2015-11-18 18:13:57
Admin user must not confirm the account by e-mail 0a81a2824087d9dcd2d1981c860946fd49cc8bf7 Catalin(ux) M. BOIE 2015-11-18 18:04:26
Commit 4dc521603485fd804d4cdeed0819c432f1120e55 - Fetch for public repo smust have prio 1 not 30001
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-12-11 17:30
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-12-11 17:30
Parent(s): 64c5b48e8f769d5f4357ecba80529d649d65df6f
Signing key:
Tree: b362f18ff1658b860d5f50182cfff9f2cefe0561
File Lines added Lines deleted
inc/repo.inc.php 7 0
File inc/repo.inc.php changed (mode: 100644) (index c77d822..656c086)
... ... function rg_repo_rights_inject($db, $obj_id, $type, $owner, $uid)
118 118 $ret[] = $a; $ret[] = $a;
119 119 } else if (strcmp($type, "repo_refs") == 0) { } else if (strcmp($type, "repo_refs") == 0) {
120 120 $a['uid'] = 0; $a['uid'] = 0;
121 $a['prio'] = 1;
121 122 $a['rights'] = "F"; // Fetch $a['rights'] = "F"; // Fetch
122 123 $a['description'] = 'Autogenerated (repo is public)'; $a['description'] = 'Autogenerated (repo is public)';
123 124 $ret[] = $a; $ret[] = $a;
125
126 $a['uid'] = 0;
127 $a['prio'] = 30001;
128 $a['rights'] = "H"; // push + whitespace
129 $a['description'] = 'Autogenerated (sane default)';
130 $ret[] = $a;
124 131 } else if (strcmp($type, "repo_path") == 0) { } else if (strcmp($type, "repo_path") == 0) {
125 132 } else { } else {
126 133 rg_log("type $type not used. bug?"); rg_log("type $type not used. bug?");
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