diff options
author | Aaron Brashears <aaronb@lindenlab.com> | 2007-10-02 23:42:54 +0000 |
---|---|---|
committer | Aaron Brashears <aaronb@lindenlab.com> | 2007-10-02 23:42:54 +0000 |
commit | 7ba0214179b234872f85156890dab99cfc3742a7 (patch) | |
tree | b9735d8b694a007438f01cdceef8d33e16ea12a4 | |
parent | 75b1cc886ded370f79b85152af2a462b37aed903 (diff) |
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
-rw-r--r-- | indra/test/test_llmanifest.py | 14 | ||||
-rwxr-xr-x | scripts/setup-path.py | 14 | ||||
-rwxr-xr-x | scripts/template_verifier.py | 12 |
3 files changed, 23 insertions, 17 deletions
diff --git a/indra/test/test_llmanifest.py b/indra/test/test_llmanifest.py index 1edcc9f2ad..5cb830e226 100644 --- a/indra/test/test_llmanifest.py +++ b/indra/test/test_llmanifest.py @@ -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 diff --git a/scripts/setup-path.py b/scripts/setup-path.py index 0fa34697f5..a623b2a8ee 100755 --- a/scripts/setup-path.py +++ b/scripts/setup-path.py @@ -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 diff --git a/scripts/template_verifier.py b/scripts/template_verifier.py index 769e864420..708c007796 100755 --- a/scripts/template_verifier.py +++ b/scripts/template_verifier.py @@ -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 |