The Trunk: System-eem.983.mcz

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

The Trunk: System-eem.983.mcz

commits-2
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.983.mcz

==================== Summary ====================

Name: System-eem.983
Author: eem
Time: 14 December 2017, 11:01:48.647576 am
UUID: 777c9ae4-a26b-4cde-b9d7-72873a249042
Ancestors: System-eem.982

Fix an MNU when there are no project detauls during saving.  At least that's the case in my image.

=============== Diff against System-eem.982 ===============

Item was changed:
  ----- Method: Project>>storeOnServer (in category 'file in/out') -----
  storeOnServer
 
  "Save to disk as an Export Segment.  Then put that file on the server I came from, as a new version.  Version is literal piece of file name.  Mime encoded and http encoded."
 
  world setProperty: #optimumExtentFromAuthor toValue: world extent.
  self validateProjectNameIfOK: [:details |
+ details ifNotNil: [self acceptProjectDetails: details].
- self acceptProjectDetails: details.
  self isCurrentProject ifTrue: ["exit, then do the command"
  ^ self
  armsLengthCommand: #storeOnServerAssumingNameValid
  withDescription: 'Publishing' translated
  ].
  self storeOnServerWithProgressInfo.
  ].!