Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[udig-devel] [jira] Created: (UDIG-1471) Export Resource as Shapefile wizard tripping over typeNames with namespace prefix

Export Resource as Shapefile wizard tripping over typeNames with namespace prefix
---------------------------------------------------------------------------------

                 Key: UDIG-1471
                 URL: http://jira.codehaus.org/browse/UDIG-1471
             Project: uDIG
          Issue Type: Bug
          Components: shapefile
    Affects Versions: UDIG 1.2.M1
            Reporter: Jody Garnett
            Assignee: Jody Garnett


The code that tried to make a typeName safe was not being called:

The implementation of CatalogExportWizard.determineDestinationFile( data ) had this:
{code}
URLUtils.cleanFilename(typeName);
{code}

Where what it wanted was this:
{code}
typeName = URLUtils.cleanFilename(typeName);
{code}

We may want to check to see if this problem exists on the stable branch.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


Back to the top