View Issue Details

IDProjectCategoryView StatusLast Update
0003007ScribusImport / Exportpublic2011-03-14 12:12
ReporterHoward White Assigned Tocbradney  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
PlatformAnyOSAny 
Product Version1.2.3cvs 
Fixed in Version1.4.0svn 
Summary0003007: Import Text filter does not recognize upper case extension
DescriptionImport/Get Text, with filter for .odt etc. Valid files with ext .ODT do not appear. They appear o.k in "all files" and import correctly.
TagsNo tags attached.
Patch

Relationships

child of 0003621 assignedTsoots [OBSOLETE] Metabug: COSS text importer update 

Activities

cbradney

2006-01-12 23:46

administrator   ~0008051

This is not what was fixed this afternoon. This is the gettext filters and is fixed like this:
QStringList FileExtensions()
{
    return QStringList ("odt");
}
replaced by:
QStringList FileExtensions()
{
    QStringList t;
    t << "odt" << "ODT";
    return t;
}

However, we then end up with odt ODT sxw SXW txt TXT etc etc.. ugly. Unsure if we should change this or not.

Issue History

Date Modified Username Field Change
2006-01-12 13:10 Howard White New Issue
2006-01-12 13:17 ringerc Status new => assigned
2006-01-12 13:17 ringerc Assigned To => ringerc
2006-01-12 23:46 cbradney Note Added: 0008051
2006-04-10 21:58 Tsoots Relationship added child of 0003621
2006-04-10 21:58 Tsoots Assigned To ringerc => Tsoots
2011-03-13 00:12 cbradney Status assigned => resolved
2011-03-13 00:12 cbradney Fixed in Version => 1.4.0svn
2011-03-13 00:12 cbradney Resolution open => fixed
2011-03-13 00:12 cbradney Assigned To Tsoots => cbradney
2011-03-14 12:12 cbradney Status resolved => closed