##// END OF EJS Templates
Add RSS link to the repository index....
Add RSS link to the repository index. Index: hg/templates/index.tmpl ===================================================================

File last commit:

r981:4f81068e merge default
r1125:a33a7a54 default
Show More
test-diffdir
14 lines | 308 B | text/plain | TextLexer
#!/bin/sh
hg init
touch a
hg add a
hg ci -m "a" -d "0 0"
echo 123 > b
hg add b
hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
-e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"
hg diff -r tip | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \
-e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"