add the copyright

bzr revid: stw-6e4c16268c7d6111a353b94a6a629d2ca53d0474
This commit is contained in:
stw 2008-06-16 07:24:04 +00:00
parent ec99679903
commit fa973350b9
36 changed files with 407 additions and 82 deletions

View File

@ -24,5 +24,5 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ############################################################################## ###############################################################################

View File

@ -1,6 +1,6 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) # Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be)
# #
# $Id$ # $Id$
# #

View File

@ -1,3 +1,31 @@
#!/bin/bash #!/bin/bash
##############################################################################
#
# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be)
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contact a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
./module_graph.py $@ | dot -Tpng -o > module_graph.png ./module_graph.py $@ | dot -Tpng -o > module_graph.png

View File

@ -1,4 +1,33 @@
#!/usr/bin/python #!/usr/bin/python
##############################################################################
#
# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be)
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contact a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
##############################################################################
import os import os
import sys import sys

View File

@ -1 +1,30 @@
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
from ir import * from ir import *

View File

@ -1,3 +1,31 @@
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
import pickle import pickle
import osv import osv
import pooler import pooler

View File

@ -1,4 +1,31 @@
#!/usr/bin/python #!/usr/bin/python
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
import time import time
import threading import threading

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import osv import osv
import fields import fields

View File

@ -1,7 +1,7 @@
# -*- encoding: iso-8859-1 -*- # -*- encoding: iso-8859-1 -*-
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #
@ -25,8 +25,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
# #
# Object relationnal mapping to postgresql module # Object relationnal mapping to postgresql module

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
# #
# OSV: Objects Services # OSV: Objects Services

View File

@ -1,6 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -22,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import sql_db import sql_db
import osv.osv import osv.osv

View File

@ -1,4 +1,31 @@
#!/usr/bin/env python #!/usr/bin/env python
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
name = 'tinyerp-server' name = 'tinyerp-server'
version = '4.3.0' version = '4.3.0'

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,9 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import web_services import web_services

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,9 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import pooler import pooler
import tools import tools

View File

@ -1,8 +1,9 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -24,8 +25,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import base64, os, string import base64, os, string

View File

@ -1,6 +1,6 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #
@ -24,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import psycopg import psycopg
import tools import tools

View File

@ -1 +1,30 @@
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
import SecureXMLRPCServer import SecureXMLRPCServer

View File

@ -1,3 +1,30 @@
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
import socket import socket
import cPickle import cPickle
import marshal import marshal

View File

@ -1,8 +1,7 @@
#!/usr/bin/python #!/usr/bin/python
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #
@ -10,7 +9,7 @@
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs # consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial # End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contact a Free Software # garantees and support are strongly adviced to contract a Free Software
# Service Company # Service Company
# #
# This program is Free Software; you can redistribute it and/or # This program is Free Software; you can redistribute it and/or
@ -26,8 +25,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
""" """
Tiny ERP - Server Tiny ERP - Server

View File

@ -1,3 +1,30 @@
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
from config import * from config import *
from misc import * from misc import *
from convert import * from convert import *

View File

@ -1,8 +1,9 @@
# -*- coding: iso8859-1 -*- # -*- coding: iso8859-1 -*-
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -24,8 +25,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
#------------------------------------------------------------- #-------------------------------------------------------------
# French # French

View File

@ -1,6 +1,6 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #
@ -24,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import ConfigParser,optparse,os,sys import ConfigParser,optparse,os,sys
import netsvc,logging import netsvc,logging

View File

@ -1,3 +1,30 @@
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
#---------------------------------------------------------- #----------------------------------------------------------
# Convert # Convert
#---------------------------------------------------------- #----------------------------------------------------------

View File

@ -1,4 +1,31 @@
#!/usr/bin/python #!/usr/bin/python
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
class graph(object): class graph(object):
def __init__(self, nodes, transitions): def __init__(self, nodes, transitions):

View File

@ -1,4 +1,31 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# garantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
import os, sys import os, sys
import re import re
import smtplib import smtplib

View File

@ -1,7 +1,7 @@
# -*- coding: utf8 -*- # -*- coding: utf8 -*-
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #
@ -25,8 +25,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
""" """
Miscelleanous tools used by tiny ERP. Miscelleanous tools used by tiny ERP.

View File

@ -1,6 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -22,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import os import os
from os.path import join from os.path import join

View File

@ -1,6 +1,6 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #
@ -24,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import tarfile import tarfile
import re import re

View File

@ -1,6 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
#
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -22,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import netsvc import netsvc
import copy import copy

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,9 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import wkf_service import wkf_service

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import wkf_logs import wkf_logs
import workitem import workitem

View File

@ -1,6 +1,6 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# #
# $Id$ # $Id$
# #
@ -24,8 +24,8 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import sys import sys
import netsvc import netsvc
import osv as base import osv as base

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
# #
# May be uncommented to logs workflows modifications # May be uncommented to logs workflows modifications

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
import wkf_logs import wkf_logs
import workitem import workitem

View File

@ -1,7 +1,8 @@
############################################################################## ##############################################################################
# #
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
# Fabien Pinckaers <fp@tiny.Be> #
# $Id$
# #
# WARNING: This program as such is intended to be used by professional # WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsability of assessing all potential # programmers who take the whole responsability of assessing all potential
@ -23,8 +24,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# ###############################################################################
##############################################################################
# #
# TODO: # TODO: