Ok. Could you please open a bug report on that for the inspector?
No problem. Here you go:
GLMTabulator new with: [ :tabulator |��
tabulator column: #favorites; column: #files span: 5.
tabulator transmit to: #favorites; andShow: [ :a |��
a list��
title: 'Favorites';
display: { 'test' asFileReference . 'tmp' asFileReference };
format: #fullName ].
tabulator transmit from: #favorites; to: #files; andShow: [ :a |
a custom: (GLMPager new with: [ :pager |
���� �� pager show: [ :composite :file |
���� �� �� �� ��composite title: file basename.
���� �� �� �� ��file gtInspectorItemsIn: composite.
���� �� �� �� ��file gtInspectorContentsIn: composite ] ]) ] ];
�� �� ��openOn: FileSystem disk workingDirectory
UITheme builder fileOpen: 'Import model from MSE file' extensions: #('mse').
They would just need to be hooked in the right place instead of the funny text field.
2014-11-06 23:25 GMT+01:00 Tudor Girba <tudor@tudorgirba.com>:Hi,On Thu, Nov 6, 2014 at 10:50 PM, Peter Uhn��k <i.uhnak@gmail.com> wrote:>��It is indeed known that Pharo cannot open files larger than 4GB (even that after you setup the VM specifically).It seems like Pharo bug1. FileReference>>gtInspectorItemsIn: composite...column: 'Size' evaluated: [:each | each humanReadableSize] width: 100;...2. FileReference>>humanReadableSize^ self size humanReadableSIByteSize3. MessageNotUnderstood: False>>humanReadableSIByteSizebecause "self size" returns false for files > 4GB so it fails and thus I cannot navigate to folders with such files (for example my home directory).Ok. Could you please open a bug report on that for the inspector?This is an issue for the linux vm :on windows, you can list directories with files > 2GFileSystemStore returns false on #size, if the file can not be found. Thats the reason why the inspector shows the "MessageNotUnderstood: False>>humanReadableSIByteSize" error.
And the files can not be found, because the unix VM uses lstat on the directory entries to retrieve the file attributes. And lstat does not work for files with sizes larger than 32Bit.