export source now detects the prefix rather than assigning it based on filename. fixed up some comments to match our coding standard. added ability to set default license on export which will be useful for the next source drop. SL-56607
parent
75b1cc886d
commit
7ba0214179
|
|
@ -1,10 +1,12 @@
|
|||
#!/usr/bin/python
|
||||
# @file test_llmanifest.py
|
||||
# @author Ryan Williams
|
||||
# @brief Test cases for LLManifest library.
|
||||
#
|
||||
# Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
|
||||
# $License$
|
||||
"""
|
||||
@file test_llmanifest.py
|
||||
@author Ryan Williams
|
||||
@brief Test cases for LLManifest library.
|
||||
|
||||
Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
|
||||
$License$
|
||||
"""
|
||||
|
||||
from indra.util import llmanifest
|
||||
import os.path
|
||||
|
|
|
|||
|
|
@ -1,10 +1,12 @@
|
|||
#!/usr/bin/python
|
||||
# @file setup-path.py
|
||||
# @brief Get the python library directory in the path, so we don't have
|
||||
# to screw with PYTHONPATH or symbolic links.
|
||||
#
|
||||
# Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
|
||||
# $License$
|
||||
"""\
|
||||
@file setup-path.py
|
||||
@brief Get the python library directory in the path, so we don't have
|
||||
to screw with PYTHONPATH or symbolic links.
|
||||
|
||||
Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
|
||||
$License$
|
||||
"""
|
||||
|
||||
import sys
|
||||
from os.path import realpath, dirname, join
|
||||
|
|
|
|||
|
|
@ -1,9 +1,11 @@
|
|||
#!/usr/bin/python
|
||||
# @file template_verifier.py
|
||||
# @brief Message template compatibility verifier.
|
||||
#
|
||||
# Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
|
||||
# $License$
|
||||
"""\
|
||||
@file template_verifier.py
|
||||
@brief Message template compatibility verifier.
|
||||
|
||||
Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
|
||||
$License$
|
||||
"""
|
||||
|
||||
"""template_verifier is a script which will compare the
|
||||
current repository message template with the "master" message template, accessible
|
||||
|
|
|
|||
Loading…
Reference in New Issue