Updated the make html process, adding a new strip functionality that removes the date in each and every html autogenerated files. Now a constant message is displayed thus reducing drastically the size of future web updates.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6686 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
7c32ec2b94
commit
3ed30905a9
@ -271,6 +271,8 @@ html/index.html: $(HTMLFILES) $(IMAGEFILES) Doxyfile
|
||||
-$(RMDIR) html
|
||||
-$(INSTALL_DIR) html
|
||||
-$(DOXYDOC)
|
||||
echo "Stripping HTML files..."
|
||||
./strip_tags
|
||||
|
||||
#fltk.ps: $(HTMLFILES) $(IMAGEFILES)
|
||||
# echo "Generating PostScript documentation..."
|
||||
|
5
documentation/strip_tags
Executable file
5
documentation/strip_tags
Executable file
@ -0,0 +1,5 @@
|
||||
for f in html/*.html ; do
|
||||
cat $f | sed 's/<!-- ... ... .*:..:.. ....\. -->/<!-- date removed for reducing unnecessary svn web updates -->/' > $f.tmp
|
||||
rm $f
|
||||
mv $f.tmp $f
|
||||
done
|
Loading…
Reference in New Issue
Block a user