Morphic Designer

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

Morphic Designer

Edwin Ancaer
Hello guys,

I tried to install Morphic Designer, with the command
   
(Installer mc http: 'http://www.hpi.uni-potsdam.de/hirschfeld/squeaksource/')
   project: 'MetacelloRepository';
   install: 'ConfigurationOfDesigner'.
(Smalltalk at: #ConfigurationOfDesigner) load.

that I found  at https://www.hpi.uni-potsdam.de/hirschfeld/trac/SqueakCommunityProjects/wiki/designer.

I get the ConnectionRefused error in the attached document: for downloading Metacello-Base-DaleHenrichs.2.mcz HTTP/1.1.

I was never asked for a userid or a password. Can anybody tell me how I can find out why this connection was refused?

Kind regards,



SqueakScreenshot1.png (276K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Morphic Designer

marcel.taeumel
Hi Edwin,

try to install Metacello (https://github.com/Metacello/metacello) first via:

"Get the Metacello configuration (for Squeak users)"
Installer gemsource
    project: 'metacello';
    addPackage: 'ConfigurationOfMetacello';
    install.

"Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic version"
((Smalltalk at: #ConfigurationOfMetacello) project 
  version: #'previewBootstrap') load.

"Load the Preview version of Metacello from GitHub"
(Smalltalk at: #Metacello) new
  configuration: 'MetacelloPreview';
  version: #stable;
  repository: 'github://Metacello/metacello:configuration';
  load.

"Now load latest version of Metacello"
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  get.
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  load.

Best,
Marcel

Am 11.03.2018 12:51:52 schrieb Edwin Ancaer <[hidden email]>:

Hello guys,

I tried to install Morphic Designer, with the command
   
(Installer mc http: 'http://www.hpi.uni-potsdam.de/hirschfeld/squeaksource/')
   project: 'MetacelloRepository';
   install: 'ConfigurationOfDesigner'.
(Smalltalk at: #ConfigurationOfDesigner) load.

that I found  at https://www.hpi.uni-potsdam.de/hirschfeld/trac/SqueakCommunityProjects/wiki/designer.

I get the ConnectionRefused error in the attached document: for downloading Metacello-Base-DaleHenrichs.2.mcz HTTP/1.1.

I was never asked for a userid or a password. Can anybody tell me how I can find out why this connection was refused?

Kind regards,


Reply | Threaded
Open this post in threaded view
|

Re: Morphic Designer

Edwin Ancaer
Marcel,


Thanks, it was not immediately obvious to me what was going wrong.
Now let's try to make a simple data entry application.

Kind regards,


Edwin Ancaer,
Would-be Squeak dev.

Op ma 12 mrt. 2018 15:16 schreef Marcel Taeumel <[hidden email]>:
Hi Edwin,

try to install Metacello (https://github.com/Metacello/metacello) first via:

"Get the Metacello configuration (for Squeak users)"
Installer gemsource
    project: 'metacello';
    addPackage: 'ConfigurationOfMetacello';
    install.

"Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic version"
((Smalltalk at: #ConfigurationOfMetacello) project 
  version: #'previewBootstrap') load.

"Load the Preview version of Metacello from GitHub"
(Smalltalk at: #Metacello) new
  configuration: 'MetacelloPreview';
  version: #stable;
  repository: 'github://Metacello/metacello:configuration';
  load.

"Now load latest version of Metacello"
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  get.
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  load.

Best,
Marcel

Am 11.03.2018 12:51:52 schrieb Edwin Ancaer <[hidden email]>:

Hello guys,

I tried to install Morphic Designer, with the command
   
(Installer mc http: 'http://www.hpi.uni-potsdam.de/hirschfeld/squeaksource/')
   project: 'MetacelloRepository';
   install: 'ConfigurationOfDesigner'.
(Smalltalk at: #ConfigurationOfDesigner) load.

that I found  at https://www.hpi.uni-potsdam.de/hirschfeld/trac/SqueakCommunityProjects/wiki/designer.

I get the ConnectionRefused error in the attached document: for downloading Metacello-Base-DaleHenrichs.2.mcz HTTP/1.1.

I was never asked for a userid or a password. Can anybody tell me how I can find out why this connection was refused?

Kind regards,