Re: [Pharo-dev] glitches in text selection

2016-09-24 Thread Sean P. DeNigris
Nicolai Hess-3-2 wrote
> Yes, see case 19113, fixed in 60233

Is this related to
https://pharo.fogbugz.com/f/cases/19036/Bizarre-Text-Selection-in-Pharo-5-0
? If so, I strongly suggest we backport it. The inaccurate text selection in
5.0 is a workflow killer!!



-
Cheers,
Sean
--
View this message in context: 
http://forum.world.st/glitches-in-text-selection-tp4916366p4917003.html
Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.



Re: [Pharo-dev] [ANN] FFI Tutorial, Pharo5 / Libclang

2016-09-24 Thread Ben Coman
The immediate driver is that I want to parse the VM platform sources
and use Roassal to arrange them graphically to look for cross-platform
patterns. I started doing this manually but its a error prone and
tedious.
http://forum.world.st/code-chart-of-time-inside-the-VM-td4916951.html

I am replicating a bit the TalkFFI project [1]
which provides Pharo 4 NativeBoost bindings to libclang
but that needs to be ported to Pharo 5 UFFI and a secondary goal was
for me to learn about FFI, so I'm proceeding from scratch.  What I
learn will help in porting TalkFFI to Pharo 5.

[1] http://smalltalkhub.com/#!/~CipT/TalkFFI

In the back of my mind I consider a possibility of storing C code
in-Image, and calling out to libclang to compile it, dynamically l ink
and run it without ever leaving Pharo.  Or imagine for the VM when
saving a modified Slang primitive it generated the C code just for
that primitive, via FFI got libclang to compile and link it to the
platform library, then started off the new VM running tests all in one
go.But thats a pie in the sky idea probably a long way off.

cheers -ben


On Sun, Sep 25, 2016 at 4:56 AM, Jan Vrany  wrote:
> Hi,
>
> I'm quite interested in this, though not in UFFI bit, rather
> in bindings as such.
>
> What is the goal of the project?
>
> Thanks!
>
> Best, Jan
>
>
>
> On Sun, 2016-09-25 at 01:25 +0800, Ben Coman wrote:
>> hi all,
>>
>> Just announcing that I'm writing a series of posts on using FFI in
>> Pharo 5 to interface to libclang, the interface library for the LLVM
>> C
>> compiler.
>>
>> http://blog.openinworld.com/2016/09/pharo-libclang-ffi-part-1-preambl
>> e/
>>
>> I'm writing this from the perspective of a FFI newbie progressively
>> learning the system.  I've left in a few mis-steps since I think it
>> can be useful seeing what didn't work.
>>
>> cheers -ben
>>
>



Re: [Pharo-dev] object pinning versus garbage collection

2016-09-24 Thread Ben Coman
On Sun, Sep 25, 2016 at 7:14 AM, Eliot Miranda  wrote:
> Hi Ben,
>
>> On Sep 23, 2016, at 8:17 PM, Ben Coman  wrote:
>>
>> How does object pinning interact with garbage collection?  Does it
>> block garbage collection until it is manually unpinned?  Or does it
>> garbage collection proceed anyway?  Intuitively I'd guess the former??
>
> The latter. The properties are orthogonal.  Unreachable pinned objects are 
> still unreachable.  Therefore they are garbage collected.  A use case that 
> wishes to maintain a pinned object over some time period must arrange that 
> there is a string reference to the object to define that time span.

Thanks Eliot. So we need to be careful/aware of the corner case where
an FFI callout function may store a reference to a pinned object past
the return from the callout, and arrange things as you say.

cheers -ben



Re: [Pharo-dev] object pinning versus garbage collection

2016-09-24 Thread Eliot Miranda
Hi Ben,

> On Sep 23, 2016, at 8:17 PM, Ben Coman  wrote:
> 
> How does object pinning interact with garbage collection?  Does it
> block garbage collection until it is manually unpinned?  Or does it
> garbage collection proceed anyway?  Intuitively I'd guess the former??

The latter. The properties are orthogonal.  Unreachable pinned objects are 
still unreachable.  Therefore they are garbage collected.  A use case that 
wishes to maintain a pinned object over some time period must arrange that 
there is a string reference to the object to define that time span.

