Pharo-dev
By thread
pharo-dev@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
April 2013
- 97 participants
- 1636 messages
Re: [Pharo-project] [ANN] elasticsearch client
by Stéphane Ducasse
Thanks for your contribution.
This is good to have a catalog of solutions :)
Stef
On Apr 24, 2013, at 8:08 PM, Paul DeBruicker <pdebruic(a)gmail.com> wrote:
> Hi -
>
> Elasticsearch (http://www.elasticsearch.org/) claims to be a: "flexible
> and powerful open source, distributed real-time search and analytics
> engine for the cloud"
>
> I put what I've made up here:
>
> MCHttpRepository
> location: 'http://ss3.gemstone.com/ss/Elasticsearch'
> user: ''
> password: ''
>
>
> So far it allows you to create an index, add documents, get documents by
> id, search using the URI Request api, and then delete the index. I made
> it in Pharo 1.4. I made an attempt to abstract out the HTTP client and
> URL stuff so it could be used with Zinc or Webclient. But right now it
> only works with Zinc. If someone wants it to run in Squeak sooner
> rather than later let me know and I can either fix it and the config or
> help you do it.
>
>
>
> basic usage is like this:
>
> index:= ESIndex createIndex: 'test-index'.
>
> docContent := Dictionary new.
> docContent at: 'message' put: 'this is the documents content'.
> docContent at: 'creator' put: 'Mr T'.
>
> document:=ESDocument withContent: docContent.
> document addToIndex:index.
>
> search:=ESURISearch index:index.
> search queryString:'documents'; search.
> search results explore.
>
> ESIndex deleteIndex:'test-index'
>
>
> I haven't begun implementing the QueryDSL but the ESSearch class does do
> the required GET with a JSON body and does work. Seems like it'd be
> useful to have the QueryDSL but right now I don't need more than the URI
> Request searching provides. It also doesn't do any of the cluster
> health/maintenance api yet
>
>
April 25, 2013
Re: [Pharo-project] [update 3.0] #30062
by Marcus Denker
Not yet⦠so I managed to not see a bug and now the image is in a non-updatable state.
https://ci.inria.fr/pharo/job/Pharo-3.0-Update-Step-1-Tracker/259/console
I am even too tired to think what the options are⦠maybe retracting the faulty one?
On Apr 25, 2013, at 6:01 PM, Marcus Denker <marcus.denker(a)inria.fr> wrote:
> 30062
> -----
>
> 10403 Class comments in Kernel and Collections
> https://pharo.fogbugz.com/f/cases/10403
>
> 10404 Improve RBScanner error handling
> https://pharo.fogbugz.com/f/cases/10404
>
> 10405 Fix a wrong refactoring in CodeImport
> https://pharo.fogbugz.com/f/cases/10405
>
> 10352 Fix for MorphTreeMorph>>updateList
> https://pharo.fogbugz.com/f/cases/10352/
>
>
>
> Diff information:
> http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Morphic-MarcusDenker.1403
> http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/KernelTests-MarcusDenker.489
> http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Kernel-MarcusDenker.1375
> http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/CollectionsTests-MarcusDenke…
> http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/CodeImport-MarcusDenker.16
> http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Collections-Arithmetic-Marcu…
> http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/AST-Core-MarcusDenker.133
>
April 25, 2013
[Pharo-project] [update 3.0] #30062
by Marcus Denker
30062
-----
10403 Class comments in Kernel and Collections
https://pharo.fogbugz.com/f/cases/10403
10404 Improve RBScanner error handling
https://pharo.fogbugz.com/f/cases/10404
10405 Fix a wrong refactoring in CodeImport
https://pharo.fogbugz.com/f/cases/10405
10352 Fix for MorphTreeMorph>>updateList
https://pharo.fogbugz.com/f/cases/10352/
Diff information:
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Morphic-MarcusDenker.1403
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/KernelTests-MarcusDenker.489
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Kernel-MarcusDenker.1375
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/CollectionsTests-MarcusDenke…
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/CodeImport-MarcusDenker.16
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Collections-Arithmetic-Marcu…
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/AST-Core-MarcusDenker.133
April 25, 2013
Re: [Pharo-project] Call for ESUG 2013 presentations
by phil@highoctane.be
Sounds like you really need those holidays!
Take care.
>From an anonymous hotel room in Luxemburg,
Phil
2013/4/25 stephane ducasse <stephane.ducasse(a)free.fr>
> Hi janko
> Let's say that I found your email a bit funny.
>
> - First I'm on holidays using a slow connection internet and I should
> something better for my holidays.
> - Second I cannot post to Etoys, Squeak and this is years that nobody
> posted anything on comp.lang.smalltalk.
> - Third it took me more than afternoon writing the call so other people
> can click and do forward to the mailing-lists of their wishes.
> - Fourth if you believe that this is on purpose that I do not send mail to
> the squeak mailing-lists,
> I would say that you should start to do more for squeak than me and then
> we can talk :).
>
> Stef
>
> On Apr 24, 2013, at 7:05 PM, Janko Mivšek <janko.mivsek(a)eranova.si> wrote:
>
> > Hi Stef,
> >
> > I don't see that announcement on Squeak mailing list, nor others except
> > vwnc, on comp.lang.smalltalk should also go, also squeakland, etoys, ...
> >
> > Best regards
> > Janko
> >
> > Dne 24. 04. 2013 16:49, piše stephane ducasse:
> >> with the corrected url
> >>
> >> with corrected uppercased C for conferences :)
> >>
> >>
> >>
> >> 21st International Smalltalk Joint Conference - Call for Contributions
> >>
> >> Annecy, France
> >> from 9 to 13 September 2013
> >> http://www.esug.org/Conferences/2013/
> >>
> >> This call includes:
> >> Developer Forum
> >> Smalltalk Technology Award
> >> International Workshop
> >> http://www.esug.org/Conferences/2013/InternationalWorkshop
> >> Student Volunteer
> >> http://www.esug.org/Conferences/2013/StudentVolunteers
> >> Camp Smalltalk 8 September 2013
> >>
> >> ----------------------------------------------------------------------
> >> For the past 21 years, the European Smalltalk User Group (ESUG) has
> >> organised the International Smalltalk Conference, a lively forum on
> >> cutting edge software technologies that attract people from both
> >> academia and industry for a whole week. The attendees are both
> >> engineers using Smalltalk in business and students and teachers
> >> using Smalltalk both for research and didactic purposes.
> >>
> >> As every year, this year's edition of the largest European Smalltalk
> >> event will include the regular Smalltalk developers conference with
> >> renowned invited speakers, a Smalltalk camp that proves fruitful for
> >> interactions and discussions. This year will be held the
> >> 9th edition of the Innovation Technology Awards where prizes will be
> >> awarded to authors of best pieces of Smalltalk-related projects
> >> and an international workshop on Smalltalk and dynamic languages
> >> (http://www.esug.org/Conferences/2013/InternationalWorkshop)
> >>
> >> You can support the ESUG conference in many different ways:
> >>
> >> * Sponsor the conference. New sponsoring packages are described at
> >> http://www.esug.org/supportesug/becomeasponsor/
> >> * Submit a talk, a software or a paper to one of the events. See below.
> >> * Attend the conference. We'd like to beat the previous record of
> >> attendance (170 people at Amsterdam 2008)!
> >> * Students can get free registration and hosting if they enrol
> >> into the the Student Volunteers program. See below.
> >>
> >> Developers Forum: International Smalltalk Developers Conference
> >>
> ------------------------------------------------------------------------
> >>
> >> We are looking for YOUR experience on using Smalltalk. You will have
> >> 30 min for presentations and 45 min for hand-ons tutorial.
> >>
> >> The list of topics for the normal talks and tutorials includes, but
> >> is not limited to the following:
> >>
> >> * XP practices, Development tools, Experience reports
> >> * Model driven development, Web development, Team management
> >> * Meta-Modeling, Security, New libraries & frameworks
> >> * Educational material, Embedded systems and robotics
> >> * SOA and Web services, Interaction with other programming languages
> >>
> >> Teaching Pearls
> >> ---------------
> >> New this year!!!
> >> We want two news types of sessions in addition to default talk and
> >> show us your projects sessions.
> >>
> >> - Show your business 10 min session (Get prepared!!)
> >> - Teaching pearls : we want some session on how to teach some design
> >> aspects. We want your tip and tricks to teach Smalltalk or OOP.
> >>
> >> We expect to have several 10 to 15 min sessions aggregated.
> >>
> >> Open Forum: starting with Smalltalk
> >>
> ------------------------------------------------------------------------
> >> New this year!!
> >> The event will be held at IAE Savoie Mont-Blanc - University of
> Savoie.
> >> This is an opportunity for students and local professionals to
> >> discover Smalltalk.
> >> A room will be freely accessible and we would like to propose some
> >> talks and workshop
> >> for Smalltalk beginners.
> >>
> >> The list of topics includes, but is not limited to the following:
> >> - Why Smalltalk ?
> >> - Panorama of Smalltalk solutions
> >> - Getting started with Smalltalk
> >> - Success stories
> >>
> >>
> >>
> >>
> >> How to submit?
> >> --------------
> >>
> >> Submissions due on 15st June 2013
> >> Notification of acceptance will be on done on the fly.
> >> More information at http://www.esug.org/conferences/2013
> >>
> >>
> >> Pay attention: the places are limited so do not wait till the last
> >> minute to apply. Prospective presenters should submit a request to
> >> Stephane.Ducasse(a)inria.fr <mailto:Stephane.Ducasse@inria.fr> AND USE
> >> THE following header [ESUG 2013 Developers].
> >>
> >> Please follow the template below the email will be automatically
> >> processed!
> >>
> >> Subject: [ESUG 2013 Developers] + your name
> >> First Name:
> >> Last Name:
> >> Email where you can always be reached:
> >> Title:
> >> Type: Tutorial/Talk/Teaching Pearl/OpenForum
> >> Abstract:
> >> Bio:
> >>
> >>
> >> Any presentation not respecting this form will be discarded
> automatically
> >>
> >>
> >>
> >> International Workshop on Smalltalk Technologies
> >>
> ------------------------------------------------------------------------
> >> http://www.esug.org/Conferences/2013/InternationalWorkshop
> >>
> >> Smalltalk is considered as a design pearl and as a beacon in the
> >> realm of programming languages and programming environments. We are
> >> proud to invite submissions to the International Workshop on
> >> Smalltalk Technologies which is held as part of the ESUG 2013 joint
> >> event. The goals of the workshop is to create a forum around
> >> advances or experience in Smalltalk. We welcome contributions on all
> >> aspects, theoretical as well as practical, of Smalltalk related
> >> topics such as
> >>
> >> - aspect-oriented programming, meta-programming,
> >> - frameworks, interaction with other languages,
> >> - implementation,
> >> - new dialects or languages implemented in Smalltalk, tools,
> >> - meta-modeling, design patterns, experience reports
> >>
> >> Technology Award Competition
> >>
> ------------------------------------------------------------------------
> >> The top 3 teams with the most innovative software will receive,
> >> respectively, 500 Euros, 300 Euros and 200 Euros during an awards
> >> ceremony at the conference. Developers of any Smalltalk-based
> >> software are welcome to compete.
> >> More information at http://www.esug.org/conferences/2013/
> >>
> >> Student Volunteer Program
> >>
> ------------------------------------------------------------------------
> >> If you are a student wanting to attend ESUG, have you considered
> >> being a student volunteer? Student volunteers help keep the
> >> conference running smoothly; in return, they have free
> >> accommodations, while still having most of the time to enjoy the
> >> conference.
> >> More information at
> >> http://www.esug.org/Conferences/2013
> >> http://www.esug.org/Conferences/2013/StudentVolunteers
> >>
> >> We hope to see you there and have fun together.
> >>
> >
> > --
> > Janko Mivšek
> > Aida/Web
> > Smalltalk Web Application Server
> > http://www.aidaweb.si
> >
>
>
>
April 25, 2013
Re: [Pharo-project] Call for ESUG 2013 presentations
by Janko Mivšek
Hi Stef,
Let me answer simply: I as GSoC admin take a big care that GSoC emails
reach as many Smalltalkers and communities as possible and if I cannot,
I ask someone for help to do that. Because everyone deserves the
opportunity on GSoC and yes, exactly, that someone wouldn't understand
wrong, why he was not informed.
I think such attitude is a necessity for any successful Smalltalk-wide
effort as both Smalltalk GSoC and ESUG are.
Best regards
Janko
Dne 25. 04. 2013 15:40, piše stephane ducasse:
> Hi janko
> Let's say that I found your email a bit funny.
>
> - First I'm on holidays using a slow connection internet and I should something better for my holidays.
> - Second I cannot post to Etoys, Squeak and this is years that nobody posted anything on comp.lang.smalltalk.
> - Third it took me more than afternoon writing the call so other people can click and do forward to the mailing-lists of their wishes.
> - Fourth if you believe that this is on purpose that I do not send mail to the squeak mailing-lists,
> I would say that you should start to do more for squeak than me and then we can talk :).
>
> Stef
>
> On Apr 24, 2013, at 7:05 PM, Janko Mivšek <janko.mivsek(a)eranova.si> wrote:
>
>> Hi Stef,
>>
>> I don't see that announcement on Squeak mailing list, nor others except
>> vwnc, on comp.lang.smalltalk should also go, also squeakland, etoys, ...
>>
>> Best regards
>> Janko
>>
>> Dne 24. 04. 2013 16:49, piše stephane ducasse:
>>> with the corrected url
>>>
>>> with corrected uppercased C for conferences :)
>>>
>>>
>>>
>>> 21st International Smalltalk Joint Conference - Call for Contributions
>>>
>>> Annecy, France
>>> from 9 to 13 September 2013
>>> http://www.esug.org/Conferences/2013/
>>>
>>> This call includes:
>>> Developer Forum
>>> Smalltalk Technology Award
>>> International Workshop
>>> http://www.esug.org/Conferences/2013/InternationalWorkshop
>>> Student Volunteer
>>> http://www.esug.org/Conferences/2013/StudentVolunteers
>>> Camp Smalltalk 8 September 2013
>>>
>>> ----------------------------------------------------------------------
>>> For the past 21 years, the European Smalltalk User Group (ESUG) has
>>> organised the International Smalltalk Conference, a lively forum on
>>> cutting edge software technologies that attract people from both
>>> academia and industry for a whole week. The attendees are both
>>> engineers using Smalltalk in business and students and teachers
>>> using Smalltalk both for research and didactic purposes.
>>>
>>> As every year, this year's edition of the largest European Smalltalk
>>> event will include the regular Smalltalk developers conference with
>>> renowned invited speakers, a Smalltalk camp that proves fruitful for
>>> interactions and discussions. This year will be held the
>>> 9th edition of the Innovation Technology Awards where prizes will be
>>> awarded to authors of best pieces of Smalltalk-related projects
>>> and an international workshop on Smalltalk and dynamic languages
>>> (http://www.esug.org/Conferences/2013/InternationalWorkshop)
>>>
>>> You can support the ESUG conference in many different ways:
>>>
>>> * Sponsor the conference. New sponsoring packages are described at
>>> http://www.esug.org/supportesug/becomeasponsor/
>>> * Submit a talk, a software or a paper to one of the events. See below.
>>> * Attend the conference. We'd like to beat the previous record of
>>> attendance (170 people at Amsterdam 2008)!
>>> * Students can get free registration and hosting if they enrol
>>> into the the Student Volunteers program. See below.
>>>
>>> Developers Forum: International Smalltalk Developers Conference
>>> ------------------------------------------------------------------------
>>>
>>> We are looking for YOUR experience on using Smalltalk. You will have
>>> 30 min for presentations and 45 min for hand-ons tutorial.
>>>
>>> The list of topics for the normal talks and tutorials includes, but
>>> is not limited to the following:
>>>
>>> * XP practices, Development tools, Experience reports
>>> * Model driven development, Web development, Team management
>>> * Meta-Modeling, Security, New libraries & frameworks
>>> * Educational material, Embedded systems and robotics
>>> * SOA and Web services, Interaction with other programming languages
>>>
>>> Teaching Pearls
>>> ---------------
>>> New this year!!!
>>> We want two news types of sessions in addition to default talk and
>>> show us your projects sessions.
>>>
>>> - Show your business 10 min session (Get prepared!!)
>>> - Teaching pearls : we want some session on how to teach some design
>>> aspects. We want your tip and tricks to teach Smalltalk or OOP.
>>>
>>> We expect to have several 10 to 15 min sessions aggregated.
>>>
>>> Open Forum: starting with Smalltalk
>>> ------------------------------------------------------------------------
>>> New this year!!
>>> The event will be held at IAE Savoie Mont-Blanc - University of Savoie.
>>> This is an opportunity for students and local professionals to
>>> discover Smalltalk.
>>> A room will be freely accessible and we would like to propose some
>>> talks and workshop
>>> for Smalltalk beginners.
>>>
>>> The list of topics includes, but is not limited to the following:
>>> - Why Smalltalk ?
>>> - Panorama of Smalltalk solutions
>>> - Getting started with Smalltalk
>>> - Success stories
>>>
>>>
>>>
>>>
>>> How to submit?
>>> --------------
>>>
>>> Submissions due on 15st June 2013
>>> Notification of acceptance will be on done on the fly.
>>> More information at http://www.esug.org/conferences/2013
>>>
>>>
>>> Pay attention: the places are limited so do not wait till the last
>>> minute to apply. Prospective presenters should submit a request to
>>> Stephane.Ducasse(a)inria.fr <mailto:Stephane.Ducasse@inria.fr> AND USE
>>> THE following header [ESUG 2013 Developers].
>>>
>>> Please follow the template below the email will be automatically
>>> processed!
>>>
>>> Subject: [ESUG 2013 Developers] + your name
>>> First Name:
>>> Last Name:
>>> Email where you can always be reached:
>>> Title:
>>> Type: Tutorial/Talk/Teaching Pearl/OpenForum
>>> Abstract:
>>> Bio:
>>>
>>>
>>> Any presentation not respecting this form will be discarded automatically
>>>
>>>
>>>
>>> International Workshop on Smalltalk Technologies
>>> ------------------------------------------------------------------------
>>> http://www.esug.org/Conferences/2013/InternationalWorkshop
>>>
>>> Smalltalk is considered as a design pearl and as a beacon in the
>>> realm of programming languages and programming environments. We are
>>> proud to invite submissions to the International Workshop on
>>> Smalltalk Technologies which is held as part of the ESUG 2013 joint
>>> event. The goals of the workshop is to create a forum around
>>> advances or experience in Smalltalk. We welcome contributions on all
>>> aspects, theoretical as well as practical, of Smalltalk related
>>> topics such as
>>>
>>> - aspect-oriented programming, meta-programming,
>>> - frameworks, interaction with other languages,
>>> - implementation,
>>> - new dialects or languages implemented in Smalltalk, tools,
>>> - meta-modeling, design patterns, experience reports
>>>
>>> Technology Award Competition
>>> ------------------------------------------------------------------------
>>> The top 3 teams with the most innovative software will receive,
>>> respectively, 500 Euros, 300 Euros and 200 Euros during an awards
>>> ceremony at the conference. Developers of any Smalltalk-based
>>> software are welcome to compete.
>>> More information at http://www.esug.org/conferences/2013/
>>>
>>> Student Volunteer Program
>>> ------------------------------------------------------------------------
>>> If you are a student wanting to attend ESUG, have you considered
>>> being a student volunteer? Student volunteers help keep the
>>> conference running smoothly; in return, they have free
>>> accommodations, while still having most of the time to enjoy the
>>> conference.
>>> More information at
>>> http://www.esug.org/Conferences/2013
>>> http://www.esug.org/Conferences/2013/StudentVolunteers
>>>
>>> We hope to see you there and have fun together.
>>>
>>
>> --
>> Janko Mivšek
>> Aida/Web
>> Smalltalk Web Application Server
>> http://www.aidaweb.si
>>
>
>
>
--
Janko Mivšek
Aida/Web
Smalltalk Web Application Server
http://www.aidaweb.si
April 25, 2013
[Pharo-project] [regression reporter]regression occurred
by no-reply@ci.inria.fr
https://ci.inria.fr/pharo/job/Pharo-3.0-Update-Step-2-Validation/./label=wi…
14 regressions found.
Tests.CodeImport.ChunkImportTestCase.testImportAClass
Tests.CodeImport.ChunkImportTestCase.testImportAClassCategory
Tests.CodeImport.ChunkImportTestCase.testImportAClassComment
Tests.CodeImport.ChunkImportTestCase.testImportAClassCommentWithExclamationMarks
Tests.CodeImport.ChunkImportTestCase.testImportAMethod
Tests.CodeImport.ChunkImportTestCase.testImportAMethodWithNoTimestamp
Tests.CodeImport.ChunkImportTestCase.testImportAMethodWithSpacesInItsCategory
Tests.CodeImport.ChunkImportTestCase.testImportFromReadStream
Tests.CodeImport.ChunkImportTestCase.testImportString
Tests.Monticello.MCFileInTest.testStWriter
Tests.Monticello.MCMczInstallerTest.testInstallFromFile
Tests.Monticello.MCMczInstallerTest.testInstallFromStream
Tests.Traits.TraitFileOutTest.testFileOutCategory
Tests.Traits.TraitFileOutTest.testFileOutTrait
April 25, 2013
[Pharo-project] [regression reporter]regression occurred
by no-reply@ci.inria.fr
https://ci.inria.fr/pharo/job/Pharo-3.0-Update-Step-2-Validation/./label=ma…
14 regressions found.
Tests.CodeImport.ChunkImportTestCase.testImportAClass
Tests.CodeImport.ChunkImportTestCase.testImportAClassCategory
Tests.CodeImport.ChunkImportTestCase.testImportAClassComment
Tests.CodeImport.ChunkImportTestCase.testImportAClassCommentWithExclamationMarks
Tests.CodeImport.ChunkImportTestCase.testImportAMethod
Tests.CodeImport.ChunkImportTestCase.testImportAMethodWithNoTimestamp
Tests.CodeImport.ChunkImportTestCase.testImportAMethodWithSpacesInItsCategory
Tests.CodeImport.ChunkImportTestCase.testImportFromReadStream
Tests.CodeImport.ChunkImportTestCase.testImportString
Tests.Monticello.MCFileInTest.testStWriter
Tests.Monticello.MCMczInstallerTest.testInstallFromFile
Tests.Monticello.MCMczInstallerTest.testInstallFromStream
Tests.Traits.TraitFileOutTest.testFileOutCategory
Tests.Traits.TraitFileOutTest.testFileOutTrait
April 25, 2013
[Pharo-project] [regression reporter]regression occurred
by no-reply@ci.inria.fr
https://ci.inria.fr/pharo/job/Pharo-3.0-Update-Step-2-Validation/./label=li…
14 regressions found.
Tests.CodeImport.ChunkImportTestCase.testImportAClass
Tests.CodeImport.ChunkImportTestCase.testImportAClassCategory
Tests.CodeImport.ChunkImportTestCase.testImportAClassComment
Tests.CodeImport.ChunkImportTestCase.testImportAClassCommentWithExclamationMarks
Tests.CodeImport.ChunkImportTestCase.testImportAMethod
Tests.CodeImport.ChunkImportTestCase.testImportAMethodWithNoTimestamp
Tests.CodeImport.ChunkImportTestCase.testImportAMethodWithSpacesInItsCategory
Tests.CodeImport.ChunkImportTestCase.testImportFromReadStream
Tests.CodeImport.ChunkImportTestCase.testImportString
Tests.Monticello.MCFileInTest.testStWriter
Tests.Monticello.MCMczInstallerTest.testInstallFromFile
Tests.Monticello.MCMczInstallerTest.testInstallFromStream
Tests.Traits.TraitFileOutTest.testFileOutCategory
Tests.Traits.TraitFileOutTest.testFileOutTrait
April 25, 2013
[Pharo-project] [update 3.0] #30061
by Marcus Denker
30061
-----
10400 add #evaluate to TPureBehavior and SmalltakImage
https://pharo.fogbugz.com/f/cases/10400/
10397 Underscore cleanUp, Part 2
https://pharo.fogbugz.com/f/filters/35
10395 DNU SmallInteger>>#add: when loading metacello configuration
https://pharo.fogbugz.com/f/cases/10395
Diff information:
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/System-Support-MarcusDenker.…
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/System-CommandLine-MarcusDen…
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Spec-Tools-MarcusDenker.93
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Refactoring-Tests-Environmen…
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Refactoring-Tests-Core-Marcu…
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Monticello-MarcusDenker.789
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Metacello-Core-MarcusDenker.…
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/KernelTests-MarcusDenker.488
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/FuelTests-MarcusDenker.313
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/Compiler-MarcusDenker.392
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/DebuggerModel-MarcusDenker.25
http://smalltalkhub.com/#!/~Pharo/Pharo30/diff/CodeImport-MarcusDenker.14
April 25, 2013
Re: [Pharo-project] Call for ESUG 2013 presentations
by stephane ducasse
Hi janko
Let's say that I found your email a bit funny.
- First I'm on holidays using a slow connection internet and I should something better for my holidays.
- Second I cannot post to Etoys, Squeak and this is years that nobody posted anything on comp.lang.smalltalk.
- Third it took me more than afternoon writing the call so other people can click and do forward to the mailing-lists of their wishes.
- Fourth if you believe that this is on purpose that I do not send mail to the squeak mailing-lists,
I would say that you should start to do more for squeak than me and then we can talk :).
Stef
On Apr 24, 2013, at 7:05 PM, Janko Mivšek <janko.mivsek(a)eranova.si> wrote:
> Hi Stef,
>
> I don't see that announcement on Squeak mailing list, nor others except
> vwnc, on comp.lang.smalltalk should also go, also squeakland, etoys, ...
>
> Best regards
> Janko
>
> Dne 24. 04. 2013 16:49, piše stephane ducasse:
>> with the corrected url
>>
>> with corrected uppercased C for conferences :)
>>
>>
>>
>> 21st International Smalltalk Joint Conference - Call for Contributions
>>
>> Annecy, France
>> from 9 to 13 September 2013
>> http://www.esug.org/Conferences/2013/
>>
>> This call includes:
>> Developer Forum
>> Smalltalk Technology Award
>> International Workshop
>> http://www.esug.org/Conferences/2013/InternationalWorkshop
>> Student Volunteer
>> http://www.esug.org/Conferences/2013/StudentVolunteers
>> Camp Smalltalk 8 September 2013
>>
>> ----------------------------------------------------------------------
>> For the past 21 years, the European Smalltalk User Group (ESUG) has
>> organised the International Smalltalk Conference, a lively forum on
>> cutting edge software technologies that attract people from both
>> academia and industry for a whole week. The attendees are both
>> engineers using Smalltalk in business and students and teachers
>> using Smalltalk both for research and didactic purposes.
>>
>> As every year, this year's edition of the largest European Smalltalk
>> event will include the regular Smalltalk developers conference with
>> renowned invited speakers, a Smalltalk camp that proves fruitful for
>> interactions and discussions. This year will be held the
>> 9th edition of the Innovation Technology Awards where prizes will be
>> awarded to authors of best pieces of Smalltalk-related projects
>> and an international workshop on Smalltalk and dynamic languages
>> (http://www.esug.org/Conferences/2013/InternationalWorkshop)
>>
>> You can support the ESUG conference in many different ways:
>>
>> * Sponsor the conference. New sponsoring packages are described at
>> http://www.esug.org/supportesug/becomeasponsor/
>> * Submit a talk, a software or a paper to one of the events. See below.
>> * Attend the conference. We'd like to beat the previous record of
>> attendance (170 people at Amsterdam 2008)!
>> * Students can get free registration and hosting if they enrol
>> into the the Student Volunteers program. See below.
>>
>> Developers Forum: International Smalltalk Developers Conference
>> ------------------------------------------------------------------------
>>
>> We are looking for YOUR experience on using Smalltalk. You will have
>> 30 min for presentations and 45 min for hand-ons tutorial.
>>
>> The list of topics for the normal talks and tutorials includes, but
>> is not limited to the following:
>>
>> * XP practices, Development tools, Experience reports
>> * Model driven development, Web development, Team management
>> * Meta-Modeling, Security, New libraries & frameworks
>> * Educational material, Embedded systems and robotics
>> * SOA and Web services, Interaction with other programming languages
>>
>> Teaching Pearls
>> ---------------
>> New this year!!!
>> We want two news types of sessions in addition to default talk and
>> show us your projects sessions.
>>
>> - Show your business 10 min session (Get prepared!!)
>> - Teaching pearls : we want some session on how to teach some design
>> aspects. We want your tip and tricks to teach Smalltalk or OOP.
>>
>> We expect to have several 10 to 15 min sessions aggregated.
>>
>> Open Forum: starting with Smalltalk
>> ------------------------------------------------------------------------
>> New this year!!
>> The event will be held at IAE Savoie Mont-Blanc - University of Savoie.
>> This is an opportunity for students and local professionals to
>> discover Smalltalk.
>> A room will be freely accessible and we would like to propose some
>> talks and workshop
>> for Smalltalk beginners.
>>
>> The list of topics includes, but is not limited to the following:
>> - Why Smalltalk ?
>> - Panorama of Smalltalk solutions
>> - Getting started with Smalltalk
>> - Success stories
>>
>>
>>
>>
>> How to submit?
>> --------------
>>
>> Submissions due on 15st June 2013
>> Notification of acceptance will be on done on the fly.
>> More information at http://www.esug.org/conferences/2013
>>
>>
>> Pay attention: the places are limited so do not wait till the last
>> minute to apply. Prospective presenters should submit a request to
>> Stephane.Ducasse(a)inria.fr <mailto:Stephane.Ducasse@inria.fr> AND USE
>> THE following header [ESUG 2013 Developers].
>>
>> Please follow the template below the email will be automatically
>> processed!
>>
>> Subject: [ESUG 2013 Developers] + your name
>> First Name:
>> Last Name:
>> Email where you can always be reached:
>> Title:
>> Type: Tutorial/Talk/Teaching Pearl/OpenForum
>> Abstract:
>> Bio:
>>
>>
>> Any presentation not respecting this form will be discarded automatically
>>
>>
>>
>> International Workshop on Smalltalk Technologies
>> ------------------------------------------------------------------------
>> http://www.esug.org/Conferences/2013/InternationalWorkshop
>>
>> Smalltalk is considered as a design pearl and as a beacon in the
>> realm of programming languages and programming environments. We are
>> proud to invite submissions to the International Workshop on
>> Smalltalk Technologies which is held as part of the ESUG 2013 joint
>> event. The goals of the workshop is to create a forum around
>> advances or experience in Smalltalk. We welcome contributions on all
>> aspects, theoretical as well as practical, of Smalltalk related
>> topics such as
>>
>> - aspect-oriented programming, meta-programming,
>> - frameworks, interaction with other languages,
>> - implementation,
>> - new dialects or languages implemented in Smalltalk, tools,
>> - meta-modeling, design patterns, experience reports
>>
>> Technology Award Competition
>> ------------------------------------------------------------------------
>> The top 3 teams with the most innovative software will receive,
>> respectively, 500 Euros, 300 Euros and 200 Euros during an awards
>> ceremony at the conference. Developers of any Smalltalk-based
>> software are welcome to compete.
>> More information at http://www.esug.org/conferences/2013/
>>
>> Student Volunteer Program
>> ------------------------------------------------------------------------
>> If you are a student wanting to attend ESUG, have you considered
>> being a student volunteer? Student volunteers help keep the
>> conference running smoothly; in return, they have free
>> accommodations, while still having most of the time to enjoy the
>> conference.
>> More information at
>> http://www.esug.org/Conferences/2013
>> http://www.esug.org/Conferences/2013/StudentVolunteers
>>
>> We hope to see you there and have fun together.
>>
>
> --
> Janko Mivšek
> Aida/Web
> Smalltalk Web Application Server
> http://www.aidaweb.si
>
April 25, 2013