- linkchecker http://wummel.github.io/linkchecker/
- linklint http://www.linklint.org/
- webcheck http://manpages.ubuntu.com/manpages/lucid/man1/webcheck.1.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Please paste to folder common/common.conf | |
| index index.html index.htm; | |
| error_page 500 502 503 504 /50x.html; | |
| location = /50x.html { | |
| root html; | |
| } | |
| #location ~ \.(js|ico|gif|jpg|png|css|rar|zip|tar\.gz)$ { } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ### Be sure that you have this option in your ~/.subversion/servers file | |
| ### [global] | |
| ### http-bulk-updates=on | |
| ### init | |
| command=$1 | |
| ### helpers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| if [ $1 == "skip" ]; then | |
| echo "Skip tests" | |
| mkdir -p tests/_log | |
| touch tests/_log/fake_report.xml | |
| printf "<?xml version="1.0" encoding="UTF-8"?>\n<testsuites>\n\t<testsuite name="fake" tests="0" assertions="0" failures="0" errors="0" time="0">\n\t</testsuite>\n</testsuites>" >> tests/_log/fake_report.xml | |
| else | |
| codecept "$@" | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Git visual log displays commit tree view with who did what when and in which branch | |
| git config --global alias.vlog 'log --graph --date-order --date=relative --pretty=format:"%C(cyan)%h: %Cblue - %an - %Cgreen %C(cyan)%ar:%Creset%n%s%n" --color' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| linkchecker --ignore-url=\!mysite\.com --file-output=xml/utf_8/PATH/TO/MY/LOG/FILE http://mysite.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wget -qO- localhost:8000 | tidy --tidy-mark n --quiet y 2>&1 | xargs -d"\n" -I line echo line |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| linklint -http -host localhost:8000 /@ -doc log_dir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| webcheck --avoid-external --base-only --output=log http://localhost:8000/ -x /blog -f |
OlderNewer