Solving issues with opening remote notebooks.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2016-09-23 09:05:24 +00:00
parent 3445ff1fe2
commit 656cfd378e

View File

@ -387,12 +387,12 @@ GrafoscopioNotebook >> openFromUrl: anUrl [
"Opens a tree from a file named aFileName" "Opens a tree from a file named aFileName"
| fileName | | fileName |
fileName := anUrl splitOn: '/' last. fileName := (anUrl splitOn: '/') last.
GrafoscopioGUI GrafoscopioGUI
downloadingFrom: anUrl downloadingFrom: anUrl
withMessage: 'Downloading document...' withMessage: 'Downloading document...'
into: FileLocator temp. into: FileLocator temp.
self class new openFromFile: (FileLocator temp fileName) self class new openFromFile: (FileLocator temp / fileName)
] ]
{ #category : #persistence } { #category : #persistence }