Activity overview
Latest activity by ehumphrey
Thank you. I also put together a *nix shell script to fix most of the backslash and capitalization issues. Some images still have capitalization issues. #!/bin/sh
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/\.\.\\/\.\.\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/images[\/\\]/Images\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/programmability[\/\\]/Programmability\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/functions[\/\\]/Functions\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/stored procedures[\/\\]/Stored Procedures\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/scripts[\/\\]/Scripts\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/security[\/\\]/Security\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/roles[\/\\]/Roles\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/schemas[\/\\]/Schemas\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/users[\/\\]/Users\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/style[\/\\]/Style\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/tables[\/\\]/Tables\//ig'
find . -name '*.html' -or -name '*.js' -print0 | xargs -0 perl -pi -e 's/views[\/\\]/Views\//ig'
/ comments
Thank you. I also put together a *nix shell script to fix most of the backslash and capitalization issues. Some images still have capitalization issues.#!/bin/sh
find . -name '*.html' -or -name '*....
Also, folders seem to be capitalized in some references and lowercase in others. This makes it difficult if hosting documentation on a case-sensitive web server such as Apache. Preference would be for folders and links be all lowercase. / comments
Also, folders seem to be capitalized in some references and lowercase in others. This makes it difficult if hosting documentation on a case-sensitive web server such as Apache. Preference would be ...
Problem also described here. / comments
Problem also described here.
Same problem here. / comments
Same problem here.
Web compatible slashes
Using SQL Doc 1.1, generated html uses backslashes '\' instead of '/' which are used in urls. Served with IIS, IE 7 has no problems with included elements; images, stylesheets, etc. Firefox on the ...