Re: [Pharo-project] SUnit

2009-12-22 Thread Denis Kudriashov
VisualWorks has interesting framework Assessments http://blogten.blogspot.com/2009/07/what-is-assessments.html. Maybe squeak/pharo port would be better then another new SUnit implementation ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.

Re: [Pharo-project] Parrot VM

2010-01-19 Thread Denis Kudriashov
In parrot site languages section there is "chitchat— An implementation of Smalltalk" Anybody know what is it? ___ Pharo-project mailing list Pharo-project@

Re: [Pharo-project] About new inspector

2010-02-16 Thread Denis Kudriashov
Hello I was implement proxy for Mocketry project. My proxy (MockObject) can emulate messages sush #printOn: and others that used by tools (debbugger, workspace and others). MockObject just search some tools context in #doesNotUndarstand method context. And if message was sent by tools (not domain

Re: [Pharo-project] About new inspector

2010-02-16 Thread Denis Kudriashov
http://www.squeaksource.com/Mocketry.html Maybe in pharo it's not work. But should be loadable See class MocketryProxy - #doesNotUnderstand. For debugging speed should not be an issue. > For debugging yes. But that approach is issue for use such proxies in domain tasks. Any message to proxy iter

Re: [Pharo-project] Making pharo more tdd oriented

2009-06-19 Thread Denis Kudriashov
1) When there is an error, the debugger opens directly. Reason: I found that > I always press Debug when an error occurs in the Notifier window. Question: > Should this option be a preference? > I like VW behavior. There are three buttons: debug, run, step. When I do debug and there is an error in

Re: [Pharo-project] Automatic generation of abstract methods

2010-04-21 Thread Denis Kudriashov
And there is DynamicProtocols. Which show abstract methods and more 2010/4/12 Simon Denier > > On 12 avr. 2010, at 14:26, Cyrille Delaunay wrote: > > > Hello, > > > > Would it be difficult to generate automatically superclass-abstract > methods (with an empty contents) when creating a new subcla

[Pharo-project] How turn on Halo's?

2010-05-22 Thread Denis Kudriashov
Hello Can I turn on halos. And is rotating morphs supported in pharo? ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] How turn on Halo's?

2010-05-22 Thread Denis Kudriashov
Thanks. 2010/5/22 Stéphane Ducasse > denis in pharo halos are there but only when you really want them. :) > > Stef > > On May 22, 2010, at 7:18 PM, Denis Kudriashov wrote: > > > Hello > > > > Can I turn on halos. And i

[Pharo-project] Why O2Browser does not have many commands from standart omnibrowser?

2010-05-22 Thread Denis Kudriashov
I like O2Browser. But It has not many standart commands. Why It is? I think they are both omnibrowsers. And they based on same meta model Or maybe I have old version of O2Browser. I load it from Pharo1.0 ready workspace script ___ Pharo-project mailing

Re: [Pharo-project] How turn on Halo's?

2010-05-22 Thread Denis Kudriashov
On my Windows Halo activated by shift-alt-click 2010/5/22 Mariano Martinez Peck > and in Linux and windows ? > > 2010/5/22 Denis Kudriashov > >> Thanks. >> >> >> 2010/5/22 Stéphane Ducasse >> >> denis in pharo halos are there but only when you

Re: [Pharo-project] Do TTFonts prevent image startup?

2010-05-22 Thread Denis Kudriashov
I check it scenario for pharo1.0. All work fine. 2010/5/22 Stéphane Ducasse > http://code.google.com/p/pharo/issues/detail?id=2457 > > Issue 2457: Do TTFonts prevent image startup > > We should check if this is a problem for Pharo too. > See the thread "Please, help me. My squeak image not s

[Pharo-project] [BUG] block decompilation during code simulation by Through debugger button

2010-05-22 Thread Denis Kudriashov
Block decompilation not work at situation during code simulation. Maybe its just problem in debugger "Through button" action implementation. This happen because block home in that situation not exists. I attach class ClassWithBlockDecompilation which help reproduce that manually. See class side me

[Pharo-project] [BUG] VM crash during debbuging some code by Through button with Transcript>>show: in deepest inner methods

2010-05-23 Thread Denis Kudriashov
Hello Just insert Transcript>>show:'something' at any method begin. Now debug sender of your method by debugger Through button. If no Transcript opened VM will crash! ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforg

Re: [Pharo-project] [BUG] VM crash during debbuging some code by Through button with Transcript>>show: in deepest inner methods

