For the Sake of Science

Articles, links, notes and news, all about software development

0 notes &

Initializr

Initializr is an HTML5 templates generator to help you getting started with a new project based on HTML5 Boilerplate. It generates for you a clean customizable template with just what you need to start!

Filed under html5 web development

0 notes &

Finding the Version of a running OpenERP Server

One of my customers needed to find out which version of OpenERP Server they were running. I couldn’t find a way of knowing such information using the OpenERP GTK Client or the web client. But I found the version in two different ways according to the operating system:

  • On Linux, or if you are running from uncompiled source, you can find the current version of the server in the file bin/release.py.

    $ cat bin/release.py | grep version
    version = '6.0.3'
    
  • On Windows, check the version of the OpenERP executable, which is typically in the path C:\Program Files\Server\6.0\openerp-server.exe. Right-Click it and choose Properties, then open the Version tab.

Filed under openerp Administration