List of commits:
Subject Hash Author Date (UTC)
duilder updates cc12a3a5a95586b4533346ccf7fd4cfa652e7d6f Catalin(ux) M. BOIE 2015-07-14 04:34:09
Use _blank instead of _new for page loading 2afd660c2f3ded308e9f1e76c844dcdb60f20dec Catalin(ux) M. BOIE 2015-07-14 04:30:51
TODO stuff d46f377f74021db2581d96e27a4d9b76e2b12348 Catalin(ux) M. BOIE 2015-07-14 04:30:29
Really corrected repo.php unit test. 219a7061df42a1593fc0f3959eddc9a3d54496ab Catalin(ux) M. BOIE 2015-07-14 04:25:56
Corrected 'rights' unit test. b3657cb073291681e8e3fd6ec9523bf550081d8e Catalin(ux) M. BOIE 2015-07-14 04:14:48
Remove more junk from testing folder. 0e769caa8f59615804312c488b74683288243196 Catalin(ux) M. BOIE 2015-07-14 04:14:27
Bump version to 0.38 b5e57d1da1a8a4a207234e1de4dcc4b6cdbe56ed Catalin(ux) M. BOIE 2015-07-13 20:19:32
Fix the islands 4f5d52ff6f87bb1dc48003337d42a6e3a2d98711 Catalin(ux) M. BOIE 2015-07-13 20:18:53
Open my webpage in another tab 54bc4e25313e41a2c0c46f186dc44e9223b9e69e Catalin(ux) M. BOIE 2015-07-13 20:18:04
Switch to Affero GPLv3! eb00fa19c6d3db33cf93b89b35ff08cc41a0d620 Catalin(ux) M. BOIE 2015-07-13 15:54:53
TODO stuff. 1715e3f2a5f61fb9afa77bd0a8ffa9096248e5db Catalin(ux) M. BOIE 2015-07-13 15:50:11
Added a message for when the ToS is denied. c46cad3154c6aaf0cac43d2a765e8b456440510d Catalin(ux) M. BOIE 2015-07-13 15:49:25
CSS changes, rework of <label> element. c307acb2b9340adbcfa2442c2abd88f72a72ab15 Catalin(ux) M. BOIE 2015-07-13 15:48:07
Add support for accepting ToS. 53e96aea10cb7559c84ca47b53c20b503031b2f1 Catalin(ux) M. BOIE 2015-07-13 15:45:46
Fixed suggestions' 'yesterday' report. d6b54bd62c35ca1e58b4b7e45bb5d3e48844712b Catalin(ux) M. BOIE 2015-07-09 03:30:36
More texts changes and ToS is bigger now. 062bd66f4c403116edd34d592ac668732a0dde05 Catalin(ux) M. BOIE 2015-07-09 03:29:36
If user has no repos, go directly to 'create' page. d22f90ace3af3241e5554c82bbf633d68a549be4 Catalin(ux) M. BOIE 2015-07-09 03:28:47
On account creation, we did not set the 'confirmed' field. 7e83a1661aa078ae9a3160aa43586c76307e56d0 Catalin(ux) M. BOIE 2015-07-09 03:27:41
Do not add a border for submenus. b51bce132dceef556d32f7e7caa788ec9b3cd519 Catalin(ux) M. BOIE 2015-07-06 04:31:14
Small changes to the rights pages. a1fea38da6d0ca29126d9f030addc426cb2b0ab2 Catalin(ux) M. BOIE 2015-07-06 04:30:46
Commit cc12a3a5a95586b4533346ccf7fd4cfa652e7d6f - duilder updates
Author: Catalin(ux) M. BOIE
Author date (UTC): 2015-07-14 04:34
Committer name: Catalin(ux) M. BOIE
Committer date (UTC): 2015-07-14 04:34
Parent(s): 2afd660c2f3ded308e9f1e76c844dcdb60f20dec
Signing key:
Tree: 21abc5a67a39a69fe95ea7889e4dcec96c0be696
File Lines added Lines deleted
duilder 12 1
File duilder changed (mode: 100755) (index 87c4881..d8bce35)
... ... function duilder_git()
60 60 exit 0 exit 0
61 61 fi fi
62 62
63 echo "[*] Testing if a tag is present for HEAD..."
64 D=`git describe | egrep -- '-g[0-9a-fA-F]*$'`
65 if [ "${D}" != "" ]; then
66 echo "No annotated tag preset for HEAD! Please add one!"
67 exit 1
68 fi
69
63 70 if [ "${EXPORT_GIT}" = "1" ]; then if [ "${EXPORT_GIT}" = "1" ]; then
64 71 echo "[*] Generating GIT tree for HTTP transport..." echo "[*] Generating GIT tree for HTTP transport..."
65 72 if [ ! -d "${GIT_DEST}/${PRJ}.git" ]; then if [ ! -d "${GIT_DEST}/${PRJ}.git" ]; then
 
... ... BIN="/bin"
321 328 USR_BIN="/usr/bin" USR_BIN="/usr/bin"
322 329 USR_SBIN="/usr/sbin" USR_SBIN="/usr/sbin"
323 330 USR_INCLUDE="/usr/include" USR_INCLUDE="/usr/include"
324 USR_LIB="/usr/lib"
331 if [ "`uname -m`" = "i686" ]; then
332 USR_LIB="/usr/lib"
333 else
334 USR_LIB="/usr/lib64"
335 fi
325 336 USR_SHARE="/usr/share" USR_SHARE="/usr/share"
326 337 USR_SHARE_DOC="/usr/share/doc/${PRJ}-${VER}" USR_SHARE_DOC="/usr/share/doc/${PRJ}-${VER}"
327 338 SBIN="/usr/sbin" SBIN="/usr/sbin"
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