Commit 801abbf3 authored by 's avatar

*** empty log message ***

parent dc6a5a1a
......@@ -11,8 +11,8 @@
__doc__='''Application support
$Id: Application.py,v 1.50 1998/02/14 21:24:31 brian Exp $'''
__version__='$Revision: 1.50 $'[11:-2]
$Id: Application.py,v 1.51 1998/02/17 14:23:50 brian Exp $'''
__version__='$Revision: 1.51 $'[11:-2]
import Globals,Folder,os,regex,sys
......@@ -295,7 +295,6 @@ def lic_check(product_name):
product_dir=path_join(SOFTWARE_HOME,'lib/python/Products')
package_dir=path_join(product_dir, product_name)
bobobase =Globals.Bobobase
safe=bobobase.has_key('Application')
try: f=open(path_join(package_dir,'%s.lic' % product_name), 'rb')
except:
try:
......@@ -328,12 +327,10 @@ def lic_check(product_name):
else:
if not bobobase.has_key('_t_'):
bobobase['_t_']={}
if safe: get_transaction().commit()
t=bobobase['_t_']
if not t.has_key(product_name):
t[product_name]=time.time()
bobobase['_t_']=t
if safe: get_transaction().commit()
if (t[product_name] + (86400.0 * val)) < time.time():
product=getattr(__import__("Products.%s" % product_name),
product_name)
......@@ -377,6 +374,9 @@ class Misc_:
##############################################################################
#
# $Log: Application.py,v $
# Revision 1.51 1998/02/17 14:23:50 brian
# *** empty log message ***
#
# Revision 1.50 1998/02/14 21:24:31 brian
# Fixed the licensing code to not call get_transaction().commit() during the
# initial request that creates a new bobobase.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment