cGit-UI for Git Repositories

cGit-UI – is a web interface for Git Repositories. cGit CGI script is writen in C and therefore it's fast enough

3 Commits   0 Branches   1 Tag
05d292b2 (kx 2023-03-24 03:51:10 +0300  1) #!/bin/bash
05d292b2 (kx 2023-03-24 03:51:10 +0300  2) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  3) CWD=`pwd`
05d292b2 (kx 2023-03-24 03:51:10 +0300  4) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  5) SCRIPT_DIR=`cd $(dirname ${BASH_SOURCE[0]}) >/dev/null 2>&1 && pwd`
05d292b2 (kx 2023-03-24 03:51:10 +0300  6) program=`basename $0`
05d292b2 (kx 2023-03-24 03:51:10 +0300  7) 
05d292b2 (kx 2023-03-24 03:51:10 +0300  8) cd ${SCRIPT_DIR}/../po
05d292b2 (kx 2023-03-24 03:51:10 +0300  9) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 10) POFILE=ru_RU.utf8.po
05d292b2 (kx 2023-03-24 03:51:10 +0300 11) POTFILE=cgit-ui.pot
05d292b2 (kx 2023-03-24 03:51:10 +0300 12) 
05d292b2 (kx 2023-03-24 03:51:10 +0300 13) msgmerge --update --no-wrap --sort-output --backup=simple ${POFILE} ${POTFILE}