- From: Hugo Haas <hugo@dev.w3.org>
- Date: Tue, 03 Aug 2004 15:00:10 +0000
- To: public-ws-desc-eds@w3.org
Update of /sources/public/2002/ws/desc/wsdl20 In directory hutz:/tmp/cvs-serv27287 Modified Files: Makefile.base Log Message: Improved tests Index: Makefile.base =================================================================== RCS file: /sources/public/2002/ws/desc/wsdl20/Makefile.base,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** Makefile.base 2 Aug 2004 15:12:12 -0000 1.33 --- Makefile.base 3 Aug 2004 15:00:08 -0000 1.34 *************** *** 44,48 **** $(TIDY) $@.old > $@ 2>./tidy-output.txt;\ rm $@.old ! -[ $(SOURCE.xml:.xml=.html) != $(WSDL20.html) ] && cp $(WSDL20.html) $(SOURCE.xml:.xml=.html) # The line above is because of the renaming of Part 2 --- 44,50 ---- $(TIDY) $@.old > $@ 2>./tidy-output.txt;\ rm $@.old ! ifneq "$(SOURCE.xml:.xml=.html)" "$(WSDL20.html)" ! cp $(WSDL20.html) $(SOURCE.xml:.xml=.html) ! endif # The line above is because of the renaming of Part 2 *************** *** 77,82 **** valid-pubrules.html: $(WSDL20.html) valid-html.txt ! @-[ -z "$(QUICK)" ] && (echo "Running pubrules checker";\ ! $(PUBRULESCHECK) $(WSDL20.html)> $@) validate-pubrules: valid-pubrules.html --- 79,86 ---- valid-pubrules.html: $(WSDL20.html) valid-html.txt ! ifndef QUICK ! @echo "Running pubrules checker";\ ! $(PUBRULESCHECK) $(WSDL20.html)> $@ ! endif validate-pubrules: valid-pubrules.html *************** *** 96,106 **** valid-links.txt: $(WSDL20.html) ! @-[ -z "$(QUICK)" ] && (echo "Checking links $?";\ ! $(LINKCHECKER) -s -r -b $? > $@) checkspell.txt: $(WSDL20.html) ! @-[ -z "$(QUICK)" ] && (echo "Checking spelling $?";\ rm -f $@ ;\ ! $(SPELL) < $? | sort | uniq -c | sort -n > $@) directory: --- 100,114 ---- valid-links.txt: $(WSDL20.html) ! ifndef QUICK ! @echo "Checking links $?";\ ! $(LINKCHECKER) -s -r -b $? > $@ ! endif checkspell.txt: $(WSDL20.html) ! ifndef QUICK ! @echo "Checking spelling $?";\ rm -f $@ ;\ ! $(SPELL) < $? | sort | uniq -c | sort -n > $@ ! endif directory:
Received on Tuesday, 3 August 2004 11:00:11 UTC