2010-05-23 Thread Denis Kudriashov
t; > I could not compile >Transcript>>show:'something' > > so I do not know how you did it. > > > > On May 23, 2010, at 10:11 AM, Denis Kudriashov wrote: > > > Hello > > > > Just insert > > Transcript>>show:'something'

Re: [Pharo-project] [BUG] VM crash during debbuging some code by Through button with Transcript>>show: in deepest inner methods

2010-05-23 Thread Denis Kudriashov
And If you replace Transcript code with self halt. You will see that debugging with through button does not work. Code simulation failure raised (but without VM crash) 2010/5/23 Denis Kudriashov > I has Pharo1.0 one click, Windows 7. > I attach class ClassWithTranscriptPrinting. >

Re: [Pharo-project] [BUG] VM crash during debbuging some code by Through button with Transcript>>show: in deepest inner methods

2010-05-23 Thread Denis Kudriashov
not work and which crash VM. Maybe this tests not correct. But I hope it helps to indicate and solve issues 2010/5/23 Stéphane Ducasse > Thanks! > > Stef > > On May 23, 2010, at 11:13 AM, Denis Kudriashov wrote: > > > And If you replace Transcript code with > > &

Re: [Pharo-project] [BUG] VM crash during debbuging some code by Through button with Transcript>>show: in deepest inner methods

2010-05-25 Thread Denis Kudriashov
> > Stef > > > On May 23, 2010, at 4:18 PM, Denis Kudriashov wrote: > > > I found more bad cases with code simulation. And I think any > manipulations with context (errors signals, simaphore, ...) not work in > simulation mode. Transcript printing failed because of s

Re: [Pharo-project] FFI Documentation

2010-05-25 Thread Denis Kudriashov
Hi. Igor Can you compare NB callout functionality with FFI and Alien functionality. Can NB replace FFI, Alien? What absent in NB callout? You implement callbacks with NB. FFI not support it. For me NB foreign interface seems more attractive than something else. 2010/5/21 Igor Stasenko > Very

[Pharo-project] How I can hide hand morph

2010-05-28 Thread Denis Kudriashov
Hello, I have pharo app on touch screen device. And for my application I need hide hand morph (mouse cursor). How I can do this? ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pha

[Pharo-project] Masked text field input?

2010-06-01 Thread Denis Kudriashov
Is anybody implement masked text field input? ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] MaskedTextMorph

2010-06-02 Thread Denis Kudriashov
Hello I implement MaskedTextMorph class for masked input fields. See attachment and class side example. Its just little class. I dont create separate package for it. Maybe somebody add it to some widgets package MaskedTextMorph.st Description: Binary data __

Re: [Pharo-project] MaskedTextMorph

2010-06-02 Thread Denis Kudriashov
gt; Do make sure that this happens can you open a bug entry on >http://code.google.com/p/pharo/issues/ > Stef > > > On Jun 2, 2010, at 10:03 AM, Denis Kudriashov wrote: > > > Hello > > > > I implement MaskedTextMorph class for masked input fields. > &

Re: [Pharo-project] Can I use Projects in Pharo?

2010-06-02 Thread Denis Kudriashov
> > 2010/6/2 Schwab,Wilhelm K > I think you are missing the OP's point. The goal (unless I am missing > something) is to have a way to open say four browsers on specific classes > and methods and maybe a workspace or two to work on one particular > project/task, and to do the same for other tasks

Re: [Pharo-project] About TDD and Pharo

