Re: [Pharo-users] Rearranging tests between categories

2013-08-27 Thread Mohammad Al Houssami (Alumni)
I am going to file out my test classes fix them in the old version and then file it in back the new one :) I think this should work faster. I will get the names of the tests from test history just like you told me earlier. Thank you so much :) -Original Message- From: Pharo-users [mailto

[Pharo-users] Rearranging tests between categories

2013-08-27 Thread Mohammad Al Houssami (Alumni)
Hello All I have done this before but I cant remember how I did it. I did "something" that gave me a window that has something similar to this TestCatA(#test1 #test2...) TestCatB(#test3 #test4) and just by doing cut and paste from one set to another and saving would move the methods... I am no

Re: [Pharo-users] Categorizing tests according to test result

2013-08-26 Thread Mohammad Al Houssami (Alumni)
Well I am writing tests for my html5 parser. So the script I have is generating Smalltalk unit test code of all possible combinations a set of html elements. I am using basic data mining to change the expected output. To make it clear. The tests I have the elements html head body and p opening

[Pharo-users] Categorizing tests according to test result

2013-08-25 Thread Mohammad Al Houssami (Alumni)
Hello all. I am using the SUnit framework and I have made a script to generate tests and I have more than 5000 tests. I want to know if there is a way I can categorize the tests into Passin Failing and Error categories without having to do that manually. I want to late file out all the passing

Re: [Pharo-users] Rendering in Glamour

2013-08-24 Thread Mohammad Al Houssami (Alumni)
Show: [ :a | a text display: [ :el | el asString ] ] ]; openOn: domRoot Cheers, Doru On Sat, Aug 24, 2013 at 9:50 PM, Mohammad Al Houssami (Alumni) mailto:mh...@mail.aub.edu>> wrote: Yes I am. But I have loaded the Moose and Glamour image into pharo. I am b

Re: [Pharo-users] Rendering in Glamour

2013-08-24 Thread Mohammad Al Houssami (Alumni)
t from the beginning. Could you tell us what you want to do? What should you browser look like. And what do you have in the TreeBrowser? Is the code available? Cheers, Doru On Sat, Aug 24, 2013 at 9:31 PM, Mohammad Al Houssami (Alumni) mailto:mh...@mail.aub.edu>> wrote: Actually yes I

Re: [Pharo-users] Rendering in Glamour

2013-08-24 Thread Mohammad Al Houssami (Alumni)
ug 24, 2013 at 3:10 PM, Mohammad Al Houssami (Alumni) mailto:mh...@mail.aub.edu>> wrote: I am trying to use the Glamour and as I first step I copied the code provided in the examples and pasted it in a new class called tree browser. I then tried to execute this in my workspace: |browser a

[Pharo-users] Rendering in Glamour

2013-08-24 Thread Mohammad Al Houssami (Alumni)
I am trying to use the Glamour and as I first step I copied the code provided in the examples and pasted it in a new class called tree browser. I then tried to execute this in my workspace: |browser accum renderer| browser := TreeBrowser new. accum := browser accumulator. renderer := GLMMorphicRen

Re: [Pharo-users] Smalltalk frameworks that use parsers

2013-08-19 Thread Mohammad Al Houssami (Alumni)
use parsers On Mon, Aug 19, 2013 at 12:21 PM, Mohammad Al Houssami (Alumni) wrote: > Are there any frameworks or applications built in Smalltalk that use > parsers ? If yes can I get the names of a few of them ? there are plenty of applications that use parsers: - smalltalkhub.com

Re: [Pharo-users] Smalltalk frameworks that use parsers

2013-08-19 Thread Mohammad Al Houssami (Alumni)
http://moosetechnology.org But, could you elaborate your use case? Doru On Mon, Aug 19, 2013 at 12:21 PM, Mohammad Al Houssami (Alumni) mailto:mh...@mail.aub.edu>> wrote: Hello all, Are there any frameworks or applications built in Smalltalk that use parsers ? If yes can I get the names

[Pharo-users] Smalltalk frameworks that use parsers

2013-08-19 Thread Mohammad Al Houssami (Alumni)
Hello all, Are there any frameworks or applications built in Smalltalk that use parsers ? If yes can I get the names of a few of them ? I was only able to find applications that provide parsing services but not things that use a parser to do something like sanitization for example. Any help is m

Re: [Pharo-users] XMLWriter Class

2013-08-05 Thread Mohammad Al Houssami (Alumni)
can investigate the bug in your image. Cheers, Jura El 05-08-2013, a las 8:35, "Mohammad Al Houssami (Alumni)" mailto:mh...@mail.aub.edu>> escribió: I just downloaded all the require mcz files and dropped them into pharo. I cant find the same versions you told me about J

[Pharo-users] XMLWriter Class

2013-08-05 Thread Mohammad Al Houssami (Alumni)
I have asked about this earlier. I am using the XML library and in XML-Parser-Nodes there is a method printOn printOn: aStream (XMLWriter on: aStream) writeWith: [:writer | self writeXMLOn: writer]. Since I didn't have XMLWriter I thought it would be inside the XML-Writer packa

Re: [Pharo-users] ZnHttpUnsucessful: 501 not implemented

2013-07-19 Thread Mohammad Al Houssami (Alumni)
http://pharobyexample.org/ First you have to create your repository online, then you save your package to it. Maybe you could also read this http://zn.stfx.eu/zn/build-and-deploy-1st-webapp/#savingcodetoarepository but the book is better, I think. On 18 Jul 2013, at 22:59, "Mohammad Al Houssa

Re: [Pharo-users] ZnHttpUnsucessful: 501 not implemented

2013-07-18 Thread Mohammad Al Houssami (Alumni)
] On Behalf Of Sven Van Caekenberghe Sent: Thursday, July 18, 2013 8:19 PM To: Any question about pharo is welcome Subject: Re: [Pharo-users] ZnHttpUnsucessful: 501 not implemented On 18 Jul 2013, at 20:28, "Mohammad Al Houssami (Alumni)" wrote: > Hello Everyone. > I was try

