cSvn-UI for SVN Repositories

cGit-UI – is a web interface for Subversion (SVN) Repositories. cSvn CGI script is writen in C and therefore it's fast enough

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