2010-06-02 Thread Denis Kudriashov
I use Mockery - my implementation SSpec idies. It is realy more powerfull, transparency and flexibility. With Mockery you dont need any special base classes for TestCases or mocks factory variables in code. You just use mocks where you want by Block creation scenarios: [:mock | [sut doWith: moc

Re: [Pharo-project] About TDD and Pharo

2010-06-03 Thread Denis Kudriashov
Hello, No I dont. Who is it? 2010/6/3 Stéphane Ducasse > do you happen to know tim mckinnon? > > Stef > On Jun 3, 2010, at 12:13 AM, Denis Kudriashov wrote: > > > I use Mockery - my implementation SSpec idies. It is realy more > powerfull, transparency and flexibility.

[Pharo-project] How get font instance programmatically?

2010-06-03 Thread Denis Kudriashov
Hello, My task very simple. I need set some font for TextMorph instance programmatically. I found TextStyle>>named: familyName . But it search font in TextConstants that not include my font. By my font exists in visual font chooser from halo menu in text morph. How I can get font instance that I

Re: [Pharo-project] How get font instance programmatically?

2010-06-03 Thread Denis Kudriashov
Thank you very much 2010/6/3 Schwab,Wilhelm K > LogicalFont familyName:'DejaVu Sans' fallbackFamilyNames:nil pointSize:8 > stretchValue:0 weightValue:400 slantValue:0. > ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gf

Re: [Pharo-project] About TDD and Pharo

2010-06-03 Thread Denis Kudriashov
Tim Mckinnon is creator SMock for Dolphin. I see his work. And his work will be stimul for me to implement mock-famework in VW and squeak (that I used) with more user friendly and powerfull features. 2010/6/3 Denis Kudriashov > Hello, No I dont. Who is it? > > 2010/6/3 Stéphane Ducass

[Pharo-project] BrowserWindow title

2010-06-08 Thread Denis Kudriashov
Hello, I just think that class name in BrowserWindow title is more appropriate then long browser name like "OB Package Browser: SomeClass". With little name task bar will be more suitable. What do you think? ___ Pharo-project mailing list Pharo-project@

Re: [Pharo-project] [BUG] VM crash during debbuging some code by Through button with Transcript>>show: in deepest inner methods

2010-06-08 Thread Denis Kudriashov
a lot denis for checking that. > > I should say thatI'm quite busy right now. :) > > > > Stef > > > > On May 25, 2010, at 7:05 PM, Denis Kudriashov wrote: > > > >> Ok, > >> > >> Eliot send some fix for code simulation in squeak l

[Pharo-project] Why Morph>>duplicate method changed in Pharo 1.1

2010-06-10 Thread Denis Kudriashov
Why Morph>>duplicate method changed in Pharo 1.1? Now halo button "duplicate" (at right top corner) does not work. ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] [BUG] FreeTypeFont>>veryDeepCopy

2010-06-10 Thread Denis Kudriashov
veryDeepCopy method on FreeTypeFont instance should do nothing. Just returns self. Otherwise, FreeType font copy raise primitive failure on image saving and can corrupt image. Maybe this method should be in AbstractFont (It exists in other subclasses too, but not all). I open ussue 2529

Re: [Pharo-project] BrowserWindow title

2010-06-10 Thread Denis Kudriashov
member > > correctly. Maybe it was just lost or never integrated. > > > > I would like it also ;) > > > > Open a ticket > > > > cheers > > > > mariano > > > > 2010/6/8 Denis Kudriashov > >> > >> Hello, > >

[Pharo-project] [Issue] 2533 GradientFillStyle cant change first and last color from halo menu

2010-06-11 Thread Denis Kudriashov
Open RectangleMorph. Set him gradient fill style. Try change first or second color. Nothing happen. Reason is caching pixelRamp of Gradient. Solution is deep copy of color ramp in target methods. See http://code.google.com/p/pharo/issues/detail?id=2533

[Pharo-project] Why announcer subscriptions is dectionary?

2010-06-21 Thread Denis Kudriashov
Hello, I found that subscribers handle announcements in order differ then order in which they subscribe. Reason - announcer subscriptions is dictionary. Maybe dependency of announcement handling order is bad code design. But it can be usefull. Example. I need announcerA delegates announcements fr

Re: [Pharo-project] Why announcer subscriptions is dectionary?

2010-06-22 Thread Denis Kudriashov
> > It is a dictionary for speed reasons. A user might trigger trigger > thousands of events per seconds and iterating through large flat lists > can be very slow if there are many handlers. > Where is speedup improvements? In code that I found in Pharo 1.1 there is simple iteration by all diction

[Pharo-project] Changing color/fillStyle by morph halo menu in 1.1rc2

2010-06-27 Thread Denis Kudriashov
I try last Pharo 1.1 rc2 10.06.10. I found that tool for changing color by user is changed. ColorPickerMorph is removed. Now I can't dynamically change color by mouse and see my changes immediately. Now I must select color in new tool, press ok button. And after that tool close and I must open it

Re: [Pharo-project] Changing color/fillStyle by morph halo menu in 1.1rc2

2010-06-27 Thread Denis Kudriashov
ation view. I think It is very important for UI design. 2010/6/27 Stéphane Ducasse > I do not understand because you can see the selected color in the selected > color little pane. > Is it not what you need? > Stef] > On Jun 27, 2010, at 11:53 AM, Denis Kudriashov wrote: >

Re: [Pharo-project] Changing color/fillStyle by morph halo menu in 1.1rc2

