> The FPC team is pleased to announce that version 1.0.10 of 
> the Free Pascal Compiler is (finally) released.


Hooray !

Great work, guys.


I also downloaded the latest version of the HTML documentation
( I absolutely despise PDF ). 

The documentation looks good, but I found some broken links that
look something like this 

href="file:../ref/ref.html"

I am not sure how IE would handle these , but they don't work in Galeon.


Here is a quick-and-dirty script that will clean them up:


#!/bin/bash

for HTML in \
`find -name '*.html' -type f -print0 | xargs -r -0 grep -l 'href="file:\.\./'`
do
  awk '{ sub(/href=\"file:\.\.\//, "href=\"../"); print }' $HTML > tmp
  mv tmp $HTML
done



Again, thanks for making the world's greatest compiler even better !

 - Jeff


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

_______________________________________________
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to