Re: [Pharo-users] XMLWriter MCZ File

2013-07-16 Thread Mohammad Al Houssami (Alumni)
/#!/~PharoExtras/<http://www.smalltalkhub.com/#!/~PharoExtras/XMLWriter> Let us know if this is working. Stef On Jul 11, 2013, at 11:01 PM, Mohammad Al Houssami (Alumni) mailto:mh...@mail.aub.edu>> wrote: Hello all I was looking for the XMLWriter package because it seems it is not part of the

[Pharo-users] XMLWriter MCZ File

2013-07-11 Thread Mohammad Al Houssami (Alumni)
Hello all I was looking for the XMLWriter package because it seems it is not part of the complete XML package but I am not sure which is the newest one since I have found several here : http://www.squeaksource.com/XMLWriter/ I am using pharo 2.0 just in case this is relevant. Any help is apprecia

Re: [Pharo-users] Choosing multiple tests to move to new class

2013-06-13 Thread Mohammad Al Houssami (Alumni)
has only been added in Pharo 2.0... On 2013-06-13, at 13:55, "Mohammad Al Houssami (Alumni)" wrote: > It is but cant I drag several tests at the same time? > I want to have every 200 tests in a class. Shall I do them one by one ? > > From: Pharo-users [mailto:pharo-use

Re: [Pharo-users] Choosing multiple tests to move to new class

2013-06-13 Thread Mohammad Al Houssami (Alumni)
tests to move to new class Drag n Drop on lists is a bit strange. You have to start dragging with the last click. SHIFT-CLICK .. SHIFT-CLICK => continue dragging BTW: this has only been added in Pharo 2.0... On 2013-06-13, at 13:55, "Mohammad Al Houssami (Alumni)" wrote: >

Re: [Pharo-users] Choosing multiple tests to move to new class

2013-06-13 Thread Mohammad Al Houssami (Alumni)
welcome Subject: Re: [Pharo-users] Choosing multiple tests to move to new class Isn't drag & drop working ? On Thu, Jun 13, 2013 at 12:46 PM, Mohammad Al Houssami (Alumni) mailto:mh...@mail.aub.edu>> wrote: Hello, I have been trying to see if its possible to click and choose several

[Pharo-users] Choosing multiple tests to move to new class

2013-06-13 Thread Mohammad Al Houssami (Alumni)
Hello, I have been trying to see if its possible to click and choose several methods to be able to move them at the same time into another class but It seems its not possible. I have a test class that has around 1700 tests and the vm cannot run them all as it runs out of memory so I want to spl

Re: [Pharo-users] Tests not recognized by the tester.

2013-06-04 Thread Mohammad Al Houssami (Alumni)
: Any question about pharo is welcome Subject: Re: [Pharo-users] Tests not recognized by the tester. Mohammad , If you subclass from TestCase and prefix your test methods with 'test', as in testPrinting they should be recognised. Sven On 04 Jun 2013, at 15:04, "Mohammad Al Houssa

[Pharo-users] Tests not recognized by the tester.

2013-06-04 Thread Mohammad Al Houssami (Alumni)
Hello All. I have gone through the SUnit chapter in the PBE book. I tried to do the same but the test runner doesn't seem to recognize the test. I have noticed there are grey circles next to tests in other packages which is not the case in my test. There is nothing significant about the other c