2010-06-27 Thread Denis Kudriashov
I done slice for this. See http://code.google.com/p/pharo/issues/detail?id=2595 2010/6/27 Denis Kudriashov > I can't see full morph appearance. I just see what color I select. > But It's nothing because I need see my little changes in full morph > appearance. > > Fo

[Pharo-project] How programatically collapse main pharo window?

2010-06-29 Thread Denis Kudriashov
Hello. How programatically collapse main pharo window? How it can be done? ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] [ISSUE] 2607 NewTextMorph with TTFont

2010-06-29 Thread Denis Kudriashov
I found bug in NewTextMorph (Pharo 1.1 rc2 10.06) Set default system Font to dejavu sans regular and run NewTextMorph example1. There is no text. And keyboard input not work (text not visible). Besides EntryFieldMorph work good ___ Pharo-project mailin

Re: [Pharo-project] [ISSUE] 2607 NewTextMorph with TTFont

2010-06-29 Thread Denis Kudriashov
Yes, Its not work in 1.2 too 2010/6/29 Stéphane Ducasse > thanks denis > did you tried in 1.2 because fernando worked a lot on them but his changes > are in 1.2? > > Stef > > On Jun 29, 2010, at 9:48 PM, Denis Kudriashov wrote: > > > I found bug in NewTextMorph (Ph

[Pharo-project] Strange behavior (bug) of wrapping text with TTFont (russian text) in TextMorph

2010-06-29 Thread Denis Kudriashov
I use Pharo 1.1 rc2 10.06 I found strange behavior of wrapping text with TTFont (russian text) in TextMorph. I dont know how to reproduce it. But I see it in my application. I have prototype button with TextMorph as it label. And I do many of: aPanel add: prototype veryDeepCopy contentsWrapped:

Re: [Pharo-project] Strange behavior (bug) of wrapping text with TTFont (russian text) in TextMorph

2010-06-29 Thread Denis Kudriashov
No. #isSeparator message not used for wrapping. Wrapping logic implemented in MultiCompositionScanner and dont use #isSeparator 2010/6/30 Igor Stasenko > 2010/6/30 Denis Kudriashov : > > I use Pharo 1.1 rc2 10.06 > > > > I found strange behavior of wrapping text with TTF

Re: [Pharo-project] Strange behavior (bug) of wrapping text with TTFont (russian text) in TextMorph

2010-06-29 Thread Denis Kudriashov
essage not used for wrapping. Wrapping logic implemented > in MultiCompositionScanner and dont use #isSeparator > > 2010/6/30 Igor Stasenko > >> 2010/6/30 Denis Kudriashov : >> > I use Pharo 1.1 rc2 10.06 >> > >> > I found strange behavior of wrapping tex

[Pharo-project] Setting new world in 1.1

2010-06-30 Thread Denis Kudriashov
How I can install new World in Pharo 1.1? In pharo 1.0 I do : newWorld beWorldForProject: nil. But #beWorldForProject: absent in 1.1 ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinf

Re: [Pharo-project] Changing color/fillStyle by morph halo menu in 1.1rc2

2010-06-30 Thread Denis Kudriashov
2010, at 11:19 PM, Denis Kudriashov wrote: > > > I done slice for this. See > http://code.google.com/p/pharo/issues/detail?id=2595 > > > > 2010/6/27 Denis Kudriashov > > I can't see full morph appearance. I just see what color I select. > > But It'

Re: [Pharo-project] Strange behavior (bug) of wrapping text with TTFont (russian text) in TextMorph

2010-06-30 Thread Denis Kudriashov
n > speaker, so maybe I just should stop touching the Multilingual code... > But my understanding is that code needed (and still need!) to be cleaned > up... > ... and also that leadingChar is not really usefull for rendering > Russian now that there are more and more fonts with good Uni

Re: [Pharo-project] Setting new world in 1.1

2010-06-30 Thread Denis Kudriashov
Ducasse > You cannot anymore. > Projects are not supported features. We got discussions in the mailing-list > about that > some times ago. > > Stef > > On Jun 30, 2010, at 10:27 PM, Denis Kudriashov wrote: > > > How I can install new World in Pharo 1.1? > > &

Re: [Pharo-project] Strange behavior (bug) of wrapping text with TTFont (russian text) in TextMorph

2010-07-01 Thread Denis Kudriashov
Nicolas Cellier < nicolas.cellier.aka.n...@gmail.com> написал: > 2010/6/30 Denis Kudriashov : > > Hello, Nicolas. > > > >> Multilingual additions do also consider a change of leadingChar as a > >> special case of endOfRun because current font must be change

Re: [Pharo-project] Setting new world in 1.1

2010-07-02 Thread Denis Kudriashov
Hello, I just use class JRWorldManager from attachment from recent topic MultipleWorlds. Class author is Jochen Riekhof. You can find it in this list. With JRWorldManager you can switch between multiple worlds. 2010/7/1 Torsten Bergmann > Denis wrote on pharo-dev > >But absent method is very s

[Pharo-project] Morph rendering with antialiasing

2010-07-06 Thread Denis Kudriashov
Hello. Is somebody implement morphs rendering with antialiasing? Maybe it is already possible? In practice I need circle button. But without antialiasing it seems really ugly. If there is no existed solution. How do you think It can be implemented? I know that fonts rendered with antialiasing.

Re: [Pharo-project] Updating VM links for Pharo 1.1

2010-07-08 Thread Denis Kudriashov
Hello What plans about Cog? It will be good if you provide builded Cog VM with prepared Pharo release image. ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] How disable debugger?