> 
> cheers -ben
> 



Re: [Pharo-dev] [ANN] FFI Tutorial, Pharo5 / Libclang

2016-09-24 Thread Jan Vrany
Hi,

I'm quite interested in this, though not in UFFI bit, rather
in bindings as such. 

What is the goal of the project? 

Thanks! 

Best, Jan



On Sun, 2016-09-25 at 01:25 +0800, Ben Coman wrote:
> hi all,
> 
> Just announcing that I'm writing a series of posts on using FFI in
> Pharo 5 to interface to libclang, the interface library for the LLVM
> C
> compiler.
> 
> http://blog.openinworld.com/2016/09/pharo-libclang-ffi-part-1-preambl
> e/
> 
> I'm writing this from the perspective of a FFI newbie progressively
> learning the system.  I've left in a few mis-steps since I think it
> can be useful seeing what didn't work.
> 
> cheers -ben
> 



[Pharo-dev] FFI callout arguments - references to internal objects

2016-09-24 Thread Ben Coman
I'm seeking some support for Part 5 of my FFI tutorial
http://blog.openinworld.com/2016/09/pharo-libclang-ffi-part-5-client-data-and-recursive-visitorcallbacks/

where I'm trying to replicate some C code where:
* client_data is a void pointer, and an argument to a callout function
* a reference to some data (an int, or a struct) is passed to the
callout function as the client_data
* the callout function passes that same client_data to a callback
function which casts the client-data to the required type

How can I replicate that with UFFI?  The key thing is that *any* type
can be passed via client_data.  So for a normal Pharo object defined
like...

Object subclass: MyObject
instanceVariables: 'x y'

myobject := MyObject new x:3 y:4.

I want to pass a reference to myobject to the callout, and in the
callback dereference client_data to get myobject that I can operate on
normally.

Is this possible with current infrastructure, or would it need
something new like FFIInternalPinnedReference to wrap myobject for the
callout and unwrap it in the callback?

cheers -ben



[Pharo-dev] [ANN] FFI Tutorial, Pharo5 / Libclang

2016-09-24 Thread Ben Coman
hi all,

Just announcing that I'm writing a series of posts on using FFI in
Pharo 5 to interface to libclang, the interface library for the LLVM C
compiler.

http://blog.openinworld.com/2016/09/pharo-libclang-ffi-part-1-preamble/

I'm writing this from the perspective of a FFI newbie progressively
learning the system.  I've left in a few mis-steps since I think it
can be useful seeing what didn't work.

cheers -ben



Re: [Pharo-dev] [pharo-project/pharo-core] d17433: 60238

2016-09-24 Thread stepharo

Ok I was confused and I checked everything has been well integrated.


Le 24/9/16 à 18:42, stepharo a écrit :

Apparently the changes are not in the image.

I'm puzzled.


Stef



Le 24/9/16 à 18:05, GitHub a écrit :

   Branch: refs/heads/6.0
   Home:   https://github.com/pharo-project/pharo-core
   Commit: d174333406cc1ff2973a8ef75ce1cdedd8e89804
https://github.com/pharo-project/pharo-core/commit/d174333406cc1ff2973a8ef75ce1cdedd8e89804
   Author: Jenkins Build Server 
   Date:   2016-09-24 (Sat, 24 Sep 2016)

   Changed paths:
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClass.st
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfPresent.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClass.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfPresent.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newBoldButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newItalicButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newStruckOutButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newUnderlinedButtonMorph.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxSelectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxUnselectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/menuPinForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newCheckboxMarkerForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newRadioButtonMarkerForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowCloseForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMaximizeForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuPassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMinimizeForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonSelectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowClosePassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMaximizePassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMinimizePassiveForm.st
 M 
Glamour-Rubric-Presentations.package/GLMLipsumWithSegmentsExample.class/instance/accessing/presentation.st
 M 
Glamour-Rubric-Presentations.package/GLMRubricExample.class/definition.st
 M 
Keymapping-Tests.package/KMCategoryTest.class/instance/tests/testCreateExistentCategoryFails.st

 M Komitter.package/Komitter.class/class/icon/taskbarIcon.st
 M Komitter.package/Komitter.class/definition.st
 M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/newColorPickerButtonMorph.st
 M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/pickColor.st
 M 
