View tryton_shell.py
#!/usr/bin/env python | |
""" tryton_shell: A dirty shell for Tryton to quickly interact with it | |
usage: tryton_shell.py [-h] --config CONFIG --database DATABASE | |
arguments: | |
--config CONFIG Tryton config file. | |
--database DATABASE Tryton database. |
View travis_setup.py
#!/usr/bin/env python | |
''' | |
Install package from .travis.yml | |
usage: travis_setup.py | |
@author Tarun Bhardwaj | |
@license FreeBSD Licence | |
''' |
View Openerp_partners
/* | |
Run on https://www.openerp.com/partners/directory/ | |
*/ | |
var countries = Array(); | |
$(".oe_countries ul li a").each(function(){ | |
if ($(this).attr("href") != undefined) | |
countries.push({ | |
"Link": $(this).attr("href"), | |
"Name": $(this).html(), |
NewerOlder