2010-07-22 Thread Denis Kudriashov
Hello Is it possible write all exceptions to log and dont show debugger? How I can do this? ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Re: [Pharo-project] How disable debugger?

2010-07-22 Thread Denis Kudriashov
ledErrorDefaultAction: self exception > > so you can define a different UIManager for example > > Stef > On Jul 22, 2010, at 1:18 PM, Denis Kudriashov wrote: > > > Hello > > > > Is it possible write all exceptions to log and dont show debugger? > > How I can d

[Pharo-project] What is correct way to save image automatically in background?

2010-07-23 Thread Denis Kudriashov
In my app I need update pharo image with some resources (new package, icons, configs...) remotelly. After updating I need save image session. For that app show user some special screen, save image and return to ussual app state. My app has process that do system changes when needed and "commit" it

Re: [Pharo-project] What is correct way to save image automatically in background?

2010-07-23 Thread Denis Kudriashov
But How I can do that without fork? I track changes in another process and when I do update I save image in this process. How I can initiate image saving from ui process? 2010/7/23 Lukas Renggli > > What is correct way to save image for my purpose? > > Don't fork. > > Lukas > > -- > Lukas Renggl

Re: [Pharo-project] What is correct way to save image automatically in background?

2010-07-23 Thread Denis Kudriashov
Sorry for not correct thread title. I dont need save image in background while all system continue work. I just want save image from my smalltalk process. And when I do this I sometimes cant restart image (it crash due to some world cycle activity and freetype plugin failure). But when I save ima

[Pharo-project] Object>>doesNotUnderstand:

2010-07-27 Thread Denis Kudriashov
Hello, I found method doesNotUnderstand have very strange implementation Object>>doesNotUnderstand: aMessage | exception resumeValue | (exception := MessageNotUnderstood new) message: aMessage; receiver: self. resumeValue := exception signal. ^exception reachedDe

[Pharo-project] Nested Configurations

2010-07-27 Thread Denis Kudriashov
Hello Can I use configurations inner my configurations to set dependencies between packages. For example, my application depends on XmlParser. In ConfigurationOfMyApp I need set "requires: 'XmlParser'". But I load XmlParser to my image by ConfigurationOfXmlParser. And I dont want inspect Configur

Re: [Pharo-project] Nested Configurations

2010-07-27 Thread Denis Kudriashov
Thank you very much :)) 2010/7/27 Dale Henrichs > Denis Kudriashov wrote: > >> Hello >> >> Can I use configurations inner my configurations to set dependencies >> between packages. >> >> For example, my application depends on XmlParser. In Co

Re: [Pharo-project] Object>>doesNotUnderstand:

2010-07-27 Thread Denis Kudriashov
r an unhandled error? > With my approach I have "null object message eating" behavior. And when any unhandled errors raised in system user will see nothing. Only log file will contain it. 2010/7/28 Eliot Miranda > > > 2010/7/27 Denis Kudriashov > > Hello, >>

Re: [Pharo-project] Object>>doesNotUnderstand:

2010-07-27 Thread Denis Kudriashov
ly log file will > contain it. > > 2010/7/28 Eliot Miranda > >> >> >> 2010/7/27 Denis Kudriashov >> >> Hello, >>> >>> I found method doesNotUnderstand have very strange implementation >>> >>> Object>>doesN

Re: [Pharo-project] Object>>doesNotUnderstand:

2010-07-27 Thread Denis Kudriashov
> > In either case control should not return to the point of error. If you > want to log errors and then continue you need to continue from some > well-defined point, not merely return control to the point of error. So if > your approach is to catch and log errors, after logging you need to trans