Morphic-Widgets-Tabs.package/Tab.class/instance/private-icons/defaultIcon.st
 M 
Morphic-Widgets-Windows.package/SystemWindow.class/instance/thumbnail/icon.st
 R 
Nautilus-GroupManagerUI.package/DialogGroupManagerUI.class/instance/icon/iconNamed_.st
 M 
Nautilus.package/PackageTreePackageGroupNodeModel.class/instance/accessing/icon.st
 R 
NautilusCommon.package/NautilusPluginManager.class/instance/icons/iconNamed_.st
 M 
Polymorph-Widgets.package/AlertDialogWindow.class/instance/visual 
properties/icon.st
 M 
Polymorph-Widgets.package/ChooseDropListDialogWindow.class/instance/as 
yet unclassified/icon.st
 M 
Polymorph-Widgets.package/DenyDialogWindow.class/instance/visual 
properties/icon.st
 M Polymorph-Widgets.package/ErrorDialogWindow.class/instance/as 
yet unclassified/icon.st
 M 
Polymorph-Widgets.package/MessageDialogWindow.class/instance/visual 
properties/icon.st
 M 
Polymorph-Widgets.package/PopupChoiceDialogWindowWithMessage.class/instance/accessing/icon.st
 M 
Polymorph-Widgets.package/ProceedDialogWindow.class/instance/as yet 
unclassified/icon.st
 M 

Re: [Pharo-dev] [pharo-project/pharo-core] d17433: 60238

2016-09-24 Thread stepharo

May be there is a cache here.

Could someone tell me if in the latest version Object>>yourself has a 
large method comment?


Tx



Le 24/9/16 à 18:42, stepharo a écrit :

Apparently the changes are not in the image.

I'm puzzled.


Stef



Le 24/9/16 à 18:05, GitHub a écrit :

   Branch: refs/heads/6.0
   Home:   https://github.com/pharo-project/pharo-core
   Commit: d174333406cc1ff2973a8ef75ce1cdedd8e89804
https://github.com/pharo-project/pharo-core/commit/d174333406cc1ff2973a8ef75ce1cdedd8e89804
   Author: Jenkins Build Server 
   Date:   2016-09-24 (Sat, 24 Sep 2016)

   Changed paths:
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClass.st
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfPresent.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClass.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfPresent.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newBoldButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newItalicButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newStruckOutButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newUnderlinedButtonMorph.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxSelectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxUnselectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/menuPinForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newCheckboxMarkerForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newRadioButtonMarkerForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowCloseForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMaximizeForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuPassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMinimizeForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonSelectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowClosePassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMaximizePassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMinimizePassiveForm.st
 M 
Glamour-Rubric-Presentations.package/GLMLipsumWithSegmentsExample.class/instance/accessing/presentation.st
 M 
Glamour-Rubric-Presentations.package/GLMRubricExample.class/definition.st
 M 
Keymapping-Tests.package/KMCategoryTest.class/instance/tests/testCreateExistentCategoryFails.st

 M Komitter.package/Komitter.class/class/icon/taskbarIcon.st
 M Komitter.package/Komitter.class/definition.st
 M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/newColorPickerButtonMorph.st
 M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/pickColor.st
 M 
Morphic-Widgets-Tabs.package/Tab.class/instance/private-icons/defaultIcon.st
 M 
Morphic-Widgets-Windows.package/SystemWindow.class/instance/thumbnail/icon.st
 R 
Nautilus-GroupManagerUI.package/DialogGroupManagerUI.class/instance/icon/iconNamed_.st
 M 
Nautilus.package/PackageTreePackageGroupNodeModel.class/instance/accessing/icon.st
 R 
NautilusCommon.package/NautilusPluginManager.class/instance/icons/iconNamed_.st
 M 
Polymorph-Widgets.package/AlertDialogWindow.class/instance/visual 
properties/icon.st
 M 
Polymorph-Widgets.package/ChooseDropListDialogWindow.class/instance/as 
yet unclassified/icon.st
 M 
Polymorph-Widgets.package/DenyDialogWindow.class/instance/visual 
properties/icon.st
 M Polymorph-Widgets.package/ErrorDialogWindow.class/instance/as 
