Planet Open ERP

Planet Open Object

openerp: what's new online

Sunday, August 17, 2008

OMG! OpenERP has been eated by the Alien



Hello,

I created a subreddit for OpenERP. I think it is very interresting, because you can get all posts talking about OpenERP.

Don't hesitate to contribute and submit your own links

What ???? False == True !!


Python 2.5.2 (r252:60911, Jul 31 2008, 17:31:22)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> print False
False
>>> False=True
>>> print False
True
>>> False == True
True
>>>


Can you explain me why 'False' can to be 'True' ?

False is not defined as a keyword but as global variable.

But in Python 3, it will become a keyword !

Tuesday, August 5, 2008

OpenObject has been launched !

Hello Everyone,

We are glad to announce the launch of OpenObject, an open source
framework based on Python that lets you build your entreprise
applications extremely fastly and easily.

It includes an ORM, a Workflow engine, several report designers, a MDX
engine, a dashboard designer, a module system, an automated migration
engine, and much more...

Various projects related to the framework have been hosted on
Launchpad.net under the OpenObject umbrella for better collaboration
with the OpenERP community (centralized bug tracker, translations,
blueprints and more).

Links:

* http://openobject.com/
* http://openerp.com/
* https://launchpad.net/openobject/
* https://launchpad.net/openerp/
* https://launchpad.net/openobject-server/
* https://launchpad.net/openobject-addons/
* https://launchpad.net/openobject-client/
* https://launchpad.net/openobject-client-web/
* https://launchpad.net/openobject-bi/

Regards

Thanks to Amit Mendapara for this announce,

Monday, August 4, 2008

How to get the trunk version from launchpad.

I want to explain you how to get the trunk version of OpenERP from Launchpad with Bazaar.

For the community, if you want to get the source, there is a public access to the repository.
$> mkdir projects
$> cd projects

Get a clone of each repository

$> bzr clone lp:~openerp/openobject-server/trunk server
$> bzr clone lp:~openerp/openobject-client/trunk client
$> bzr clone lp:~openerp/openobject-client-web/trunk client-web
$> bzr clone lp:~openerp/openobject-addons/trunk addons

Link the addons to the server

$> ln -s addons/* server/bin/addons

If you want to get a clone of the extra-addons repository, you can execute this command

$> bzr clone lp:~openerp-commiter/openobject-addons/trunk-extra-addons extra-addons

Cool, you have the last version of the trunk !

For more information, see the wiki page: HowToContribute