[Pharo-project] ProcessWrapper BUGs

2010-07-28 Thread Denis Kudriashov
Hello I found bugs in ProcessWrapper try externalKiosk := ProcessWrapper new. externalKiosk startWithCommand: 'notepad'. Do "externalKiosk terminate" twice. And image crashed without any logs Do "externalKiosk finalize" twice.And image crashed without any logs but not immediately. Besides I f

Re: [Pharo-project] PharoKernel #12121

2010-09-03 Thread Denis Kudriashov
Is it morphic image? Or it is headless? I cant run it as usual image 2010/9/3 Pavel Krivanek > Hi, > > I uploaded the new version of PharoKernel #12121: > > https://gforge.inria.fr/frs/download.php/27438/PharoKernel-1.2-12121.zip > > The shrinking process is now based on packages. > > Cheers > -

Re: [Pharo-project] PharoKernel #12121

2010-09-03 Thread Denis Kudriashov
Could you explain why Text is not part of ui system? And why it should be in kernel? 2010/9/3 Pavel Krivanek > On Fri, Sep 3, 2010 at 2:11 PM, George Herolyants > wrote: > > 2010/9/3 Pavel Krivanek : > >> It is headless image. You have to use start-up scripts. See the file > >> "build_image.sh"

Re: [Pharo-project] Single instance executables

2010-09-04 Thread Denis Kudriashov
You could open some file for write at image startup. When its failed you know that another image already started 2010/9/2, Schwab,Wilhelm K : > Hello all, > > I realize that I hold an unpopular position on this, but it *will* come back > to haunt us: we need to have a way to warn the user if a sec

Re: [Pharo-project] [ANN] Reef now first class citizen on SqueakSource

2010-09-15 Thread Denis Kudriashov
Hello, Can you write little description abount Reef? 2010/9/15 Esteban Lorenzano > Reef ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

[Pharo-project] Issue 2996: Base64MimeConverter with multiline option

2010-09-22 Thread Denis Kudriashov
Hello, I integrate squeak behavior of Base64MimeConverter for multiline option. See Issue 2996 ___ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/

Re: [Pharo-project] NativeBoost and Cog. A working protype.

2010-10-01 Thread Denis Kudriashov
Hello 2010/10/1 Schwab,Wilhelm K > I'm pointing out that "do it all in Smalltalk" has limits, both in syntax > (C++ is generally a better formula translator than Smalltalk; Smalltalk is > better at expressing just about anything else) I have many complex math stuff implemented in smalltalk an

Re: [Pharo-project] Resize pharo window

2010-10-19 Thread Denis Kudriashov
DisplayScreen depth: depthInteger width: widthInteger height: heightInteger fullscreen: aBoolean 2010/10/19 Adrien BARREAU > Hello, > > I try to understand how I can change the size of the Pharo window. > > I tried this: Display setExtent: 1...@700 depth: 32; beDisplay. > > That seems to work .

[Pharo-project] SecurityManager