yet unclassified/icon.st
 M 
Polymorph-Widgets.package/MessageDialogWindow.class/instance/visual 
properties/icon.st
 M 
Polymorph-Widgets.package/PopupChoiceDialogWindowWithMessage.class/instance/accessing/icon.st
 M 
Polymorph-Widgets.package/ProceedDialogWindow.class/instance/as yet 

[Pharo-dev] [pharo-project/pharo-core]

2016-09-24 Thread GitHub
  Branch: refs/tags/60239
  Home:   https://github.com/pharo-project/pharo-core


[Pharo-dev] [pharo-project/pharo-core] ec7982: 60239

2016-09-24 Thread GitHub
  Branch: refs/heads/6.0
  Home:   https://github.com/pharo-project/pharo-core
  Commit: ec7982dec415f3035b0072aa3bf0e455a8645f69
  
https://github.com/pharo-project/pharo-core/commit/ec7982dec415f3035b0072aa3bf0e455a8645f69
  Author: Jenkins Build Server 
  Date:   2016-09-24 (Sat, 24 Sep 2016)

  Changed paths:
M 
AST-Core.package/RBParseErrorNode.class/instance/converting/asSyntaxErrorNotification.st
M AST-Core.package/RBParser.class/instance/error handling/parserError_.st
M AST-Core.package/RBScanner.class/instance/error handling/scannerError_.st
M CodeImport.package/FileCompilerRequestor.class/instance/interactive error 
protocol/notify_at_in_.st
M 
CodeImport.package/MethodChunkCompilerRequestor.class/instance/interactive 
error protocol/notify_at_in_.st
M Compiler.package/Compiler.class/instance/error handling/notify_at_.st
M Compiler.package/Parser.class/instance/error handling/notify_at_.st
M 
OpalCompiler-Core.package/OCASTTranslator.class/instance/errors/backendError_forNode_.st
M OpalCompiler-Core.package/OCSemanticError.class/instance/error 
handling/notify_at_.st
M 
OpalCompiler-Core.package/OCSemanticWarning.class/instance/correcting/notify_at_.st
M OpalCompiler-Core.package/SyntaxErrorNotification.class/README.md
R 
OpalCompiler-Core.package/SyntaxErrorNotification.class/class/exceptionInstantiator/inClass_category_withCode_doitFlag_errorMessage_location_.st
A 
OpalCompiler-Core.package/SyntaxErrorNotification.class/class/exceptionInstantiator/inClass_withCode_doitFlag_errorMessage_location_.st
M OpalCompiler-Core.package/SyntaxErrorNotification.class/definition.st
R 
OpalCompiler-Core.package/SyntaxErrorNotification.class/instance/accessing/category.st
R 
OpalCompiler-Core.package/SyntaxErrorNotification.class/instance/accessing/setClass_category_code_doitFlag_errorMessage_location_.st
A 
OpalCompiler-Core.package/SyntaxErrorNotification.class/instance/accessing/setClass_code_doitFlag_errorMessage_location_.st
R ScriptLoader60.package/ScriptLoader.class/instance/pharo - 
scripts/script60238.st
A ScriptLoader60.package/ScriptLoader.class/instance/pharo - 
scripts/script60239.st
R ScriptLoader60.package/ScriptLoader.class/instance/pharo - 
updates/update60238.st
A ScriptLoader60.package/ScriptLoader.class/instance/pharo - 
updates/update60239.st
M 
ScriptLoader60.package/ScriptLoader.class/instance/public/commentForCurrentUpdate.st
M 
System-FileRegistry.package/FileServices.class/class/accessing/itemsForFile_.st
M 
Tools.package/SyntaxErrorDebugger.class/instance/initialization/syntaxError_.st

  Log Message:
  ---
  60239
11657 remove category from SyntaxError, do not request it in 
SyntaxErrorDebugger from exception
https://pharo.fogbugz.com/f/cases/11657

http://files.pharo.org/image/60/60239.zip




Re: [Pharo-dev] [pharo-project/pharo-core] d17433: 60238

2016-09-24 Thread stepharo

Apparently the changes are not in the image.

I'm puzzled.


Stef



