On Mon, Apr 13, 2009 at 08:23:56AM -0600, Brent McConnell wrote:
> You should file a bug in Bugzilla and attach your patch for review by
> the dev team.
> 
I would be suprised if you would want this patch as it causes problems with 
windows.  If someone uploads a file with a : in it windows wont be able to 
handle it.   I have not spent time to make this configurable, but if that was 
done would it be accepted?


-- 
Matthew O'Gorman
xim: [email protected]
email: [email protected]
site: http://blog.rldn.net
+-----------------------------------------------------------------------+
  "You can't survive by sucking the juice from a wet mitten."
                  -- Charles Schulz, "Things I've Had to Learn Over and
                     Over and Over"
+-----------------------------------------------------------------------+
Index: src/server/setup/SimiasServerSetup.cs
===================================================================
--- src/server/setup/SimiasServerSetup.cs	(revision 7021)
+++ src/server/setup/SimiasServerSetup.cs	(working copy)
@@ -89,7 +89,7 @@
 		private static string TemplateScriptFile = "simias-server";
 
 	        //Invalid Character List.
-		public static char[] InvalidChars = {'\\', ':', '*', '?', '\"', '<', '>', '|', ' '};
+		public static char[] InvalidChars = {'\\', '*', '?', '\"', '<', '>', '|', ' '};
 
 		#endregion
 		protected ArrayList masterSearch = null;
Index: src/core/Sync/SyncFile.cs
===================================================================
--- src/core/Sync/SyncFile.cs	(revision 7021)
+++ src/core/Sync/SyncFile.cs	(working copy)
@@ -742,7 +742,7 @@
 		static string			workBinDir = "WorkArea";
 		static string			workBin;
 		// '/' is left out on purpose because all systems disallow this char.
-		public static char[] InvalidChars = {'\\', ':', '*', '?', '\"', '<', '>', '|'};
+		public static char[] InvalidChars = {'\\', '*', '?', '\"', '<', '>', '|'};
 
 		/// <summary>Used to publish Sync events.</summary>
 		static public			EventPublisher	eventPublisher = new EventPublisher();

Attachment: signature.asc
Description: Digital signature

_______________________________________________
ifolder-dev mailing list
[email protected]
http://forge.novell.com/mailman/listinfo/ifolder-dev

Reply via email to