Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny). I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :( Stef |
* Stephane Ducasse <[hidden email]> [171108 21:29]:
> Hi > > I'm trying to rescue some of my work (that I cannot save in MC nor in > Iceberg because the system > does not see it - super funny). > > I can browse the change using the changesorter when I do fileout > the system tells me that the file it saved but I cannot find it on my disc. > Apparently none of the fileout is working in the changesorter. :( I have successfully filed out code with epicea but not changesorter. HTH, Christian -- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease. |
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <[hidden email]> wrote: > * Stephane Ducasse <[hidden email]> [171108 21:29]: >> Hi >> >> I'm trying to rescue some of my work (that I cannot save in MC nor in >> Iceberg because the system >> does not see it - super funny). >> >> I can browse the change using the changesorter when I do fileout >> the system tells me that the file it saved but I cannot find it on my disc. >> Apparently none of the fileout is working in the changesorter. :( > > I have successfully filed out code with epicea but not changesorter. > > HTH, > > Christian > > -- > May you be peaceful, may you live in safety, may you be free from > suffering, and may you live with ease. > |
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag | extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents. outputStream close. self inform: 'Filed out to: ', String cr, fileName. On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <[hidden email]> wrote: > Ah thanks we should fix this. > > On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann > <[hidden email]> wrote: >> * Stephane Ducasse <[hidden email]> [171108 21:29]: >>> Hi >>> >>> I'm trying to rescue some of my work (that I cannot save in MC nor in >>> Iceberg because the system >>> does not see it - super funny). >>> >>> I can browse the change using the changesorter when I do fileout >>> the system tells me that the file it saved but I cannot find it on my disc. >>> Apparently none of the fileout is working in the changesorter. :( >> >> I have successfully filed out code with epicea but not changesorter. >> >> HTH, >> >> Christian >> >> -- >> May you be peaceful, may you live in safety, may you be free from >> suffering, and may you live with ease. >> |
I tried it and the file-out looks to work as expected for me. I guess that your troubles can be related to a working directory location. Can you check your working directory path (FileSystem workingDirectory)? -- Pavel 2017-11-08 21:53 GMT+01:00 Stephane Ducasse <[hidden email]>: It looks like the problem is here but I cannot find it. |
In reply to this post by Stephane Ducasse-3
https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorter-does-not-work
On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse <[hidden email]> wrote: > It looks like the problem is here but I cannot find it. > > CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag > > | extension fileName outputStream | > self halt. > extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. > fileName := baseName, extension. > fileName := FileSystem disk checkName: fileName fixErrors: true. > outputStream := (File named: fileName) writeStream. > (ZnCrPortableWriteStream on: (ZnCharacterWriteStream > on: outputStream > encoding: 'utf8')) nextPutAll: aStream contents. > > outputStream close. > > self inform: 'Filed out to: ', String cr, fileName. > > On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse > <[hidden email]> wrote: >> Ah thanks we should fix this. >> >> On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann >> <[hidden email]> wrote: >>> * Stephane Ducasse <[hidden email]> [171108 21:29]: >>>> Hi >>>> >>>> I'm trying to rescue some of my work (that I cannot save in MC nor in >>>> Iceberg because the system >>>> does not see it - super funny). >>>> >>>> I can browse the change using the changesorter when I do fileout >>>> the system tells me that the file it saved but I cannot find it on my disc. >>>> Apparently none of the fileout is working in the changesorter. :( >>> >>> I have successfully filed out code with epicea but not changesorter. >>> >>> HTH, >>> >>> Christian >>> >>> -- >>> May you be peaceful, may you live in safety, may you be free from >>> suffering, and may you live with ease. >>> |
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS
Stef On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse <[hidden email]> wrote: > https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorter-does-not-work > > On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse > <[hidden email]> wrote: >> It looks like the problem is here but I cannot find it. >> >> CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag >> >> | extension fileName outputStream | >> self halt. >> extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. >> fileName := baseName, extension. >> fileName := FileSystem disk checkName: fileName fixErrors: true. >> outputStream := (File named: fileName) writeStream. >> (ZnCrPortableWriteStream on: (ZnCharacterWriteStream >> on: outputStream >> encoding: 'utf8')) nextPutAll: aStream contents. >> >> outputStream close. >> >> self inform: 'Filed out to: ', String cr, fileName. >> >> On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse >> <[hidden email]> wrote: >>> Ah thanks we should fix this. >>> >>> On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann >>> <[hidden email]> wrote: >>>> * Stephane Ducasse <[hidden email]> [171108 21:29]: >>>>> Hi >>>>> >>>>> I'm trying to rescue some of my work (that I cannot save in MC nor in >>>>> Iceberg because the system >>>>> does not see it - super funny). >>>>> >>>>> I can browse the change using the changesorter when I do fileout >>>>> the system tells me that the file it saved but I cannot find it on my disc. >>>>> Apparently none of the fileout is working in the changesorter. :( >>>> >>>> I have successfully filed out code with epicea but not changesorter. >>>> >>>> HTH, >>>> >>>> Christian >>>> >>>> -- >>>> May you be peaceful, may you live in safety, may you be free from >>>> suffering, and may you live with ease. >>>> |
Ok you are right I could then find them there.
This is quite annoying and this is probably related to the launcher On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse <[hidden email]> wrote: > File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS > > Stef > > On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse > <[hidden email]> wrote: >> https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorter-does-not-work >> >> On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse >> <[hidden email]> wrote: >>> It looks like the problem is here but I cannot find it. >>> >>> CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag >>> >>> | extension fileName outputStream | >>> self halt. >>> extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. >>> fileName := baseName, extension. >>> fileName := FileSystem disk checkName: fileName fixErrors: true. >>> outputStream := (File named: fileName) writeStream. >>> (ZnCrPortableWriteStream on: (ZnCharacterWriteStream >>> on: outputStream >>> encoding: 'utf8')) nextPutAll: aStream contents. >>> >>> outputStream close. >>> >>> self inform: 'Filed out to: ', String cr, fileName. >>> >>> On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse >>> <[hidden email]> wrote: >>>> Ah thanks we should fix this. >>>> >>>> On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann >>>> <[hidden email]> wrote: >>>>> * Stephane Ducasse <[hidden email]> [171108 21:29]: >>>>>> Hi >>>>>> >>>>>> I'm trying to rescue some of my work (that I cannot save in MC nor in >>>>>> Iceberg because the system >>>>>> does not see it - super funny). >>>>>> >>>>>> I can browse the change using the changesorter when I do fileout >>>>>> the system tells me that the file it saved but I cannot find it on my disc. >>>>>> Apparently none of the fileout is working in the changesorter. :( >>>>> >>>>> I have successfully filed out code with epicea but not changesorter. >>>>> >>>>> HTH, >>>>> >>>>> Christian >>>>> >>>>> -- >>>>> May you be peaceful, may you live in safety, may you be free from >>>>> suffering, and may you live with ease. >>>>> |
I try to understand why I could not find it by myself and when I look at
writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag | extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents. outputStream close. self inform: 'Filed out to: ', String cr, fileName. I do not understand why File does not understand fullName. So going to bed because I got too many bugs this evening. and I'm doing an overflow. Stef On Wed, Nov 8, 2017 at 10:05 PM, Stephane Ducasse <[hidden email]> wrote: > Ok you are right I could then find them there. > This is quite annoying and this is probably related to the launcher > > > On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse > <[hidden email]> wrote: >> File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS >> >> Stef >> >> On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse >> <[hidden email]> wrote: >>> https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorter-does-not-work >>> >>> On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse >>> <[hidden email]> wrote: >>>> It looks like the problem is here but I cannot find it. >>>> >>>> CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag >>>> >>>> | extension fileName outputStream | >>>> self halt. >>>> extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. >>>> fileName := baseName, extension. >>>> fileName := FileSystem disk checkName: fileName fixErrors: true. >>>> outputStream := (File named: fileName) writeStream. >>>> (ZnCrPortableWriteStream on: (ZnCharacterWriteStream >>>> on: outputStream >>>> encoding: 'utf8')) nextPutAll: aStream contents. >>>> >>>> outputStream close. >>>> >>>> self inform: 'Filed out to: ', String cr, fileName. >>>> >>>> On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse >>>> <[hidden email]> wrote: >>>>> Ah thanks we should fix this. >>>>> >>>>> On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann >>>>> <[hidden email]> wrote: >>>>>> * Stephane Ducasse <[hidden email]> [171108 21:29]: >>>>>>> Hi >>>>>>> >>>>>>> I'm trying to rescue some of my work (that I cannot save in MC nor in >>>>>>> Iceberg because the system >>>>>>> does not see it - super funny). >>>>>>> >>>>>>> I can browse the change using the changesorter when I do fileout >>>>>>> the system tells me that the file it saved but I cannot find it on my disc. >>>>>>> Apparently none of the fileout is working in the changesorter. :( >>>>>> >>>>>> I have successfully filed out code with epicea but not changesorter. >>>>>> >>>>>> HTH, >>>>>> >>>>>> Christian >>>>>> >>>>>> -- >>>>>> May you be peaceful, may you live in safety, may you be free from >>>>>> suffering, and may you live with ease. >>>>>> |
In reply to this post by Stephane Ducasse-3
On 08-11-17 22:03, Stephane Ducasse wrote:
> File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS Yes, this is looks like one of the problems I have with PharoLauncher directories. It is unclear to me what is kept with the vm and what with the image. I asked about it in users Stephan |
Question: what is the behaviour you expected? to have the fileouted .st file in your home? in your desktop? On Wed, Nov 8, 2017 at 10:29 PM, stephan <[hidden email]> wrote: On 08-11-17 22:03, Stephane Ducasse wrote:
|
In reply to this post by Stephane Ducasse-3
Hi
2017-11-08 21:53 GMT+01:00 Stephane Ducasse <[hidden email]>: It looks like the problem is here but I cannot find it. Try rewrite code to FileSystem. I think we should never use File directly:
We should choose what to use instead of #home in that case. I wondering does File is actually used by FileSystem? Should not we remove it from system?
|
On Thu, Nov 9, 2017 at 10:35 AM, Denis Kudriashov <[hidden email]> wrote:
I just discussed a point with Denis, just replicating it here. We should not **blindly** rewrite everything to use FileSystem. Because that may break dependencies in the system. For example, CodeExporter is used by Monticello. Should monticello depend on FileSystem or not? I'm not saying monticello should or should not depend on it. Just saying that we should ask ourselves the question :)
It will ;)
No! File is exactly the low level File representation, that FileSystem should use.
|
Tx guille. We should probably improve the class comment of File to express that this is the low level layer. Stef On Thu, Nov 9, 2017 at 10:50 AM, Guillermo Polito <[hidden email]> wrote:
|
In reply to this post by Stephan Eggermont-3
Hi Stef & Stephan,
On 8 November 2017 at 22:29, stephan <[hidden email]> wrote: > On 08-11-17 22:03, Stephane Ducasse wrote: >> >> File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS > > > Yes, this is looks like one of the problems I have with PharoLauncher > directories. It is unclear to me what is kept with the vm and what with the > image. I asked about it in users > > Stephan Could this be one of the side effects of issue #5723, which changed the definition of the workingDirectory from the image location to the OS (shell) working directory (despite the small issue number, it was only merged around 12 Oct 2017)? I don't use PharoLauncher, but assuming it is the result of #5723, it would probably make sense to modify the launcher to set the working directory to the image directory before launching pharo. Cheers, Alistair |
Yes definitively.
Stef On Sat, Nov 11, 2017 at 4:27 PM, Alistair Grant <[hidden email]> wrote: > Hi Stef & Stephan, > > On 8 November 2017 at 22:29, stephan <[hidden email]> wrote: >> On 08-11-17 22:03, Stephane Ducasse wrote: >>> >>> File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS >> >> >> Yes, this is looks like one of the problems I have with PharoLauncher >> directories. It is unclear to me what is kept with the vm and what with the >> image. I asked about it in users >> >> Stephan > > Could this be one of the side effects of issue #5723, which changed > the definition of the workingDirectory from the image location to the > OS (shell) working directory (despite the small issue number, it was > only merged around 12 Oct 2017)? > > I don't use PharoLauncher, but assuming it is the result of #5723, it > would probably make sense to modify the launcher to set the working > directory to the image directory before launching pharo. > > Cheers, > Alistair > |
Free forum by Nabble | Edit this page |