Le 24/9/16 à 18:05, GitHub a écrit :

   Branch: refs/heads/6.0
   Home:   https://github.com/pharo-project/pharo-core
   Commit: d174333406cc1ff2973a8ef75ce1cdedd8e89804
   
https://github.com/pharo-project/pharo-core/commit/d174333406cc1ff2973a8ef75ce1cdedd8e89804
   Author: Jenkins Build Server 
   Date:   2016-09-24 (Sat, 24 Sep 2016)

   Changed paths:
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClass.st
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
 R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfPresent.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClass.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
 R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfPresent.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newBoldButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newItalicButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newStruckOutButtonMorph.st
 M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newUnderlinedButtonMorph.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxSelectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxUnselectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/menuPinForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newCheckboxMarkerForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newRadioButtonMarkerForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowCloseForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMaximizeForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuPassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMinimizeForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonSelectedForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowClosePassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMaximizePassiveForm.st
 M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMinimizePassiveForm.st
 M 
Glamour-Rubric-Presentations.package/GLMLipsumWithSegmentsExample.class/instance/accessing/presentation.st
 M Glamour-Rubric-Presentations.package/GLMRubricExample.class/definition.st
 M 
Keymapping-Tests.package/KMCategoryTest.class/instance/tests/testCreateExistentCategoryFails.st
 M Komitter.package/Komitter.class/class/icon/taskbarIcon.st
 M Komitter.package/Komitter.class/definition.st
 M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/newColorPickerButtonMorph.st
 M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/pickColor.st
 M 
Morphic-Widgets-Tabs.package/Tab.class/instance/private-icons/defaultIcon.st
 M 
Morphic-Widgets-Windows.package/SystemWindow.class/instance/thumbnail/icon.st
 R 
Nautilus-GroupManagerUI.package/DialogGroupManagerUI.class/instance/icon/iconNamed_.st
 M 
Nautilus.package/PackageTreePackageGroupNodeModel.class/instance/accessing/icon.st
 R 
NautilusCommon.package/NautilusPluginManager.class/instance/icons/iconNamed_.st
 M Polymorph-Widgets.package/AlertDialogWindow.class/instance/visual 
properties/icon.st
 M Polymorph-Widgets.package/ChooseDropListDialogWindow.class/instance/as 
yet unclassified/icon.st
 M Polymorph-Widgets.package/DenyDialogWindow.class/instance/visual 
properties/icon.st
 M Polymorph-Widgets.package/ErrorDialogWindow.class/instance/as yet 
unclassified/icon.st
 M Polymorph-Widgets.package/MessageDialogWindow.class/instance/visual 
properties/icon.st
 M 
Polymorph-Widgets.package/PopupChoiceDialogWindowWithMessage.class/instance/accessing/icon.st
 M Polymorph-Widgets.package/ProceedDialogWindow.class/instance/as yet 
unclassified/icon.st
 M Polymorph-Widgets.package/TextEditorDialogWindow.class/instance/visual 
properties/icon.st
 M 

[Pharo-dev] [pharo-project/pharo-core]

2016-09-24 Thread GitHub
  Branch: refs/tags/60238
  Home:   https://github.com/pharo-project/pharo-core


[Pharo-dev] [pharo-project/pharo-core] d17433: 60238

2016-09-24 Thread GitHub
  Branch: refs/heads/6.0
  Home:   https://github.com/pharo-project/pharo-core
  Commit: d174333406cc1ff2973a8ef75ce1cdedd8e89804
  
https://github.com/pharo-project/pharo-core/commit/d174333406cc1ff2973a8ef75ce1cdedd8e89804
  Author: Jenkins Build Server 
  Date:   2016-09-24 (Sat, 24 Sep 2016)

  Changed paths:
R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClass.st
R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
R Collections-Tests.package/StringTest.class/instance/tests - as 
class/testAsClassIfPresent.st
R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClass.st
R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfAbsent.st
R Collections-Tests.package/SymbolTest.class/instance/tests - as 
class/testAsClassIfPresent.st
M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newBoldButtonMorph.st
M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newItalicButtonMorph.st
M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newStruckOutButtonMorph.st
M 
FontChooser.package/AbstractFontSelectorDialogWindow.class/instance/instance 
creation/newUnderlinedButtonMorph.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxSelectedForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/checkboxUnselectedForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/menuPinForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newCheckboxMarkerForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newRadioButtonMarkerForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowCloseForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMaximizeForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMenuPassiveForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/newWindowMinimizeForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/radioButtonSelectedForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowClosePassiveForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMaximizePassiveForm.st
M 
Glamour-Morphic-Theme.package/GLMWhitespaceTheme.class/instance/forms/windowMinimizePassiveForm.st
M 
Glamour-Rubric-Presentations.package/GLMLipsumWithSegmentsExample.class/instance/accessing/presentation.st
M Glamour-Rubric-Presentations.package/GLMRubricExample.class/definition.st
M 
Keymapping-Tests.package/KMCategoryTest.class/instance/tests/testCreateExistentCategoryFails.st
M Komitter.package/Komitter.class/class/icon/taskbarIcon.st
M Komitter.package/Komitter.class/definition.st
M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/newColorPickerButtonMorph.st
M 
Morphic-Widgets-ColorPicker.package/ColorSelectorDialogWindow.class/instance/actions/pickColor.st
M 
Morphic-Widgets-Tabs.package/Tab.class/instance/private-icons/defaultIcon.st
M 
Morphic-Widgets-Windows.package/SystemWindow.class/instance/thumbnail/icon.st
R 
Nautilus-GroupManagerUI.package/DialogGroupManagerUI.class/instance/icon/iconNamed_.st
M 
Nautilus.package/PackageTreePackageGroupNodeModel.class/instance/accessing/icon.st
R 
NautilusCommon.package/NautilusPluginManager.class/instance/icons/iconNamed_.st
M Polymorph-Widgets.package/AlertDialogWindow.class/instance/visual 
properties/icon.st
M Polymorph-Widgets.package/ChooseDropListDialogWindow.class/instance/as 
yet unclassified/icon.st
M Polymorph-Widgets.package/DenyDialogWindow.class/instance/visual 
properties/icon.st
M Polymorph-Widgets.package/ErrorDialogWindow.class/instance/as yet 
unclassified/icon.st
M Polymorph-Widgets.package/MessageDialogWindow.class/instance/visual 
properties/icon.st
M 
Polymorph-Widgets.package/PopupChoiceDialogWindowWithMessage.class/instance/accessing/icon.st
M Polymorph-Widgets.package/ProceedDialogWindow.class/instance/as yet 
unclassified/icon.st
M Polymorph-Widgets.package/TextEditorDialogWindow.class/instance/visual 
properties/icon.st
M 
Polymorph-Widgets.package/UITheme.class/instance/label-styles/menuPinForm.st
M 
Reflectivity-Examples.package/MetalinkIconStyler.class/instance/defaults/iconFor_.st
M 

[Pharo-dev] R: [ANN] Material Design For Seaside V1.0.0

2016-09-24 Thread Lorenzo Schiavina
Great job!

 

Thank you very much.

 

Lorenzo

 

Da: Pharo-dev [mailto:pharo-dev-boun...@lists.pharo.org] Per conto di J.F. Rick
Inviato: venerdì 23 settembre 2016 17.14
A: Pharo Development List
Oggetto: Re: [Pharo-dev] [ANN] Material Design For Seaside V1.0.0

 

Lovely. Something's not quite working with the Menus example on Chrome Ubuntu. 
I always get the same menu.

 

Cheers,

 

Jeff

 

On Fri, Sep 23, 2016 at 10:48 AM Christophe Demarey 
 wrote:


> Le 23 sept. 2016 à 16:21, Cyril Ferlicot D.  a 
> écrit :
>
> Le 23/09/2016 à 15:53, Christophe Demarey a écrit :
>> Cool!
>> Could you share a picture of the widgets by email or put it in the GitHub 
>> README?
>>
>> Thanks,
>> Christophe
>>
>
> Oups, I made "respond" instead of "respond to all".
>
> You can find the demo here:
> http://eph-b922e2d9.swarm.pharocloud.com/MDLComponentsDemoApplication

Better than a picture. Thanks Cyril.
An overview of what future native widgets in Pharo could be with Bloc / Brick :p