diff options
author | Michael Bien <[email protected]> | 2009-12-02 14:49:41 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-12-02 14:49:41 +0100 |
commit | 72203a5d1f8896463ded10d1b21ca116621d1900 (patch) | |
tree | 93472cac4c61381ea9cdc48bbe97a59b2cd6f64b /resources | |
parent | 7c7f5070dcbcc37afe36a4744161157cac49997c (diff) |
fixed gcc setup on mac.
updated native taglet toc url.
fixed small bug in cl char[] -> String conversion.
Diffstat (limited to 'resources')
-rw-r--r-- | resources/createTagletProps.sh | 9 | ||||
-rw-r--r-- | resources/native-taglet.properties | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/resources/createTagletProps.sh b/resources/createTagletProps.sh index 9708a822..ca971be1 100644 --- a/resources/createTagletProps.sh +++ b/resources/createTagletProps.sh @@ -1,8 +1,9 @@ #download index -root=http://www.khronos.org/opencl/sdk/1.0/docs/man/xhtml -wget ${root}/Opencl_tofc.html; +root=http://www.khronos.org/opencl/sdk/1.0/docs/man/xhtml/ +toc=Opencl_tofc.html +wget ${root}/${toc}; #find links to cl* function doc -grep -E .+\<a\ href=\"cl[A-Z][^\"]+\"[^\>]+\>cl[A-Z][a-Z0-9]+\</a\>.+ ./Opencl_tofc.html > links; +grep -E .+\<a\ href=\"cl[A-Z][^\"]+\"[^\>]+\>cl[A-Z][a-Z0-9]+\</a\>.+ ./${toc} > links; #add doc root to properties file echo "#Generated, do not edit, edit createTagletProps.sh instead. #This file is used in NativeTaglet and maps the generated method names @@ -10,4 +11,4 @@ echo "#Generated, do not edit, edit createTagletProps.sh instead. nativetaglet.baseUrl=${root}" > native-taglet.properties; #add all links as properties to file and cleanup sed -r 's/\s+<li><a href="([a-Z0-9.]+)"[^>]+>([a-Z0-9]+)<\/a><\/li>/\2=\1/' links >> native-taglet.properties; -rm ./Opencl_tofc.html ./links +rm ./${toc} ./links diff --git a/resources/native-taglet.properties b/resources/native-taglet.properties index c6b27dc4..348e4492 100644 --- a/resources/native-taglet.properties +++ b/resources/native-taglet.properties @@ -1,7 +1,7 @@ #Generated, do not edit, edit createTagletProps.sh instead. #This file is used in NativeTaglet and maps the generated method names #to the function specific OpenCL documentation man pages. -nativetaglet.baseUrl=http://www.khronos.org/opencl/sdk/1.0/docs/man/xhtml +nativetaglet.baseUrl=http://www.khronos.org/opencl/sdk/1.0/docs/man/xhtml/ clCreateCommandQueue=clCreateCommandQueue.html
clCreateContext=clCreateContext.html
clCreateContextFromType=clCreateContextFromType.html
|