Issue 216 in ulipad: Unable to see files using the "open file" dialog

1 view
Skip to first unread message

uli...@googlecode.com

unread,
Nov 28, 2009, 8:09:40 PM11/28/09
to uli...@googlegroups.com
Status: New
Owner: ----

New issue 216 by isatis39871: Unable to see files using the "open file"
dialog
http://code.google.com/p/ulipad/issues/detail?id=216

What steps will reproduce the problem?
1. Create *.py / *.php files
2. Go to file > open

What is the expected output? What do you see instead?

Expected :

A list of the files in the directory.

Got :

No file listed, even when moving the extension filter to "All Files".

What version of the product are you using? On what operating system?

I am using UliPad 4.0 on Ubuntu 9.10.

Please provide any additional information below.

I enclosed a screencast illustrating the issue



Attachments:
opening_files.ogv 3.7 MB

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

uli...@googlecode.com

unread,
Nov 28, 2009, 9:43:59 PM11/28/09
to uli...@googlegroups.com

Comment #1 on issue 216 by limodou: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

I have no linux environment now, so I can't test what you said, and I tried
in windows
but there is problem at all.

yin sun

unread,
Nov 28, 2009, 9:55:57 PM11/28/09
to ulipad
could it be the language settings? try with english menu.

uli...@googlecode.com

unread,
Nov 28, 2009, 9:59:02 PM11/28/09
to uli...@googlegroups.com

Comment #2 on issue 216 by sunyin51: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

could it be the language setting? try in English first.

uli...@googlecode.com

unread,
Nov 29, 2009, 4:35:41 AM11/29/09
to uli...@googlegroups.com

Comment #3 on issue 216 by isatis39871: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

It is the language, setting back to English works great. I can't understand
why this
prevent files from being viewed, but english is good enough for me.

Thanks and good luck for the next release.

uli...@googlecode.com

unread,
Nov 29, 2009, 5:15:45 AM11/29/09
to uli...@googlegroups.com

Comment #4 on issue 216 by limodou: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

It's strange! I've not encountered this problem before. Which language do
you use?

uli...@googlecode.com

unread,
Nov 29, 2009, 10:40:20 AM11/29/09
to uli...@googlegroups.com

Comment #5 on issue 216 by info.ksamuel: Unable to see files using
French. But the weird thing is all the Ubuntu system uses UTF-8, so really
I can't
see why this is an issue.

Do you want me to perform some tests ? We can arrange a meeting where I can
give you
a SSH / VNC access to the machine if you wish. This is a great project, I
really love
this IDE and be glad to help.

I ran the doctests using nose and attached the result.

Attachments:
ulipad_doctest_result.txt 7.6 KB

uli...@googlecode.com

unread,
Nov 29, 2009, 12:50:25 PM11/29/09
to uli...@googlegroups.com

Comment #6 on issue 216 by sunyin51: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

I haven't look deep into the code, but if it is language setting problem my
first guess
is when creating the filter for the list file dialog, *.py or the like is
not using
correct code page, i.e *.py has to be in english no matter what language to
use. Am I
correct?.

uli...@googlecode.com

unread,
Nov 29, 2009, 1:28:40 PM11/29/09
to uli...@googlegroups.com

Comment #7 on issue 216 by info.ksamuel: Unable to see files using
Do you mean the string "*.py" in the ulipad code or the file on my
computer ?

If it's for ulipad :
- Ulipad seems to use the GTK constants, so encoding should no be the issue

If it's for the file :
- Python code must be in english, but the rest can (and sometime must) be
in another
language. UTF-8 is used by the all system, the GTK lib and myself. I can't
talk for
ulipad since encoding is not explicitly declared, but it seems to use only
ascii
chars I doubt it's at risk, even if no strings are preceded by "u".

uli...@googlecode.com

unread,
Nov 29, 2009, 1:51:48 PM11/29/09
to uli...@googlegroups.com

Comment #8 on issue 216 by sunyin51: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

interesting, i tried chinese, it is ok, but french is not.

uli...@googlecode.com

unread,
Nov 29, 2009, 4:20:49 PM11/29/09
to uli...@googlegroups.com

Comment #9 on issue 216 by sunyin51: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

this is the fix. Only French translation has the problem.

Index: ulipad_fr_FR.po
===================================================================
--- ulipad_fr_FR.po (revision 524)
+++ ulipad_fr_FR.po (working copy)
@@ -4284,8 +4284,8 @@
msgstr ""

#: ..\mixins\MainFrame.py:53
-msgid "All Files (*.*)|*"
-msgstr "Tous les fichiers"
+msgid "All Files (*)|*"
+msgstr "Tous les fichiers (*)|*"

#: ..\mixins\MessageWindow.py:37
#: ..\mixins\ShellWindow.py:41

uli...@googlecode.com

unread,
Nov 29, 2009, 6:52:17 PM11/29/09
to uli...@googlegroups.com

Comment #10 on issue 216 by limodou: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

Oh, thank you very much. I'll fix it soon.

uli...@googlecode.com

unread,
Nov 29, 2009, 7:59:53 PM11/29/09
to uli...@googlegroups.com

Comment #11 on issue 216 by limodou: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

Fixed. But some translation files is old also.

uli...@googlecode.com

unread,
Nov 29, 2009, 8:03:54 PM11/29/09
to uli...@googlegroups.com
Updates:
Status: Fixed

Comment #12 on issue 216 by limodou: Unable to see files using the "open
file" dialog
http://code.google.com/p/ulipad/issues/detail?id=216

(No comment was entered for this change.)
Reply all
Reply to author
Forward
0 new messages