2010-10-28 Thread Denis Kudriashov
Hello, I found strage behavior around SecurityManager. First, why security manager loads some secury keys at system start up? SecurityManager>>startUp "Attempt to load existing keys" self loadSecurityKeys. (privateKeyPair == nil and:[self isInRestrictedMode not and:[s

Re: [Pharo-project] ISBN - barecode reader?

2010-10-31 Thread Denis Kudriashov
Why you need some library? With my experance barcode reader work like usual keyboard. When you scan barcode with device it chars input to current focused view like as you typed it from keyboard. 2010/10/31 stephane ducasse > barecode

Re: [Pharo-project] ISBN - barecode reader?

2010-10-31 Thread Denis Kudriashov
Oh, sorry. I don't read title thread correctly 31 октября 2010 г. 18:29:00 UTC+3 пользователь dionisiydk < dionisi...@gmail.com> написал: > Why you need some library? > With my experance barcode reader work like usual keyboard. When you scan > barcode with device it chars input to current focused

Re: [Pharo-project] About SimpleMorphic

2010-11-08 Thread Denis Kudriashov
2010/11/8 Igor Stasenko > On 7 November 2010 22:38, Schwab,Wilhelm K wrote: > > Sig, > > > > I disagree; the layout policy should arrange the morphs it controls. To > do otherwise demands that the morphs be able to cope with any type of layout > one might want. The various algorithms have to g

Re: [Pharo-project] Fwd: [Pharo-users] TestMock: a full featured mock testing framework now available in SqueakSource

2010-11-24 Thread Denis Kudriashov
2010/11/24 Dennis Schetinin > > By the way dennis did you start to write a chapter on Mocks? >> >> Stef >> >> > Well, actually I'm another Dennis :) I think you talked about the Mocks > chapter with Dennis Kudryashov, author of Mocketry. > > On the other hand, he was my student, we still stay in

Re: [Pharo-project] Fwd: [Pharo-users] TestMock: a full featured mock testing framework now available in SqueakSource

2010-11-24 Thread Denis Kudriashov
2010/11/24 Stéphane Ducasse > prepare it and help building the pharo-dev script and it will be there. > > Mocketry is one package from http://squeaksource/Mocketry. It has no dependents and can be easy loaded to pharo (I used it in Pharo1.1). But I dont remember gofer api to write script. (But Mo

Re: [Pharo-project] Issue 1970 in pharo: ProtoObject does not define #instVarNamed:, causes problem when using Inspector & SFuture

2010-11-25 Thread Denis Kudriashov
What is SFuture? 2010/11/25 > Updates: >Status: Closed > > Comment #11 on issue 1970 by marcus.denker: ProtoObject does not define > #instVarNamed:, causes problem when using Inspector & SFuture > http://code.google.com/p/pharo/issues/detail?id=1970 > > (No comment was entered for this c

[Pharo-project] FFI question. Is it possible to unload loaded external library

2010-11-30 Thread Denis Kudriashov
Hello, I need implement remote updating some dll's for running pharo application. This dll's used by FFI. I want done this by unloading dll from VM. Then loading new updated dll. And then continue app execution. Is it possible? Or only way is to restart pharo?

Re: [Pharo-project] FFI question. Is it possible to unload loaded external library

2010-12-01 Thread Denis Kudriashov
By loaded dll I mean what happens when I call some dll function. After this I can't update this dll. I will try #unloadModule: as Igor adviced 2010/12/1 Mariano Martinez Peck > > > On Tue, Nov 30, 2010 at 9:35 PM, Denis Kudriashov wrote: > >> Hello, >> >> I

[Pharo-project] PNGReadWriter2Plugin

2010-12-22 Thread Denis Kudriashov
Hello Is somebody have built windows PNGReadWriter2Plugin dll? Can you share it? Best regards, Denis

Re: [Pharo-project] PNGReadWriter2Plugin

2010-12-22 Thread Denis Kudriashov
http://www.squeaksource.com/PNGReadWriter2.html I found old email about this (2006 year). And author wrote that he build windows version but without links. 2010/12/22 Igor Stasenko > On 22 December 2010 20:45, Denis Kudriashov wrote: > > Hello > > > > Is somebo

Re: [Pharo-project] PNGReadWriter2Plugin

2010-12-22 Thread Denis Kudriashov
gin for this? So far, I am quite happy with the > exportAsPNG found in Morph. > > Cheers, > Alexandre > > > > On 22 Dec 2010, at 17:10, Igor Stasenko wrote: > > > On 22 December 2010 20:45, Denis Kudriashov > wrote: > >> Hello > >> > >>

[Pharo-project] How I can do SWF files playing in pharo?

2010-12-22 Thread Denis Kudriashov
Hello I search way for playing swf files in morphic. Can you advise some approaches for implementing this stuff? I found flash package in squeaksource. But It support only swf format version 3. Its realy up to day. I cant read required flash files. And I dont know how I can improve current imple

Re: [Pharo-project] How I can do SWF files playing in pharo?

2010-12-28 Thread Denis Kudriashov
Thank you. I will try sophie code 2010/12/28 Sean P. DeNigris > > I checked OpenSophie. I was able import a Flash movie, but when I played > it, > the sound played for just a moment and the video only updated when I > clicked > pause or play. I don't know what version it is, but the file I imp

[Pharo-project] BitmapFillStyle does not support translucent form

2011-01-11 Thread Denis Kudriashov
Hello, I try BitmapFillStyle with translucent form for my morph object. And It's does not work. There is AlphaInfiniteForm in polymorph package that work good as translucent fill styles. BitmapFillStyle used by Morph>>useBitmapFill. This method try set default bitmap form fill: fill := BitmapFil

[Pharo-project] DateAndTime millisecond is always 0

2011-01-14 Thread Denis Kudriashov
Hello. How I can get current time milliseconds parameter? I try DateAndTime millisecond. But it always zero. And DateAndTime nanoSecond is always zero too. Is it bug? I use Pharo1.1

Re: [Pharo-project] DateAndTime millisecond is always 0

2011-01-14 Thread Denis Kudriashov
/14 Denis Kudriashov > Hello. > > How I can get current time milliseconds parameter? > > I try DateAndTime millisecond. But it always zero. > And DateAndTime nanoSecond is always zero too. > > Is it bug? > > I use Pharo1.1 >

Re: [Pharo-project] DateAndTime millisecond is always 0

2011-01-14 Thread Denis Kudriashov
I think it's solved by Issue 3236<http://code.google.com/p/pharo/issues/detail?id=3236>: Cuis DateAndTime Enhancement 2011/1/14 Denis Kudriashov > I investigate squeak code. Its all work right with milli/nano seconds. > And implementation of DateAndTime very different. It ha

Re: [Pharo-project] DateAndTime millisecond is always 0

2011-01-14 Thread Denis Kudriashov
rom "Time > totalSeconds". > > So I consider this not as a bug but something that could be improved. > > Cheers, > Adrian > > BTW, I remember having seen a fix on Mantis (= Squeak bug tracker) which > asserts that TimeStamp now < TimeStamp now. > > > On

Re: [Pharo-project] Pharo on the iPhone

2011-01-20 Thread Denis Kudriashov
Hello Why you don't publich pharo to cydia? (for jailbreaked users) 2011/1/21 John M McIntosh > (a) sign up for Apple's SDK, to install apps on the iPhone you have to pay > $99 per year. > > (b) visit squeakvm.org download the source tree > > (c) look for the SqueakPureObjc.xcodeproj > compile/

Re: [Pharo-project] Graphics with Anti-Aliasing

2011-01-23 Thread Denis Kudriashov
Its work in another examples. See WatchMorph. It has halo memu anti alias. And when it activated eclipses looks really good. I tryed it in pharo1.1 standart windows VM 2011/1/23 Udo Schneider > Hi Richo, > > could you tell me which Image/VM/OS you where using? > > On my System (Mac OS X 10.6.6)

Re: [Pharo-project] Graphics with Anti-Aliasing

2011-01-23 Thread Denis Kudriashov
> morph := ImageMorph new. > morph image: form. > morph openCenteredInWorld. > "morph abandon." > > That's a "solution" I can live with - as unintuitive as it is though ... > > Thanks for your help. > > Udo > > > > > On 23.01.1

Re: [Pharo-project] About KeyBindings

2011-01-31 Thread Denis Kudriashov
Hello, very interesting work. Can you provide some description? What is GMCondition? What is #compositeWith: , #modifiedWith:? Best regards, Denis 2011/1/31 Fernando Olivero > Hi, recently there were some discussion on implementing KeyBindings for our > IDE. > > There are at least 3 frameworks

[Pharo-project] FileSystem. Possible FSReference rename

2011-02-21 Thread Denis Kudriashov
Hello, I hear many people does not like name FSReference in FileSystem package. Me too. Its not clear to me. But it is main object for end user. Maybe we can rename it to FSLocation? I frequently name variables that point to some file/dir like imagesLocation, settingsLocation and others. Therefor

Re: [Pharo-project] FileSystem. Possible FSReference rename

2011-02-24 Thread Denis Kudriashov
On 23.02.2011, at 00:28, Stéphane Ducasse wrote: > > > > > On Feb 21, 2011, at 2:54 PM, Denis Kudriashov wrote: > > > >> Hello, > >> > >> I hear many people does not like name FSReference in FileSystem package. > Me too. Its not clear to me. But it

Re: [Pharo-project] [ANN] SqueakNOS update released!

2011-03-21 Thread Denis Kudriashov
Hello, Javier. Very impressive work. What you mean by support for Alien and FFI? What libraries I can call from SqueakNOS? And how I can build that libraries? Can I use curl plugin or openssl from SqueakNOS somehow? Best regards, Denis 2011/3/21 Javier Pimás > For all those who may be intres

Re: [Pharo-project] Scaling dropped graphic

2011-03-26 Thread Denis Kudriashov
Hello Hilaire It's because in past image opened in World by ScetchMorph. Now Image morph used for this. But it is not support scaling by resizing morph. ScetchMorph were removed from Pharo. Maybe something similar exists in system. 2011/3/26 Hilaire Fernandes > A DrGeo user dragging and droppin

[Pharo-project] String asUppercase/asLowercase

2011-03-28 Thread Denis Kudriashov
Hello. asUppercase/asLowercase not work for non english strings (russian strings). Is it bug? How it can be implemeted?

  1   2   3   >