[Pixelle-commit] SF.net SVN: pixelle: [162] trunk/pixelle/src/com/mebigfatguy/pixelle/ AlgorithmArc
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-07-13 00:54:56
|
Revision: 162
http://pixelle.svn.sourceforge.net/pixelle/?rev=162&view=rev
Author: dbrosius
Date: 2008-07-12 17:55:03 -0700 (Sat, 12 Jul 2008)
Log Message:
-----------
oops fix namespace
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java 2008-07-13 00:50:36 UTC (rev 161)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/AlgorithmArchiver.java 2008-07-13 00:55:03 UTC (rev 162)
@@ -186,9 +186,9 @@
PrintWriter pw = null;
try {
pw = new PrintWriter(new OutputStreamWriter(is));
- pw.println("<algorithms 'http://pixelle.mebigfatguy.com/0.1.0'");
- pw.println(" xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'");
- pw.println(" xsi:schemaLocation='/com/mebigfatguy/pixelle/resources/algorithms.xsd'>");
+ pw.println("<algorithms xmlns='http://pixelle.mebigfatguy.com/0.1.0'");
+ pw.println(" xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'");
+ pw.println(" xsi:schemaLocation='/com/mebigfatguy/pixelle/resources/algorithms.xsd'>");
for (Map.Entry<String, Map<String, Map<PixelleComponent, String>>> group : algorithms.entrySet()) {
pw.println(" <group name='" + group.getKey() + "'>");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|