aboutsummaryrefslogtreecommitdiffhomepage
path: root/disabled
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-02-04 09:44:44 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-02-04 09:44:44 +0000
commit44a527dfa50ce9c473cbf1f446b8b6f406d4bc91 (patch)
treea0f045d2a4c22a38e08e1b1d1ce0e17e630898c7 /disabled
parentb0dd22cc7271523ba83d2bc8a85504b8445587b5 (diff)
* classify and sort the doxygen "related pages"
by tweaking the filename and adding 2 categories: Troubleshooting and Advanced * use the EXCLUDE_SYMBOLS to clean the class list (insteaded of a homemade bash script) * remove the broken "exemple list" * re-structure the unsupported directory as mentionned in the ML and integrate the doc as follow: - snippets of the unsupported directory are directly imported from the main snippets/CMakefile.txt (no need to duplicate code) - add a top level "Unsupported modules" group - unsupported modules have to defined their own sub group and nest it using \ingroup Unsupported_modules - then a pair of //@{ //@} will put everything in the submodule - this is just a proposal !
Diffstat (limited to 'disabled')
-rwxr-xr-xdisabled/buildexamplelist.sh15
-rwxr-xr-xdisabled/cleanhierarchy.sh5
2 files changed, 20 insertions, 0 deletions
diff --git a/disabled/buildexamplelist.sh b/disabled/buildexamplelist.sh
new file mode 100755
index 000000000..7d47ae39d
--- /dev/null
+++ b/disabled/buildexamplelist.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+echo "namespace Eigen {"
+echo "/** \page ExampleList"
+echo "<h1>Selected list of examples</h1>"
+
+grep \\addexample $1/Eigen/src/*/*.h -R | cut -d \\ -f 2- | \
+while read example;
+do
+anchor=`echo "$example" | cut -d " " -f 2`
+text=`echo "$example" | cut -d " " -f 4-`
+echo "\\\li \\\ref $anchor \"$text\""
+done
+echo "*/"
+echo "}" \ No newline at end of file
diff --git a/disabled/cleanhierarchy.sh b/disabled/cleanhierarchy.sh
new file mode 100755
index 000000000..fe44891b9
--- /dev/null
+++ b/disabled/cleanhierarchy.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+sed -i 's/^.li.*MatrixBase\&lt.*gt.*a.$/ /g' $1
+sed -i 's/^.li.*MapBase\&lt.*gt.*a.$/ /g' $1
+sed -i 's/^.li.*RotationBase\&lt.*gt.*a.$/ /g' $1