List of commits:
Subject Hash Author Date (UTC)
Get rid of php-mbstring: is not a standard extention 0934a66ce1a94f4066b1b7e18edbe0acb4dd3206 Catalin(ux) M. BOIE 2016-05-08 11:04:20
Corrected set_pass function cache actions e6fd4033b3018fb20d22f6e29c162b4330ec935f Catalin(ux) M. BOIE 2016-04-25 05:20:03
Cosmetic changes for config file 746371ed9154915f748f8b0bd95293e823673193 Catalin(ux) M. BOIE 2016-04-24 11:10:10
Add build_jobs table to statistics 37730a66237d430bd5a17edd9605054e694d7649 Catalin(ux) M. BOIE 2016-04-24 10:58:46
More changes to support RedHat derivates 9ac924d9ba12145d4f01d446f5141b016329eea5 Catalin(ux) M. BOIE 2016-04-24 10:52:44
Do not give internal errors if commit ID is wrong 24f863dcb0cbc5def61e820f9aa2368e61cce860 Catalin(ux) M. BOIE 2016-04-24 10:48:06
Added web instructions for RedHat based distributions cc493d13f83fd121cee56d7e0da1ec742d37b774 Catalin(ux) M. BOIE 2016-04-23 17:14:45
Bump version to v0.53 9bcae435949c6740cdab1b92ae31dea2cfa168ab Catalin(ux) M. BOIE 2016-04-23 16:51:43
Improve installation instructions for Redhat/Oracle/CentOS cf6eddb844cde38eb1ce70d8bc7d64b012b7161d Catalin(ux) M. BOIE 2016-04-23 16:51:30
Bump version to v0.52 696615520a55b963126c4ae50016e13daa6aa326 Catalin(ux) M. BOIE 2016-04-23 16:47:44
Lots of fixes and added the build hook for continuous integration be2dc0276c24d26adb9814c6b9f6d1f649c0cf1f Catalin(ux) M. BOIE 2016-04-23 16:46:04
Allow del_tree on a non-existing repository ecee062a80ca607be91942347deff00f042f6489 Catalin(ux) M. BOIE 2016-04-06 16:17:41
Improved user info caching a0ec540e7be1aa620a559c6f77537b9687aacc11 Catalin(ux) M. BOIE 2016-04-06 16:16:54
Improved git_init function c2732004dbb1695444be3030111faf4401c83fb1 Catalin(ux) M. BOIE 2016-04-06 16:16:09
Improved docker image creation ec28c883d9f7c9c69d80302a7d70ea1d630b070c Catalin(ux) M. BOIE 2016-04-06 16:15:11
Improved installation (checksum for postgres, useless SELinux booleans 4d9dcd67da247000a19a2f81aebd81f265bfe293 Catalin(ux) M. BOIE 2016-04-06 16:14:25
Add RLUG to history c84c2eaab9c1eb7e6898ef14f12fd8701c6fc285 Catalin(ux) M. BOIE 2016-04-06 16:13:32
Added unit test for e-mail confirmation 8a835c3ffa6f27c208fef6b4525f9aa571c603f6 Catalin(ux) M. BOIE 2016-03-27 11:41:35
Avoid caching in docker c8bc0ff648b60aa159c2a83d8ab1db3c574f19c3 Catalin(ux) M. BOIE 2016-03-14 16:32:25
Do not allow random input as reference fe5d01344b9131edeb2812f72549bf74d8242653 Catalin(ux) M. BOIE 2016-03-14 16:31:59
Commit 0934a66ce1a94f4066b1b7e18edbe0acb4dd3206 - Get rid of php-mbstring: is not a standard extention
Author: Catalin(ux) M. BOIE
Author date (UTC): 2016-05-08 11:04
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2016-05-08 11:04
Parent(s): e6fd4033b3018fb20d22f6e29c162b4330ec935f
Signing key:
Tree: 5f12baa8ca26ddb4040794f2cb75dd42c518349d
File Lines added Lines deleted
inc/ssh.inc.php 5 5
rocketgit.spec.in 1 1
File inc/ssh.inc.php changed (mode: 100644) (index e5e09a0..06f3e93)
... ... function rg_ssh_repos($db, $uid)
33 33 $res = rg_sql_query_params($db, $sql, $params); $res = rg_sql_query_params($db, $sql, $params);
34 34 $rows = rg_sql_num_rows($res); $rows = rg_sql_num_rows($res);
35 35 if ($rows > 0) { if ($rows > 0) {
36 echo 'Repositories (name, creation, disk used):' . "\n";
36 echo 'Repositories (creation, disk used, name):' . "\n";
37 37 while (($row = rg_sql_fetch_array($res))) { while (($row = rg_sql_fetch_array($res))) {
38 $_name = mb_substr($row['name'], 0, 40, 'UTF-8');
39 echo mb_substr($_name . $pad, 0, 32, 'UTF-8')
40 . ' ' . gmdate('Y-m-d', $row['itime'])
41 . ' ' . rg_1024($row['disk_used_mb'] * 1024 * 1024)
38 $d = rg_1024($row['disk_used_mb'] * 1024 * 1024);
39 echo gmdate('Y-m-d', $row['itime'])
40 . ' ' . str_pad($d, 15)
41 . ' ' . $row['name']
42 42 . "\n"; . "\n";
43 43 } }
44 44 } else { } else {
File rocketgit.spec.in changed (mode: 100644) (index 3db0c91..796fd4e)
... ... Source: http://kernel.embedromix.ro/us/rocketgit/%{name}-%{version}.tar.gz
13 13 URL: https://rocketgit.com/ URL: https://rocketgit.com/
14 14 BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot
15 15 BuildArch: noarch BuildArch: noarch
16 Requires: httpd, mod_ssl, php, php-cli, php-pgsql, php-mbstring, xinetd
16 Requires: httpd, mod_ssl, php, php-cli, php-pgsql, xinetd
17 17 Requires: git, cronie, postgresql-server Requires: git, cronie, postgresql-server
18 18 Requires: util-linux Requires: util-linux
19 19 # SELinux stuff # SELinux stuff
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