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) # Sed script that remove the POT-Creation-Date line in the header entry
05d292b2 (kx 2023-03-24 03:51:10 +0300  2) # from a POT file.
05d292b2 (kx 2023-03-24 03:51:10 +0300  3) #
05d292b2 (kx 2023-03-24 03:51:10 +0300  4) # The distinction between the first and the following occurrences of the
05d292b2 (kx 2023-03-24 03:51:10 +0300  5) # pattern is achieved by looking at the hold space.
05d292b2 (kx 2023-03-24 03:51:10 +0300  6) /^"POT-Creation-Date: .*"$/{
05d292b2 (kx 2023-03-24 03:51:10 +0300  7) x
05d292b2 (kx 2023-03-24 03:51:10 +0300  8) # Test if the hold space is empty.
05d292b2 (kx 2023-03-24 03:51:10 +0300  9) s/P/P/
05d292b2 (kx 2023-03-24 03:51:10 +0300 10) ta
05d292b2 (kx 2023-03-24 03:51:10 +0300 11) # Yes it was empty. First occurrence. Remove the line.
05d292b2 (kx 2023-03-24 03:51:10 +0300 12) g
05d292b2 (kx 2023-03-24 03:51:10 +0300 13) d
05d292b2 (kx 2023-03-24 03:51:10 +0300 14) bb
05d292b2 (kx 2023-03-24 03:51:10 +0300 15) :a
05d292b2 (kx 2023-03-24 03:51:10 +0300 16) # The hold space was nonempty. Following occurrences. Do nothing.
05d292b2 (kx 2023-03-24 03:51:10 +0300 17) x
05d292b2 (kx 2023-03-24 03:51:10 +0300 18) :b
05d292b2 (kx 2023-03-24 03:51:10 +0300 19) }