Closed
Bug 77761
Opened 25 years ago
Closed 25 years ago
Files must have an extension to be seen by open dialog
Categories
(Core :: XUL, defect, P1)
Tracking
()
VERIFIED
FIXED
mozilla0.9.1
People
(Reporter: mikepinkerton, Assigned: mikepinkerton)
Details
if a file has a valid file type, but no extension, the file picker dialog ignores
it. i'm not sure why we're not mapping file extensions to types and using that in
addition to the extension.
| Assignee | ||
Comment 1•25 years ago
|
||
taking
| Assignee | ||
Updated•25 years ago
|
Target Milestone: --- → mozilla0.9.1
| Assignee | ||
Comment 2•25 years ago
|
||
we weren't always hitting the IC mappings because we were only looking for *.txt,
and 9.0.4 doesn't have .txt, only .text. fix is to add both:
Index: mozilla/xpfe/components/filepicker/res/locale/en-US/filepicker.properties
===================================================================
RCS file: /m/pub/mozilla/xpfe/components/filepicker/res/locale/en-US/
filepicker.properties,v
retrieving revision 1.10
diff -u -2 -r1.10 filepicker.properties
--- filepicker.properties 2001/04/17 01:58:00 1.10
+++ filepicker.properties 2001/04/26 23:35:31
@@ -6,5 +6,5 @@
htmlFilter=*.html; *.htm; *.shtml; *.xhtml
textTitle=Text Files
-textFilter=*.txt
+textFilter=*.txt; *.text
imageTitle=Image Files
imageFilter=*.png; *.gif; *.jpeg; *.jpg
Status: NEW → ASSIGNED
Comment 3•25 years ago
|
||
*.text isn't really a standard Windows extension, but we can live with it.
r=blake
Comment 4•25 years ago
|
||
sr=sfraser.
We should really have the installer vet IC settings.
| Assignee | ||
Comment 5•25 years ago
|
||
fixed.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•