On Wed, Mar 06, 2013 at 10:25:26AM -0500, Satrajit Ghosh wrote: > i don't know if this would be better a separate thread, but seemed related. is > there a reason why we don't just move the docs to github?
Lack of .htaccess that prevent us from using the rewriterules that we use to support multiple versions of the docs. It's probably a problem that can be worked around, be so far nobody that offer a solution that doesn't completely break a score of URLs and the multiple version management. I'd be happy to see the move to github happen though, so any suggestion of a solution is more than welcomed. I am pasting the current .htaccess as an illustration of what we do (note the use of symlinks, also very important, the first 3 lines are the important ones, the others are not that much). G Options +FollowSymLinks RewriteEngine on RedirectMatch permanent ^/$ http://scikit-learn.org/stable RewriteRule ^modules/(.*) http://scikit-learn.org/stable/modules/$1 [R=301,L] RewriteRule ^auto_examples/(.*) http://scikit-learn.org/stable/auto_examples/$1 [R=301,L] RewriteRule ^developers/(.*) http://scikit-learn.org/stable/developers/$1 [R=301,L] ------------------------------------------------------------------------------ Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_mar _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
