Sure... most all of the files referenced are in PascalCase, (e.g.
WikiEdit.aspx and WikiEdit.js.) Anytime we reference "real" files
(looking on disk in the c#, web links, css references, etc.,) we need
to be sure to pay attention to the file's casing so that filesystems
that differentiate between wikiedit.js and WikiEdit.js  can find the
proper file.

In fact, one of your last commits fixed the problem with WikiEdit.js.
The old WikiEdit.aspx referred to wikiedit.js, but your cleanup
referred to the proper filename.

Another thing to watch out for is to always use Path.Combine() and
friends instead of string concatenation. This method always takes care
of the operating systems sense of what a directory separator is.

I went through the codebase in 1.8 and got rid of all the
indiscriminate casing and string concatenation that I found, although,
some at least, has made its way into the 2.0 codebase for whatever
reason. So any help in spotting it would be appreciated. It is a bit
more effort on the dev's part for what is essentially a hobby of mine,
but I certainly appreciate it :)

Let me know if I can clear anything else up or if I need to describe
the issue more.

-nathan

On 8/13/07, John Davidson <[EMAIL PROTECTED]> wrote:
> Could you provide a little detail on what the concerns are? As I am
> going through all the web code I might create issues without knowing
> it, but if I know what the issues are I may find and correct some you
> have not yet encountered.
>
> Thanks
>
> John Davidson
>
> On 8/13/07, Nathan Jones <[EMAIL PROTECTED]> wrote:
> >
> > Just a note to the other devs: You need to be careful about
> > case-sensitivity for file names and web pages to not break the unix
> > functionality.
> >
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> _______________________________________________
> Flexwiki-users mailing list
> Flexwiki-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/flexwiki-users
>

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Flexwiki-users mailing list
Flexwiki-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flexwiki-users

Reply via email to