MAExternalFileModel Questions

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

MAExternalFileModel Questions

Sean P. DeNigris
Administrator
#1.

locationDefinition
        ^ #( ( 2 '63450af8d9c2e17b' ) ( 30 'iaojv41bw67e0tud5m9rgplqfy8x3cs2kznh' ) )

Why is '63450af8d9c2e17b' all mixed up (as opposed to '012345...')? I'm cleaning some code and feel like I'm missing something here...

#2. Is anyone using #baseUrl? There are no senders in the image...
Cheers,
Sean
Reply | Threaded
Open this post in threaded view
|

Re: MAExternalFileModel Questions

riverdusty
#baseUrl and #baseDirectoryPath are both used by Pier.
Removing them results in the inability to register new Pier applications.

MessageNotUnderstood: MAExternalFileModel class>>baseDirectoryPath
Reply | Threaded
Open this post in threaded view
|

Re: MAExternalFileModel Questions

riverdusty
In reply to this post by Sean P. DeNigris
'From Pharo3.0 of 18 March 2013 [Latest update: #30659] on 24 December 2013 at 9:45:02.028811 am'!

!PRFileSettings methodsFor: 'accessing' stamp: 'NickAger 1/18/2012 17:30'!
magritteDescription
        ^ MAContainer new
                add: (MAStringDescription new
                        label: 'Base Directory';
                        accessor: #baseDirectoryPath;
                        comment: 'Defines the base-directory where the files are stored. If this field is left empty, it default to a subdirectory of of the current image-location.';
                        yourself);
                add: (MAStringDescription new
                        label: 'Base URL';
                        accessor: #baseUrl;
                        comment: 'Defines the base-URL where the files are served from, when using an external web server. if this field is left empty, files are served through the image.';
                        yourself);
                yourself! !