.gitignore, Makefile, ccollect.sh, CHANGES
Added more generated dac to .gitignore Added changing permissions on webserver Fixed bug when user specifies "ccollect interval source/" (If a user has a ":" in its path he should be shoot). Added note to new documentation.
This commit is contained in:
parent
1c931dce8a
commit
7ab5ace250
4 changed files with 8 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -3,3 +3,6 @@ doc/old
|
|||
doc/*.html
|
||||
doc/*.docbook
|
||||
doc/*.texi
|
||||
doc/man/*.html
|
||||
doc/man/*.texi
|
||||
doc/man/*.man
|
||||
|
|
3
Makefile
3
Makefile
|
@ -71,7 +71,8 @@ push-work:
|
|||
publish-doc: documentation
|
||||
@echo "Transferring files to $(host)"
|
||||
@chmod a+r doc/*.html doc/*.text
|
||||
@scp doc/*.text doc/*.html $(host):$(docdir)
|
||||
@scp doc/*.text doc/*.html doc/*.texi doc/man/*.man $(host):$(docdir)
|
||||
@ssh $(host) "cd $(docdir); chmod a+r *"
|
||||
|
||||
#
|
||||
# Doku
|
||||
|
|
|
@ -41,7 +41,7 @@ trap "rm -f \"$TMP\"" 1 2 15
|
|||
|
||||
add_name()
|
||||
{
|
||||
sed "s/^/\[$name\] /"
|
||||
sed "s:^:\[$name\] :"
|
||||
}
|
||||
|
||||
#
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
0.4 to 0.4.1:
|
||||
* updated documentation
|
||||
* created new document formats: Texinfo and manpage
|
||||
* added Texinfo documentation
|
||||
* added a manpage (English)
|
||||
* fixed problem with 'make install' (strip was used)
|
||||
* fixed possible problem with pre_exec beeing executed to late
|
||||
|
||||
|
|
Loading…
Reference in a new issue