Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
6560c3a0
Commit
6560c3a0
authored
Feb 14, 1998
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the licensing code to not call get_transaction().commit() during the
initial request that creates a new bobobase.
parent
277a9722
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
lib/python/OFS/Application.py
lib/python/OFS/Application.py
+10
-7
No files found.
lib/python/OFS/Application.py
View file @
6560c3a0
...
...
@@ -11,8 +11,8 @@
__doc__
=
'''Application support
$Id: Application.py,v 1.
49 1998/02/12 23:03:29
brian Exp $'''
__version__
=
'$Revision: 1.
49
$'
[
11
:
-
2
]
$Id: Application.py,v 1.
50 1998/02/14 21:24:31
brian Exp $'''
__version__
=
'$Revision: 1.
50
$'
[
11
:
-
2
]
import
Globals
,
Folder
,
os
,
regex
,
sys
...
...
@@ -117,7 +117,7 @@ class Application(Folder.Folder):
alternate_self
=
alternate_self
.
__of__
(
self
.
aq_parent
)
return
alternate_self
try
:
self
.
_p_jar
.
cache
.
incrgc
()
# Perform incremental GC
try
:
self
.
_p_jar
.
cache
.
incrgc
()
# Perform incremental GC
except
:
pass
try
:
return
getattr
(
self
,
name
)
...
...
@@ -295,8 +295,7 @@ 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
if
bobobase
is
None
:
return
1
safe
=
bobobase
.
has_key
(
'Application'
)
try
:
f
=
open
(
path_join
(
package_dir
,
'%s.lic'
%
product_name
),
'rb'
)
except
:
try
:
...
...
@@ -329,12 +328,12 @@ def lic_check(product_name):
else
:
if
not
bobobase
.
has_key
(
'_t_'
):
bobobase
[
'_t_'
]
=
{}
get_transaction
().
commit
()
if
safe
:
get_transaction
().
commit
()
t
=
bobobase
[
'_t_'
]
if
not
t
.
has_key
(
product_name
):
t
[
product_name
]
=
time
.
time
()
bobobase
[
'_t_'
]
=
t
get_transaction
().
commit
()
if
safe
:
get_transaction
().
commit
()
if
(
t
[
product_name
]
+
(
86400.0
*
val
))
<
time
.
time
():
product
=
getattr
(
__import__
(
"Products.%s"
%
product_name
),
product_name
)
...
...
@@ -378,6 +377,10 @@ class Misc_:
##############################################################################
#
# $Log: Application.py,v $
# 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.
#
# Revision 1.49 1998/02/12 23:03:29 brian
# *** empty log message ***
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment