|
From: <di...@us...> - 2007-02-02 20:56:42
|
Revision: 366
http://safekeep.svn.sourceforge.net/safekeep/?rev=366&view=rev
Author: dimi
Date: 2007-02-02 12:56:41 -0800 (Fri, 02 Feb 2007)
Log Message:
-----------
Fix deployment command
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2007-02-02 20:27:39 UTC (rev 365)
+++ website/trunk/Makefile 2007-02-02 20:56:41 UTC (rev 366)
@@ -8,7 +8,7 @@
@echo " clean Cleans up the source tree"
deploy:
- cd WebContent; scp -r *.shtml theme images shell.sourceforge.net:/home/groups/s/sa/safekeep/htdocs
+ cd WebContent; tar cfz - *.shtml *.html images/*.gif theme/*.css | ssh shell.sourceforge.net "cd /home/groups/s/sa/safekeep/htdocs; tar xfvz -"
clean:
rm -f WebContent/*~
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-02-04 23:35:34
|
Revision: 373
http://safekeep.svn.sourceforge.net/safekeep/?rev=373&view=rev
Author: dimi
Date: 2007-02-04 15:35:32 -0800 (Sun, 04 Feb 2007)
Log Message:
-----------
Add automatic validation for the deployed HTML and CSS
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2007-02-04 23:07:34 UTC (rev 372)
+++ website/trunk/Makefile 2007-02-04 23:35:32 UTC (rev 373)
@@ -1,3 +1,10 @@
+SITE_ADDRESS=safekeep.sourceforge.net
+HTML_VALID_URL=http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2F$(SITE_ADDRESS)%2F
+HTML_VALID_OK=Passed validation
+CSS_VALID_URL=http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A%2F%2F$(SITE_ADDRESS)%2F
+CSS_VALID_OK=Congratulations!
+SF_SERVER=shell.sourceforge.net
+SF_HOME=/home/groups/s/sa/safekeep
all: help
@@ -5,10 +12,19 @@
@echo "Targets:"
@echo " help Displays this message"
@echo " deploy Deploys teh website to SourceForge"
+ @echo " test Test the validity of the HTML and the CSS"
@echo " clean Cleans up the source tree"
deploy:
- cd WebContent; tar cfz - *.shtml *.html images/*.gif theme/*.css | ssh shell.sourceforge.net "cd /home/groups/s/sa/safekeep/htdocs; tar xfvz -"
+ cd WebContent; tar cfz - *.html *.shtml images/*.gif theme/*.css | ssh $(SF_SERVER) "cd $(SF_HOME)/htdocs; tar xfvz -"
+test: test-html test-css
+
+test-html:
+ cd WebContent; for page in *.html *.shtml; do if lynx -source "${HTML_VALID_URL}$$page" | grep -q '${HTML_VALID_OK}'; then echo "$$page: HTML OK"; else echo "$$page: HTML validation failed! ***"; fi; done
+
+test-css:
+ cd WebContent; for page in *.html *.shtml; do if lynx -source "${CSS_VALID_URL}$$page" | grep -q '${CSS_VALID_OK}'; then echo "$$page: CSS OK"; else echo "$$page: CSS validation failed! ***"; fi; done
+
clean:
rm -f WebContent/*~ WebContent/*.bak
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-02-04 23:44:53
|
Revision: 376
http://safekeep.svn.sourceforge.net/safekeep/?rev=376&view=rev
Author: dimi
Date: 2007-02-04 15:44:53 -0800 (Sun, 04 Feb 2007)
Log Message:
-----------
Be explicit about the page names we have
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2007-02-04 23:40:34 UTC (rev 375)
+++ website/trunk/Makefile 2007-02-04 23:44:53 UTC (rev 376)
@@ -6,6 +6,18 @@
SF_SERVER=shell.sourceforge.net
SF_HOME=/home/groups/s/sa/safekeep
+PAGES = contributing.shtml \
+ documentation.shtml \
+ download.shtml \
+ faq.shtml \
+ forums.shtml \
+ index.shtml \
+ license.shtml \
+ motivation.shtml \
+ safekeep.conf.html \
+ safekeep.html \
+ support.shtml
+
all: help
help:
@@ -21,10 +33,10 @@
test: test-html test-css
test-html:
- cd WebContent; for page in *.html *.shtml; do if lynx -source "${HTML_VALID_URL}$$page" | grep -q '${HTML_VALID_OK}'; then echo "$$page: HTML OK"; else echo "$$page: HTML validation failed! ***"; fi; done
+ cd WebContent; for page in $(PAGES); do if lynx -source "${HTML_VALID_URL}$$page" | grep -q '${HTML_VALID_OK}'; then echo "$$page: HTML OK"; else echo "$$page: HTML validation failed! ***"; fi; done
test-css:
- cd WebContent; for page in *.html *.shtml; do if lynx -source "${CSS_VALID_URL}$$page" | grep -q '${CSS_VALID_OK}'; then echo "$$page: CSS OK"; else echo "$$page: CSS validation failed! ***"; fi; done
+ cd WebContent; for page in $(PAGES); do if lynx -source "${CSS_VALID_URL}$$page" | grep -q '${CSS_VALID_OK}'; then echo "$$page: CSS OK"; else echo "$$page: CSS validation failed! ***"; fi; done
clean:
rm -f WebContent/*~ WebContent/*.bak
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-02-05 00:49:47
|
Revision: 379
http://safekeep.svn.sourceforge.net/safekeep/?rev=379&view=rev
Author: dimi
Date: 2007-02-04 16:49:45 -0800 (Sun, 04 Feb 2007)
Log Message:
-----------
Deploy the PNGs as well
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2007-02-05 00:41:21 UTC (rev 378)
+++ website/trunk/Makefile 2007-02-05 00:49:45 UTC (rev 379)
@@ -28,7 +28,7 @@
@echo " clean Cleans up the source tree"
deploy:
- cd WebContent; tar cfz - *.html *.shtml images/*.gif theme/*.css | ssh $(SF_SERVER) "cd $(SF_HOME)/htdocs; tar xfvz -"
+ cd WebContent; tar cfz - *.html *.shtml images/*.gif images/*.png theme/*.css | ssh $(SF_SERVER) "cd $(SF_HOME)/htdocs; tar xfvz -"
test: test-html test-css
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2007-03-13 20:55:23
|
Revision: 472
http://safekeep.svn.sourceforge.net/safekeep/?rev=472&view=rev
Author: dimi
Date: 2007-03-13 13:55:19 -0700 (Tue, 13 Mar 2007)
Log Message:
-----------
Add releases.html to the list of pages
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2007-03-13 20:25:11 UTC (rev 471)
+++ website/trunk/Makefile 2007-03-13 20:55:19 UTC (rev 472)
@@ -14,6 +14,7 @@
index.shtml \
license.shtml \
motivation.shtml \
+ releases.shtml \
safekeep.conf.html \
safekeep.html \
support.shtml
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2008-02-26 21:24:09
|
Revision: 587
http://safekeep.svn.sourceforge.net/safekeep/?rev=587&view=rev
Author: dimi
Date: 2008-02-26 13:24:06 -0800 (Tue, 26 Feb 2008)
Log Message:
-----------
Fix spacing
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2008-02-26 21:23:16 UTC (rev 586)
+++ website/trunk/Makefile 2008-02-26 21:24:06 UTC (rev 587)
@@ -25,7 +25,7 @@
@echo "Targets:"
@echo " help Displays this message"
@echo " deploy Deploys teh website to SourceForge"
- @echo " test Test the validity of the HTML and the CSS"
+ @echo " test Test the validity of the HTML and the CSS"
@echo " clean Cleans up the source tree"
deploy:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <di...@us...> - 2008-02-26 21:24:29
|
Revision: 588
http://safekeep.svn.sourceforge.net/safekeep/?rev=588&view=rev
Author: dimi
Date: 2008-02-26 13:24:24 -0800 (Tue, 26 Feb 2008)
Log Message:
-----------
Fix typo
Modified Paths:
--------------
website/trunk/Makefile
Modified: website/trunk/Makefile
===================================================================
--- website/trunk/Makefile 2008-02-26 21:24:06 UTC (rev 587)
+++ website/trunk/Makefile 2008-02-26 21:24:24 UTC (rev 588)
@@ -24,7 +24,7 @@
help:
@echo "Targets:"
@echo " help Displays this message"
- @echo " deploy Deploys teh website to SourceForge"
+ @echo " deploy Deploys the website to SourceForge"
@echo " test Test the validity of the HTML and the CSS"
@echo " clean Cleans up the source tree"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|