Failing to load configuration of Tiling Window Manager
I am using pharo 4 and even though this works Gofer new smalltalkhubUser: 'LaurentLaffont' project: 'TilingWindowManager'; configuration; load. this does not work (Smalltalk at:#ConfigurationOfTilingWindowManager) load . neither this (Smalltalk at:#ConfigurationOfTilingWindowManager) loadDevelopment . bleedingEdge is no go too. Should I assume that Pharo 4 is not supported yet ? This is a great project that I am interested in contributing since managing windows in Pharo is a pain.
kilon alios wrote
Should I assume that Pharo 4 is not supported yet ?
Did you try the config from the MetaRepo for 3.0? ----- Cheers, Sean -- View this message in context: http://forum.world.st/Failing-to-load-configuration-of-Tiling-Window-Manager... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
it does not make a difference since the latest config in metarepo3 is the same as in twm main repo it looks like #stable does not define support for pharo 4 this is the error i am getting [ (MetacelloSymbolicVersionDoesNotExistError project: self project versionString: aVersionString) signal ] in MetacelloMCProject(MetacelloProject)>>version: in Block: [ (MetacelloSymbolicVersionDoesNotExistError proje...etc... Dictionary>>at:ifAbsent: MetacelloMCProject(MetacelloProject)>>version: ConfigurationOfTilingWindowManager class>>load UndefinedObject>>DoIt OpalCompiler>>evaluate SmalltalkEditor>>evaluateSelectionAndDo: SmalltalkEditor>>evaluateSelection [ textMorph editor evaluateSelection ] in PluggableTextMorph>>doIt in Block: [ textMorph editor evaluateSelection ] [ result := editBlock value ] in PluggableTextMorph>>handleEdit: in Block: [ result := editBlock value ] TextMorphForEditView(TextMorph)>>handleEdit: PluggableTextMorph>>handleEdit: PluggableTextMorph>>doIt Workspace(Object)>>perform:orSendTo: [ | selArgCount | "show cursor in case item opens a new MVC window" (selArgCount := selector numArgs) = 0 ifTrue: [ target perform: selector ] ifFalse: [ selArgCount = arguments size ifTrue: [ target perform: selector withArguments: arguments ] ifFalse: [ target perform: selector withArguments: (arguments copyWith: evt) ] ]. self changed ] in ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: in Block: [ ... BlockClosure>>ensure: CursorWithMask(Cursor)>>showWhile: ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: ToggleMenuItemMorph(MenuItemMorph)>>mouseUp: ToggleMenuItemMorph(MenuItemMorph)>>handleMouseUp: MouseButtonEvent>>sentTo: ToggleMenuItemMorph(Morph)>>handleEvent: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: ToggleMenuItemMorph(Morph)>>processEvent:using: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: MenuMorph(Morph)>>processEvent:using: MenuMorph(Morph)>>processEvent: MenuMorph>>handleFocusEvent: on pharo 3 it works fine OMG this is amazing !!! it completely solves the messy problem with window managment in pharo .... AWESOME !!!! great work guys ! this thing must come included in pharo 4 and enabled with an option to hide its toolbar . The shortcuts dont work for me , do I need to enable them or something ? I tried most of them and I get no action at all On Sun, Jul 27, 2014 at 3:19 AM, Sean P. DeNigris <sean@clipperadams.com> wrote:
kilon alios wrote
Should I assume that Pharo 4 is not supported yet ?
Did you try the config from the MetaRepo for 3.0?
----- Cheers, Sean -- View this message in context: http://forum.world.st/Failing-to-load-configuration-of-Tiling-Window-Manager... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
it makes a complete difference because project *needs* to be marked as âpharo4â⦠if it doesnât it will not find a valid version (the problem you are having). if you want to load it anyway, just open #metacelloPlatformAttributes and add #'pharo3.x' #'pharo3.0.xâ to the list. Esteban On 27 Jul 2014, at 09:36, kilon alios <kilon.alios@gmail.com> wrote:
it does not make a difference since the latest config in metarepo3 is the same as in twm main repo
it looks like #stable does not define support for pharo 4
this is the error i am getting
[ (MetacelloSymbolicVersionDoesNotExistError project: self project versionString: aVersionString) signal ] in MetacelloMCProject(MetacelloProject)>>version: in Block: [ (MetacelloSymbolicVersionDoesNotExistError proje...etc... Dictionary>>at:ifAbsent: MetacelloMCProject(MetacelloProject)>>version: ConfigurationOfTilingWindowManager class>>load UndefinedObject>>DoIt OpalCompiler>>evaluate SmalltalkEditor>>evaluateSelectionAndDo: SmalltalkEditor>>evaluateSelection [ textMorph editor evaluateSelection ] in PluggableTextMorph>>doIt in Block: [ textMorph editor evaluateSelection ] [ result := editBlock value ] in PluggableTextMorph>>handleEdit: in Block: [ result := editBlock value ] TextMorphForEditView(TextMorph)>>handleEdit: PluggableTextMorph>>handleEdit: PluggableTextMorph>>doIt Workspace(Object)>>perform:orSendTo: [ | selArgCount | "show cursor in case item opens a new MVC window" (selArgCount := selector numArgs) = 0 ifTrue: [ target perform: selector ] ifFalse: [ selArgCount = arguments size ifTrue: [ target perform: selector withArguments: arguments ] ifFalse: [ target perform: selector withArguments: (arguments copyWith: evt) ] ]. self changed ] in ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: in Block: [ ... BlockClosure>>ensure: CursorWithMask(Cursor)>>showWhile: ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: ToggleMenuItemMorph(MenuItemMorph)>>mouseUp: ToggleMenuItemMorph(MenuItemMorph)>>handleMouseUp: MouseButtonEvent>>sentTo: ToggleMenuItemMorph(Morph)>>handleEvent: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: ToggleMenuItemMorph(Morph)>>processEvent:using: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: MenuMorph(Morph)>>processEvent:using: MenuMorph(Morph)>>processEvent: MenuMorph>>handleFocusEvent:
on pharo 3 it works fine
OMG this is amazing !!! it completely solves the messy problem with window managment in pharo .... AWESOME !!!! great work guys ! this thing must come included in pharo 4 and enabled with an option to hide its toolbar .
The shortcuts dont work for me , do I need to enable them or something ? I tried most of them and I get no action at all
On Sun, Jul 27, 2014 at 3:19 AM, Sean P. DeNigris <sean@clipperadams.com> wrote: kilon alios wrote
Should I assume that Pharo 4 is not supported yet ?
Did you try the config from the MetaRepo for 3.0?
----- Cheers, Sean -- View this message in context: http://forum.world.st/Failing-to-load-configuration-of-Tiling-Window-Manager... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
yes it works with your fixe Question : why when I added to #stable --> spec for: #'pharo 4.0.x' version: '3.0.1'. , did not fix the problem ? On Sun, Jul 27, 2014 at 10:40 AM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
it makes a complete difference because project *needs* to be marked as âpharo4â⦠if it doesnât it will not find a valid version (the problem you are having).
if you want to load it anyway, just open #metacelloPlatformAttributes and add #'pharo3.x' #'pharo3.0.xâ to the list.
Esteban
On 27 Jul 2014, at 09:36, kilon alios <kilon.alios@gmail.com> wrote:
it does not make a difference since the latest config in metarepo3 is the same as in twm main repo
it looks like #stable does not define support for pharo 4
this is the error i am getting
[ (MetacelloSymbolicVersionDoesNotExistError project: self project versionString: aVersionString) signal ] in MetacelloMCProject(MetacelloProject)>>version: in Block: [ (MetacelloSymbolicVersionDoesNotExistError proje...etc... Dictionary>>at:ifAbsent: MetacelloMCProject(MetacelloProject)>>version: ConfigurationOfTilingWindowManager class>>load UndefinedObject>>DoIt OpalCompiler>>evaluate SmalltalkEditor>>evaluateSelectionAndDo: SmalltalkEditor>>evaluateSelection [ textMorph editor evaluateSelection ] in PluggableTextMorph>>doIt in Block: [ textMorph editor evaluateSelection ] [ result := editBlock value ] in PluggableTextMorph>>handleEdit: in Block: [ result := editBlock value ] TextMorphForEditView(TextMorph)>>handleEdit: PluggableTextMorph>>handleEdit: PluggableTextMorph>>doIt Workspace(Object)>>perform:orSendTo: [ | selArgCount | "show cursor in case item opens a new MVC window" (selArgCount := selector numArgs) = 0 ifTrue: [ target perform: selector ] ifFalse: [ selArgCount = arguments size ifTrue: [ target perform: selector withArguments: arguments ] ifFalse: [ target perform: selector withArguments: (arguments copyWith: evt) ] ]. self changed ] in ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: in Block: [ ... BlockClosure>>ensure: CursorWithMask(Cursor)>>showWhile: ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: ToggleMenuItemMorph(MenuItemMorph)>>mouseUp: ToggleMenuItemMorph(MenuItemMorph)>>handleMouseUp: MouseButtonEvent>>sentTo: ToggleMenuItemMorph(Morph)>>handleEvent: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: ToggleMenuItemMorph(Morph)>>processEvent:using: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: MenuMorph(Morph)>>processEvent:using: MenuMorph(Morph)>>processEvent: MenuMorph>>handleFocusEvent:
on pharo 3 it works fine
OMG this is amazing !!! it completely solves the messy problem with window managment in pharo .... AWESOME !!!! great work guys ! this thing must come included in pharo 4 and enabled with an option to hide its toolbar .
The shortcuts dont work for me , do I need to enable them or something ? I tried most of them and I get no action at all
On Sun, Jul 27, 2014 at 3:19 AM, Sean P. DeNigris <sean@clipperadams.com> wrote:
kilon alios wrote
Should I assume that Pharo 4 is not supported yet ?
Did you try the config from the MetaRepo for 3.0?
----- Cheers, Sean -- View this message in context: http://forum.world.st/Failing-to-load-configuration-of-Tiling-Window-Manager... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
On 27 Jul 2014, at 09:50, kilon alios <kilon.alios@gmail.com> wrote:
yes it works with your fixe
he, is not a fix, is a complete hack ;) but it works while pharo4 is still unstable and projects are still not moved into it :)
Question : why when I added to #stable --> spec for: #'pharo 4.0.x' version: '3.0.1'. , did not fix the problem ?
probably one dependency (or many) does not have the #pharo4 tag Esteban
On Sun, Jul 27, 2014 at 10:40 AM, Esteban Lorenzano <estebanlm@gmail.com> wrote: it makes a complete difference because project *needs* to be marked as âpharo4â⦠if it doesnât it will not find a valid version (the problem you are having).
if you want to load it anyway, just open #metacelloPlatformAttributes and add #'pharo3.x' #'pharo3.0.xâ to the list.
Esteban
On 27 Jul 2014, at 09:36, kilon alios <kilon.alios@gmail.com> wrote:
it does not make a difference since the latest config in metarepo3 is the same as in twm main repo
it looks like #stable does not define support for pharo 4
this is the error i am getting
[ (MetacelloSymbolicVersionDoesNotExistError project: self project versionString: aVersionString) signal ] in MetacelloMCProject(MetacelloProject)>>version: in Block: [ (MetacelloSymbolicVersionDoesNotExistError proje...etc... Dictionary>>at:ifAbsent: MetacelloMCProject(MetacelloProject)>>version: ConfigurationOfTilingWindowManager class>>load UndefinedObject>>DoIt OpalCompiler>>evaluate SmalltalkEditor>>evaluateSelectionAndDo: SmalltalkEditor>>evaluateSelection [ textMorph editor evaluateSelection ] in PluggableTextMorph>>doIt in Block: [ textMorph editor evaluateSelection ] [ result := editBlock value ] in PluggableTextMorph>>handleEdit: in Block: [ result := editBlock value ] TextMorphForEditView(TextMorph)>>handleEdit: PluggableTextMorph>>handleEdit: PluggableTextMorph>>doIt Workspace(Object)>>perform:orSendTo: [ | selArgCount | "show cursor in case item opens a new MVC window" (selArgCount := selector numArgs) = 0 ifTrue: [ target perform: selector ] ifFalse: [ selArgCount = arguments size ifTrue: [ target perform: selector withArguments: arguments ] ifFalse: [ target perform: selector withArguments: (arguments copyWith: evt) ] ]. self changed ] in ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: in Block: [ ... BlockClosure>>ensure: CursorWithMask(Cursor)>>showWhile: ToggleMenuItemMorph(MenuItemMorph)>>invokeWithEvent: ToggleMenuItemMorph(MenuItemMorph)>>mouseUp: ToggleMenuItemMorph(MenuItemMorph)>>handleMouseUp: MouseButtonEvent>>sentTo: ToggleMenuItemMorph(Morph)>>handleEvent: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: ToggleMenuItemMorph(Morph)>>processEvent:using: MorphicEventDispatcher>>dispatchDefault:with: MorphicEventDispatcher>>dispatchEvent:with: MenuMorph(Morph)>>processEvent:using: MenuMorph(Morph)>>processEvent: MenuMorph>>handleFocusEvent:
on pharo 3 it works fine
OMG this is amazing !!! it completely solves the messy problem with window managment in pharo .... AWESOME !!!! great work guys ! this thing must come included in pharo 4 and enabled with an option to hide its toolbar .
The shortcuts dont work for me , do I need to enable them or something ? I tried most of them and I get no action at all
On Sun, Jul 27, 2014 at 3:19 AM, Sean P. DeNigris <sean@clipperadams.com> wrote: kilon alios wrote
Should I assume that Pharo 4 is not supported yet ?
Did you try the config from the MetaRepo for 3.0?
----- Cheers, Sean -- View this message in context: http://forum.world.st/Failing-to-load-configuration-of-Tiling-Window-Manager... Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
What is the error? May be the configuration did not declare support for Pharo40 On 27/7/14 00:39, kilon alios wrote:
I am using pharo 4 and even though this works
Gofer new smalltalkhubUser: 'LaurentLaffont' project: 'TilingWindowManager'; configuration; load.
this does not work
(Smalltalk at:#ConfigurationOfTilingWindowManager) load .
neither this
(Smalltalk at:#ConfigurationOfTilingWindowManager) loadDevelopment .
bleedingEdge is no go too.
Should I assume that Pharo 4 is not supported yet ?
This is a great project that I am interested in contributing since managing windows in Pharo is a pain.
participants (4)
-
Esteban Lorenzano -
kilon alios -
Sean P. DeNigris -
stepharo