From e6ebf69aae27a40a916d6ede83506a27187ca087 Mon Sep 17 00:00:00 2001 From: David Yin Date: Mon, 4 May 2020 09:30:03 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AF=B9C++=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E7=94=A8=E4=BE=8B=E7=9A=84=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改TestEngine;新增支持C++测试用例的插件、基础库和样例 --- COPYRIGHT | 13 ++ Changelog.txt | 4 + Example/Example.pro | 3 +- Example/TestCppDemo/TestCppDemo.pro | 28 ++++ Example/TestCppDemo/testcppdemo.cpp | 95 ++++++++++++ Example/TestCppDemo/testcppdemo.h | 37 +++++ Example/TestCppDemo/testcppdemo_global.h | 12 ++ Libs/Libs.pro | 3 +- Libs/TACppBase/TACppBase.pro | 22 +++ Libs/TACppBase/tacppbase.cpp | 189 +++++++++++++++++++++++ Libs/TACppBase/tacppbase.h | 56 +++++++ Libs/TALocalSocket/talocalsocket.cpp | 2 +- Plugins/DevLangCpp/DevLangCpp.pro | 25 +++ Plugins/DevLangCpp/devlangcpp.cpp | 163 +++++++++++++++++++ Plugins/DevLangCpp/devlangcpp.h | 42 +++++ Plugins/DevLangCpp/devlangcpp_global.h | 12 ++ Plugins/DevLangCpp/imutlilang.h | 35 +++++ Plugins/DevLangPython/langpy.cpp | 2 +- Plugins/Plugins.pro | 3 +- README.md | 6 +- Src/TestEngine/ate_te.rc | 10 +- Src/TestEngine/main.cpp | 2 +- Src/TestEngine/testrunner.cpp | 36 +++++ Src/TestEngine/unitmgr.cpp | 28 +--- Src/TestEngine/unitmgr.h | 3 +- 25 files changed, 796 insertions(+), 35 deletions(-) create mode 100644 COPYRIGHT create mode 100644 Example/TestCppDemo/TestCppDemo.pro create mode 100644 Example/TestCppDemo/testcppdemo.cpp create mode 100644 Example/TestCppDemo/testcppdemo.h create mode 100644 Example/TestCppDemo/testcppdemo_global.h create mode 100644 Libs/TACppBase/TACppBase.pro create mode 100644 Libs/TACppBase/tacppbase.cpp create mode 100644 Libs/TACppBase/tacppbase.h create mode 100644 Plugins/DevLangCpp/DevLangCpp.pro create mode 100644 Plugins/DevLangCpp/devlangcpp.cpp create mode 100644 Plugins/DevLangCpp/devlangcpp.h create mode 100644 Plugins/DevLangCpp/devlangcpp_global.h create mode 100644 Plugins/DevLangCpp/imutlilang.h diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 0000000..21bcdf4 --- /dev/null +++ b/COPYRIGHT @@ -0,0 +1,13 @@ +Most of the files are + + Copyright (c) 2019-2020 David Yin + +Many files also contain contributions from third +parties. In this case the original copyright of +the contributions can be traced through the +history of the source version control system. + +When that is not the case, the files contain a prominent +notice stating the original copyright and applicable +license, or come with their own dedicated COPYRIGHT +and/or LICENSE file. diff --git a/Changelog.txt b/Changelog.txt index 4b35122..de1fbca 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -2,6 +2,10 @@ 2、登录TreeATE的默认用户名/密码: admin/123 3、加载Example中的测试工程,点击Play(测试) +V1.3.0 +------------------- +1、增加对C++测试用例的支持 + V1.2.2 ------------------- 1、让TreeATE Dev支持多工程的编辑; diff --git a/Example/Example.pro b/Example/Example.pro index c2dce7a..ee5e98d 100644 --- a/Example/Example.pro +++ b/Example/Example.pro @@ -1,4 +1,5 @@ TEMPLATE = subdirs SUBDIRS += \ - LocalSqlite + LocalSqlite \ + TestCppDemo diff --git a/Example/TestCppDemo/TestCppDemo.pro b/Example/TestCppDemo/TestCppDemo.pro new file mode 100644 index 0000000..1ceb50c --- /dev/null +++ b/Example/TestCppDemo/TestCppDemo.pro @@ -0,0 +1,28 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2020-05-03T17:30:11 +# +#------------------------------------------------- + +QT -= gui + +TARGET = TestCppDemo +TEMPLATE = lib + +DEFINES += TESTCPPDEMO_LIBRARY + +CONFIG(release, debug|release): DESTDIR = ../../bin +CONFIG(debug, debug|release): DESTDIR = ../../bind + +INCLUDEPATH += ../../Libs/TACppBase +LIBS += -L$$DESTDIR/libs/ -lTACppBase + +SOURCES += testcppdemo.cpp + +HEADERS += testcppdemo.h\ + testcppdemo_global.h + +unix { + target.path = /usr/lib + INSTALLS += target +} diff --git a/Example/TestCppDemo/testcppdemo.cpp b/Example/TestCppDemo/testcppdemo.cpp new file mode 100644 index 0000000..89a7044 --- /dev/null +++ b/Example/TestCppDemo/testcppdemo.cpp @@ -0,0 +1,95 @@ +/// +/// @project TreeATE +/// @brief This is test item sample class for cpp language +/// @author David Yin 2020-05 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// +#include "testcppdemo.h" +#include + +void* CreateTestInst(const char *strValue) +{ + Q_UNUSED(strValue) + return new TestCppDemo(); +} + +TestCppDemo::TestCppDemo() +{ +} + +int TestCppDemo::setup_testdemo() +{ + OutputError("setup_testdemo中文"); + + QString name = GetProjectName(); + OutputError("GetProjectName:" + name); + QString ver = GetProjectVer(); + OutputError("GetProjectVer:" + ver); + return 0; +} + +int TestCppDemo::teardown_testdemo() +{ + OutputError("teardown_testdemo"); + return 0; +} + +int TestCppDemo::setup_suite1() +{ + OutputError("setup_suite1"); + QString ret = GetUserName(); + OutputError("GetUserName:" + ret); + return 0; +} + +int TestCppDemo::teardown_suite1() +{ + OutputError("teardown_suite1"); + QString ret = GetWorkLine(); + OutputError("GetWorkLine:" + ret); + ret = GetWorkStation(); + OutputError("GetWorkStation:" + ret); + return 0; +} + +int TestCppDemo::setup_suite2() +{ + OutputError("setup_suite2"); + QString ret = GetProjectBarcode(); + OutputError("GetProjectBarcode:" + ret); + return 0; +} + +int TestCppDemo::teardown_suite2() +{ + OutputError("teardown_suite2"); + QString ret = GetProjectDesc(); + OutputError("GetProjectDesc:" + ret); + QString rst = GetTotalRst(); + OutputError("GetTotalRst:" + rst); + return 0; +} + +int TestCppDemo::test_test1() +{ + OutputError("test_test1"); + + for(int i = 0; i < 100; i++) { + QThread::msleep(300); + if(IsStopped()) { + break; + } + } + OutputRst(getParaValue("Name2"), getParaValue("Gabc"), "0"); + return 0; +} + +int TestCppDemo::test_test2() +{ + return 0; +} diff --git a/Example/TestCppDemo/testcppdemo.h b/Example/TestCppDemo/testcppdemo.h new file mode 100644 index 0000000..8566fd4 --- /dev/null +++ b/Example/TestCppDemo/testcppdemo.h @@ -0,0 +1,37 @@ +/// +/// @project TreeATE +/// @brief This is test item sample class for cpp language +/// @author David Yin 2020-05 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// +#ifndef TESTCPPDEMO_H +#define TESTCPPDEMO_H + +#include "testcppdemo_global.h" +#include "tacppbase.h" + +extern "C" TESTCPPDEMOSHARED_EXPORT void* CreateTestInst(const char *strValue); + +class TESTCPPDEMOSHARED_EXPORT TestCppDemo : public TACppBase +{ + Q_OBJECT +public: + TestCppDemo(); + +public slots: + int setup_testdemo(); + int teardown_testdemo(); + int setup_suite1(); + int teardown_suite1(); + int setup_suite2(); + int teardown_suite2(); + int test_test1(); + int test_test2(); +}; + +#endif // TESTCPPDEMO_H diff --git a/Example/TestCppDemo/testcppdemo_global.h b/Example/TestCppDemo/testcppdemo_global.h new file mode 100644 index 0000000..c9b7931 --- /dev/null +++ b/Example/TestCppDemo/testcppdemo_global.h @@ -0,0 +1,12 @@ +#ifndef TESTCPPDEMO_GLOBAL_H +#define TESTCPPDEMO_GLOBAL_H + +#include + +#if defined(TESTCPPDEMO_LIBRARY) +# define TESTCPPDEMOSHARED_EXPORT Q_DECL_EXPORT +#else +# define TESTCPPDEMOSHARED_EXPORT Q_DECL_IMPORT +#endif + +#endif // TESTCPPDEMO_GLOBAL_H diff --git a/Libs/Libs.pro b/Libs/Libs.pro index f89f03d..a3feca1 100644 --- a/Libs/Libs.pro +++ b/Libs/Libs.pro @@ -1,4 +1,5 @@ TEMPLATE = subdirs SUBDIRS += \ - TALocalSocket + TALocalSocket \ + TACppBase diff --git a/Libs/TACppBase/TACppBase.pro b/Libs/TACppBase/TACppBase.pro new file mode 100644 index 0000000..fb5881f --- /dev/null +++ b/Libs/TACppBase/TACppBase.pro @@ -0,0 +1,22 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2020-05-03T15:38:01 +# +#------------------------------------------------- + +QT -= gui + +TARGET = TACppBase +TEMPLATE = lib +CONFIG += staticlib + +CONFIG(release, debug|release): DESTDIR = ../../bin/libs +CONFIG(debug, debug|release): DESTDIR = ../../bind/libs + +SOURCES += tacppbase.cpp + +HEADERS += tacppbase.h +unix { + target.path = /usr/lib + INSTALLS += target +} diff --git a/Libs/TACppBase/tacppbase.cpp b/Libs/TACppBase/tacppbase.cpp new file mode 100644 index 0000000..51f060e --- /dev/null +++ b/Libs/TACppBase/tacppbase.cpp @@ -0,0 +1,189 @@ +/// +/// @project TreeATE +/// @brief This is test item base class for cpp language +/// @author David Yin 2020-05 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// +#include "tacppbase.h" +#include + +TACppBase::TACppBase() +{ +} + +void TACppBase::addModel(const QString &strObjName, QObject* obj) +{ + m_models.insert(strObjName, obj); + if(strObjName == "__ate") { + m_ate = obj; + } + else if(strObjName == "__aterun") { + m_ateRun = obj; + } +} + +void TACppBase::addPublicPara(const QString& strName, const QString& strValue) +{ + m_publicPara.insert(strName, strValue); +} + +void TACppBase::setLocalPara(const QString& strName, const QString& strValue) +{ + m_localPara.insert(strName, strValue); +} + +QObject* TACppBase::getObj(const QString& strName) +{ + auto itor = m_models.find(strName); + if( itor != m_models.end()) { + return *itor; + } + + return NULL; +} + +QString TACppBase::getParaValue(const QString& strName) +{ + auto itor = m_localPara.find(strName); + if(itor != m_localPara.end()) { + return *itor; + } + else { + auto itPublic = m_publicPara.find(strName); + if(itPublic != m_publicPara.end()) { + return *itPublic; + } + } + return ""; +} + +bool TACppBase::OutputRst(const QString& strName, const QString& strValue, const QString& strStand) +{ + bool bRet = false; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "OutputRst", + Q_RETURN_ARG(bool, bRet), + Q_ARG(QString, strName), + Q_ARG(QString, strValue), + Q_ARG(QString, strStand)); + } + return bRet; +} + +bool TACppBase::OutputRstEx(const QString& strName, const QString& strValue, const QString& strStand, int nRst) +{ + bool bRet = false; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "OutputRstEx", + Q_RETURN_ARG(bool, bRet), + Q_ARG(QString, strName), + Q_ARG(QString, strValue), + Q_ARG(QString, strStand), + Q_ARG(int, nRst)); + } + return bRet; +} + +void TACppBase::OutputError(const QString& strOutput) +{ + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "OutputError", + Q_ARG(QString, strOutput)); + } +} + +QString TACppBase::GetProjectName() +{ + QString strValue; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetProjectName", + Q_RETURN_ARG(QString, strValue)); + } + return strValue; +} + +QString TACppBase::GetProjectVer() +{ + QString strValue; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetProjectVer", + Q_RETURN_ARG(QString, strValue)); + } + return strValue; +} + +QString TACppBase::GetProjectBarcode() +{ + QString strValue; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetProjectBarcode", + Q_RETURN_ARG(QString, strValue)); + } + return strValue; +} + +QString TACppBase::GetProjectDesc() +{ + QString strValue; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetProjectDesc", + Q_RETURN_ARG(QString, strValue)); + } + return strValue; +} + +QString TACppBase::GetWorkLine() +{ + QString strValue; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetWorkLine", + Q_RETURN_ARG(QString, strValue)); + } + return strValue; +} + +QString TACppBase::GetWorkStation() +{ + QString strValue; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetWorkStation", + Q_RETURN_ARG(QString, strValue)); + } + return strValue; +} + +QString TACppBase::GetUserName() +{ + QString strValue; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetUserName", + Q_RETURN_ARG(QString, strValue)); + } + return strValue; +} + +int TACppBase::GetTotalRst() +{ + int iRet = -1; + if(m_ate) { + QMetaObject::invokeMethod(m_ate, "GetTotalRst", + Q_RETURN_ARG(int, iRet)); + } + return iRet; +} + +// __aterun object +bool TACppBase::IsStopped() +{ + bool bRet = false; + if(m_ateRun) { + QMetaObject::invokeMethod(m_ateRun, "IsStopped", + Q_RETURN_ARG(bool, bRet)); + } + return bRet; +} diff --git a/Libs/TACppBase/tacppbase.h b/Libs/TACppBase/tacppbase.h new file mode 100644 index 0000000..b50fb1d --- /dev/null +++ b/Libs/TACppBase/tacppbase.h @@ -0,0 +1,56 @@ +/// +/// @project TreeATE +/// @brief This is test item base class for cpp language +/// @author David Yin 2020-05 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// +#ifndef TACPPBASE_H +#define TACPPBASE_H +#include +#include + +class TACppBase : public QObject +{ + Q_OBJECT +public: + TACppBase(); + +public slots: + void addModel(const QString &strObjName, QObject* obj); + void addPublicPara(const QString& strName, const QString& strValue); + void setLocalPara(const QString& strName, const QString& strValue); + +protected: + QObject* getObj(const QString& strName); + QString getParaValue(const QString& strName); + + // __ate object + bool OutputRst(const QString& strName, const QString& strValue, const QString& strStand); + bool OutputRstEx(const QString& strName, const QString& strValue, const QString& strStand, int nRst); + void OutputError(const QString& strOutput); + QString GetProjectName(); + QString GetProjectVer(); + QString GetProjectBarcode(); + QString GetProjectDesc(); + QString GetWorkLine(); + QString GetWorkStation(); + QString GetUserName(); + int GetTotalRst(); + + // __aterun object + bool IsStopped(); + +private: + QMap m_models; + QMap m_publicPara; + QMap m_localPara; + QObject* m_ate; + QObject* m_ateRun; +}; + +#endif // TACPPBASE_H diff --git a/Libs/TALocalSocket/talocalsocket.cpp b/Libs/TALocalSocket/talocalsocket.cpp index 545e9fe..9d263c4 100644 --- a/Libs/TALocalSocket/talocalsocket.cpp +++ b/Libs/TALocalSocket/talocalsocket.cpp @@ -151,7 +151,7 @@ bool TALocalSocket::returnFromServer(int mSecs, QString &data) return false; } - QByteArray buf = m_lsClient->readAll(); + QByteArray buf = m_lsClient->readAll(); // is Async Reply, success to receive at server if(((uchar)buf.at(0) == TA_LOCAL_START_REP) && buf.at(1) == TA_LOCAL_FLAG_SYNC) { int rLen = buf.at(2); diff --git a/Plugins/DevLangCpp/DevLangCpp.pro b/Plugins/DevLangCpp/DevLangCpp.pro new file mode 100644 index 0000000..f764c80 --- /dev/null +++ b/Plugins/DevLangCpp/DevLangCpp.pro @@ -0,0 +1,25 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2020-04-03T14:36:33 +# +#------------------------------------------------- + +QT -= gui + +TARGET = DevLangCpp +TEMPLATE = lib + +DEFINES += DEVLANGCPP_LIBRARY + +CONFIG(release, debug|release): DESTDIR = ../../bin +CONFIG(debug, debug|release): DESTDIR = ../../bind + +SOURCES += devlangcpp.cpp + +HEADERS += devlangcpp.h\ + devlangcpp_global.h + +unix { + target.path = /usr/lib + INSTALLS += target +} diff --git a/Plugins/DevLangCpp/devlangcpp.cpp b/Plugins/DevLangCpp/devlangcpp.cpp new file mode 100644 index 0000000..7e9ddf9 --- /dev/null +++ b/Plugins/DevLangCpp/devlangcpp.cpp @@ -0,0 +1,163 @@ +/// +/// @project TreeATE +/// @brief Support cpp language test item +/// @author David Yin 2020-05 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// + +#include "devlangcpp.h" + +#include +#include +#include +#include +#include + +void* CreateLanguageInst(const char *strLangName) +{ + if(QString(strLangName) == "cpp") + return new DevLangCpp(); + + return NULL; +} + + +DevLangCpp::DevLangCpp() +{ + m_pObj = NULL; +} + +DevLangCpp::~DevLangCpp() +{ + if(m_pObj) { + delete m_pObj; + m_pObj = NULL; + } + if(m_libTest.isLoaded()) + m_libTest.unload(); +} + +typedef void* (*CreateInst)(const char*); + +bool DevLangCpp::loadScript(const QStringList& scriptFiles) +{ + if(scriptFiles.count() != 1) { + m_lastErr = tr("[DevLangCpp] No dll files for test."); + return false; + } + + m_libTest.setFileName(scriptFiles.at(0)); + if(!m_libTest.load()) { + m_lastErr = tr("Warning:") + m_libTest.errorString(); + return false; + } + + CreateInst myFunction = (CreateInst) m_libTest.resolve("CreateTestInst"); + if (NULL == myFunction) + { + m_lastErr = tr("Warning:") + m_libTest.errorString(); + m_libTest.unload(); + return false; + } + + m_pObj = (QObject*)myFunction(""); + if(NULL == m_pObj) + { + m_libTest.unload(); + m_lastErr = tr("Warning:") + tr("Failed to create the test instance."); + return false; + } + + return true; +} + +void DevLangCpp::addModel(const QString &strObjName, QObject* obj) +{ + if(m_pObj == NULL) { + m_lastErr = tr("[DevLangCpp] Not found the test object."); + return; + } + + const QString funcName = "addModel"; + const QMetaObject* metaObj = m_pObj->metaObject(); + if(metaObj) { + if(!QMetaObject::invokeMethod(m_pObj, funcName.toUtf8().data(), + Q_ARG(QString, strObjName), + Q_ARG(QObject*, obj))) + { + m_lastErr = tr("[DevLangCpp] Failed invoke method: ") + funcName; + } + } + else { + m_lastErr = tr("[DevLangCpp] The test object was invaild."); + return; + } + return; +} + +bool DevLangCpp::invokeFunc(const QString funcName, const TA_MapParaValue& para) +{ + if(m_pObj == NULL) { + m_lastErr = tr("[DevLangCpp] Not found the test object."); + return false; + } + + const QMetaObject* metaObj = m_pObj->metaObject(); + if(metaObj) { + for(TA_MapParaValue::const_iterator itor = para.cbegin(); itor != para.cend(); + ++itor) { + if(!QMetaObject::invokeMethod(m_pObj, funcName.toUtf8().data(), + Q_ARG(QString, itor.key()), + Q_ARG(QString, itor.value()))) + { + m_lastErr = tr("[DevLangCpp] Failed invoke method: ") + funcName; + return false; + } + } + } + else { + m_lastErr = tr("[DevLangCpp] The test object was invaild."); + return false; + } + return true; +} + +bool DevLangCpp::initPublicPara(const TA_MapParaValue& publicPara) +{ + return invokeFunc("addPublicPara", publicPara); +} + +int DevLangCpp::executeScript(const QString& funcName, const TA_MapParaValue& localValue) +{ + int iRet = -1; + if(m_pObj == NULL) { + m_lastErr = tr("[DevLangCpp] Not found the test object."); + return iRet; + } + + if(!invokeFunc("setLocalPara", localValue)) { + return iRet; + } + + const QMetaObject* metaObj = m_pObj->metaObject(); + if(metaObj) { + if(!QMetaObject::invokeMethod(m_pObj, funcName.toUtf8().data(), + Q_RETURN_ARG(int, iRet))) + { + m_lastErr = tr("[DevLangCpp] Failed invoke method: ") + funcName; + iRet = -2; + } + } + else { + iRet = -3; + m_lastErr = tr("[DevLangCpp] The test object was invaild."); + return iRet; + } + + return iRet; +} diff --git a/Plugins/DevLangCpp/devlangcpp.h b/Plugins/DevLangCpp/devlangcpp.h new file mode 100644 index 0000000..0f4040a --- /dev/null +++ b/Plugins/DevLangCpp/devlangcpp.h @@ -0,0 +1,42 @@ +/// +/// @project TreeATE +/// @brief Support cpp language test item +/// @author David Yin 2020-05 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// +#ifndef DEVLANGCPP_H +#define DEVLANGCPP_H + +#include "devlangcpp_global.h" +#include "imutlilang.h" + +extern "C" DEVLANGCPPSHARED_EXPORT void* CreateLanguageInst(const char *strLangName); + +#include + +class DevLangCpp : public IMutliLang +{ + Q_OBJECT +public: + DevLangCpp(); + virtual ~DevLangCpp(); + + virtual bool loadScript(const QStringList& scriptFiles); + virtual void addModel(const QString &strObjName, QObject* obj); + virtual bool initPublicPara(const TA_MapParaValue& publicPara); + virtual int executeScript(const QString& funcName, const TA_MapParaValue& localValue); + +protected: + bool invokeFunc(const QString funcName, const TA_MapParaValue& para); + +private: + QObject* m_pObj; + QLibrary m_libTest; +}; + +#endif // DEVLANGCPP_H diff --git a/Plugins/DevLangCpp/devlangcpp_global.h b/Plugins/DevLangCpp/devlangcpp_global.h new file mode 100644 index 0000000..3853552 --- /dev/null +++ b/Plugins/DevLangCpp/devlangcpp_global.h @@ -0,0 +1,12 @@ +#ifndef DEVLANGCPP_GLOBAL_H +#define DEVLANGCPP_GLOBAL_H + +#include + +#if defined(DEVLANGCPP_LIBRARY) +# define DEVLANGCPPSHARED_EXPORT Q_DECL_EXPORT +#else +# define DEVLANGCPPSHARED_EXPORT Q_DECL_IMPORT +#endif + +#endif // DEVLANGCPP_GLOBAL_H diff --git a/Plugins/DevLangCpp/imutlilang.h b/Plugins/DevLangCpp/imutlilang.h new file mode 100644 index 0000000..111f267 --- /dev/null +++ b/Plugins/DevLangCpp/imutlilang.h @@ -0,0 +1,35 @@ +/// +/// @project TreeATE +/// @brief mutli-language interface for testrunner +/// @author David Yin 2019-01 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// + +#ifndef IMUTLILANG_H +#define IMUTLILANG_H + +#include +#include + +typedef QMap TA_MapParaValue; + +class IMutliLang : public QObject +{ +public: + virtual bool loadScript(const QStringList& scriptFiles) = 0; + virtual void addModel(const QString &strObjName, QObject* obj) = 0; + virtual bool initPublicPara(const TA_MapParaValue& publicPara) = 0; + virtual int executeScript(const QString& funcName, const TA_MapParaValue& localValue) = 0; + + QString getLastErr() { return m_lastErr; } + +protected: + QString m_lastErr; +}; + +#endif // IMUTLILANG_H diff --git a/Plugins/DevLangPython/langpy.cpp b/Plugins/DevLangPython/langpy.cpp index ca9e1de..3b35a87 100644 --- a/Plugins/DevLangPython/langpy.cpp +++ b/Plugins/DevLangPython/langpy.cpp @@ -36,7 +36,7 @@ void LangPy::strOut(const QString &out) } bool LangPy::loadScript(const QStringList &scriptFiles) -{ +{ for(QStringList::const_reverse_iterator itor = scriptFiles.rbegin(); itor != scriptFiles.rend(); ++itor) { diff --git a/Plugins/Plugins.pro b/Plugins/Plugins.pro index bdf7268..4280814 100644 --- a/Plugins/Plugins.pro +++ b/Plugins/Plugins.pro @@ -3,4 +3,5 @@ TEMPLATE = subdirs SUBDIRS += \ GUI_TA_MsgBox \ TA_MsgBox \ - DevLangPython + DevLangPython \ + DevLangCpp diff --git a/README.md b/README.md index ed02a10..e037821 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ TreeATE是Tree Automatic Test Equipment的缩写,专注服务于工厂成品或半成品测试自动化的一种开源软件工具平台。 ## 目标 -对接工业物联网,打造简单易用的开源自动化测试软件工具。 +对接工业物联网,打造简单易用的工厂自动化测试开源软件工具。 ## 系统架构 ![TreeATE系统架构图](https://raw.githubusercontent.com/WilliamYinwei/TreeATE/master/Doc/images/arch.png) @@ -62,6 +62,6 @@ TreeATE基于QT开发,运行于Windows 32位系统(支持64位)。在编 在构建的目录下启动TreeATE.exe即可。例如作者的开发构建目录为: D:\Projects\build-TreeATE-Desktop_Qt_5_7_0_MSVC2013_32bit-Release\bin\ -技术交流群 +技术交流 ------------------------------------------------------------------------------- -QQ:499722676 +QQ:499722676/226406709 diff --git a/Src/TestEngine/ate_te.rc b/Src/TestEngine/ate_te.rc index c09aafd..3dd0f8b 100644 --- a/Src/TestEngine/ate_te.rc +++ b/Src/TestEngine/ate_te.rc @@ -5,8 +5,8 @@ #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,1,3,1 - PRODUCTVERSION 1,1,3,1 + FILEVERSION 1,3,0,1 + PRODUCTVERSION 1,3,0,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS VS_FF_DEBUG @@ -23,9 +23,9 @@ VS_VERSION_INFO VERSIONINFO BEGIN VALUE "CompanyName", "David Yin\0" VALUE "FileDescription", "Test Engine for TreeATE\0" - VALUE "FileVersion", "1,1,2,1" - VALUE "ProductVersion", "1,1,2,1" - VALUE "LegalCopyright", "Copyright 2019(C) David Yin\0" + VALUE "FileVersion", "1,3,0,1" + VALUE "ProductVersion", "1,3,0,1" + VALUE "LegalCopyright", "Copyright 2020(C) David Yin\0" VALUE "LegalTrademarks", "Tree ATE\0" VALUE "OriginalFilename", "TestEngine.exe\0" VALUE "ProductName", "TreeATE\0" diff --git a/Src/TestEngine/main.cpp b/Src/TestEngine/main.cpp index 6f09edb..75e5a7f 100644 --- a/Src/TestEngine/main.cpp +++ b/Src/TestEngine/main.cpp @@ -68,7 +68,7 @@ int main(int argc, char *argv[]) qInstallMessageHandler(customMessageHandler); QCoreApplication app(argc, argv); QCoreApplication::setApplicationName("TestEngine"); - QCoreApplication::setApplicationVersion("1.1.0"); + QCoreApplication::setApplicationVersion("1.3.0"); MainTask mainTask(&app); QTimer::singleShot(0, &mainTask, SLOT(run())); diff --git a/Src/TestEngine/testrunner.cpp b/Src/TestEngine/testrunner.cpp index 75003c3..1f072b8 100644 --- a/Src/TestEngine/testrunner.cpp +++ b/Src/TestEngine/testrunner.cpp @@ -100,6 +100,42 @@ bool TestRunner::initScript(const QString& prjPath) return false; } } + else if(UnitMgr::Cpp == lang) { + if(m_pCurretLang) + delete m_pCurretLang; + + QDir dir; + dir.setPath(qApp->applicationDirPath()); + QStringList cppDlls = dir.entryList(QStringList() << "DevLangCpp*.dll", QDir::Files); + if(cppDlls.count() <= 0) { + m_lastErr = TA_TR("Can't found the DevLangCpp*.dll"); + TA_OUT_DEBUG_INFO << m_lastErr; + return false; + } + const QString strDllFile(cppDlls.at(0)); + QLibrary myLib(strDllFile); + if(!myLib.load()) { + m_lastErr = TA_TR("Failed to load the ") + strDllFile; + TA_OUT_DEBUG_INFO << m_lastErr; + return false; + } + + CreateInst myFunction = (CreateInst) myLib.resolve("CreateLanguageInst"); + if (NULL == myFunction) + { + m_lastErr = TA_TR("Failed to resolve the ") + strDllFile; + TA_OUT_DEBUG_INFO << m_lastErr; + return false; + } + + m_pCurretLang = (IMutliLang*)myFunction("cpp"); + if(m_pCurretLang == NULL) + { + m_lastErr = TA_TR("The current language is NULL."); + TA_OUT_DEBUG_INFO << m_lastErr; + return false; + } + } // load script if(!m_pCurretLang->loadScript(m_pUnitMgr->getScript())) { diff --git a/Src/TestEngine/unitmgr.cpp b/Src/TestEngine/unitmgr.cpp index 370b78c..3aa5d2a 100644 --- a/Src/TestEngine/unitmgr.cpp +++ b/Src/TestEngine/unitmgr.cpp @@ -69,6 +69,7 @@ bool UnitMgr::LoadUnitConfig(const QString& strFileName) // This file name same to the configure file name QString strJs = m_strPrjPath + "/" + cfgFileInfo.completeBaseName() + ".js"; QString strPy = m_strPrjPath + "/" + cfgFileInfo.completeBaseName() + ".py"; + QString strCppDll = m_strPrjPath + "/" + cfgFileInfo.completeBaseName() + ".dll"; QFileInfo scpFileInfo(strJs); if(scpFileInfo.isFile()){ @@ -77,6 +78,13 @@ bool UnitMgr::LoadUnitConfig(const QString& strFileName) return loadScriptCom(getModelList(), m_strPrjPath, "js"); } + scpFileInfo.setFile(strCppDll); + if(scpFileInfo.isFile()) { + m_scriptFiles.append(strCppDll); + m_currLang = UnitMgr::Cpp; + return true; + } + // try again for python scpFileInfo.setFile(strPy); if(!scpFileInfo.isFile()) { @@ -170,26 +178,6 @@ bool UnitMgr::loadScriptCom(const QVariantList& vlModels, const QString& strPath { m_scriptFiles.append(strScriptFile); } - - - /* - QFile scriptFile(strScriptFile); - if (!scriptFile.open(QIODevice::ReadOnly)) - { - m_lastErr = strScriptFile + scriptFile.errorString(); - return false; - } - - QByteArray bData(scriptFile.readAll()); - // process unicode - if(!bData.isEmpty() && bData.at(0) == 0x0E) - { - bData = bData.remove(0, 1); - bData = QByteArray::fromBase64(bData); - } - QString contents(bData); - scriptFile.close(); - script += contents;*/ } return true; diff --git a/Src/TestEngine/unitmgr.h b/Src/TestEngine/unitmgr.h index 4b298fa..9f6015b 100644 --- a/Src/TestEngine/unitmgr.h +++ b/Src/TestEngine/unitmgr.h @@ -30,7 +30,8 @@ class UnitMgr typedef enum eTaLang{ JavaScript, - Python + Python, + Cpp }TaLang; bool LoadUnitConfig(const QString& strFileName); From 5408f857c8de9662812e48ce3468e0c8f02690e9 Mon Sep 17 00:00:00 2001 From: David Yin Date: Tue, 5 May 2020 17:38:12 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E8=A1=A5=E5=85=85TestCppDemo=E6=A0=B7?= =?UTF-8?q?=E4=BE=8B=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Example/TestCppDemo/Readme.md | 7 ++ Example/TestCppDemo/TestCppDemo.dll | Bin 0 -> 23040 bytes Example/TestCppDemo/TestCppDemo.tp | 92 +++++++++++++++++++++ Example/TestCppDemo/TestCppDemo.tpx | 79 ++++++++++++++++++ Example/TestCppDemo/libs/GUI_TA_MsgBox.dll | Bin 0 -> 42496 bytes Example/TestCppDemo/libs/TA_MsgBox.dll | Bin 0 -> 25600 bytes 6 files changed, 178 insertions(+) create mode 100644 Example/TestCppDemo/Readme.md create mode 100644 Example/TestCppDemo/TestCppDemo.dll create mode 100644 Example/TestCppDemo/TestCppDemo.tp create mode 100644 Example/TestCppDemo/TestCppDemo.tpx create mode 100644 Example/TestCppDemo/libs/GUI_TA_MsgBox.dll create mode 100644 Example/TestCppDemo/libs/TA_MsgBox.dll diff --git a/Example/TestCppDemo/Readme.md b/Example/TestCppDemo/Readme.md new file mode 100644 index 0000000..eeae7b5 --- /dev/null +++ b/Example/TestCppDemo/Readme.md @@ -0,0 +1,7 @@ +# TestCppDemo +C++测试用例样例 + +# 注意事项 +1、与Python和JavaScript的测试工程一样,测试用例组件需要与后缀tp和tpx同文件名; +2、编译TestCppDemo时依赖了TACppBase.lib +3、开发完成生成TestCppDemo.dll后,发布时需要依赖DevLangCpp.dll,删除该测试工程的源代码; \ No newline at end of file diff --git a/Example/TestCppDemo/TestCppDemo.dll b/Example/TestCppDemo/TestCppDemo.dll new file mode 100644 index 0000000000000000000000000000000000000000..a04214e158626e0c886fd0d29e9cb3797a994676 GIT binary patch literal 23040 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 YuP|?i|2knFHk&N7EL8o^=h71RKkbeYbN~PV literal 0 HcmV?d00001 diff --git a/Example/TestCppDemo/TestCppDemo.tp b/Example/TestCppDemo/TestCppDemo.tp new file mode 100644 index 0000000..f867261 --- /dev/null +++ b/Example/TestCppDemo/TestCppDemo.tp @@ -0,0 +1,92 @@ +{ + "Desc": "demo", + "Name": "testdemo", + "Parameter": { + "Name1": "gfedcba", + "Name2": "abcdefg" + }, + "Public": { + "Models": [ + { + "Com": "TA_MsgBox.dll", + "Obj": "ta" + }, + { + "Com": "Sleep.js", + "Obj": "bb" + } + ], + "Parameter": [ + { + "Desc": "asd", + "Name": "Gabc", + "Value": "123" + }, + { + "Desc": "111", + "Name": "Gdd", + "Value": "111" + }, + { + "Desc": "all of this", + "Name": "Gall", + "Value": "22.3" + } + ] + }, + "TestSuite": [ + { + "Desc": "suite2 test", + "Name": "suite2", + "Parameter": { + "Name1": "2", + "Name2": "2" + }, + "TestCase": [ + { + "Desc": "描述2", + "Name": "test2", + "Parameter": { + "Name1": "1", + "Name2": "2" + } + }, + { + "Desc": "描述1", + "Name": "test1", + "Parameter": { + "Name1": "1", + "Name2": "2" + } + } + ] + }, + { + "Desc": "suite1描述", + "Name": "suite1", + "Parameter": { + "Name1": "2", + "Name2": "2" + }, + "TestCase": [ + { + "Desc": "描述1", + "Name": "test1", + "Parameter": { + "Name1": "1", + "Name2": "2" + } + }, + { + "Desc": "描述2", + "Name": "test2", + "Parameter": { + "Name1": "1", + "Name2": "2" + } + } + ] + } + ], + "Ver": "1.1.0" +} diff --git a/Example/TestCppDemo/TestCppDemo.tpx b/Example/TestCppDemo/TestCppDemo.tpx new file mode 100644 index 0000000..31ec317 --- /dev/null +++ b/Example/TestCppDemo/TestCppDemo.tpx @@ -0,0 +1,79 @@ +{ + "BarCodeReg": "abc\\d{1}", + "Desc": "It's demo test", + "GUIPlugins": [ + { + "Com": "GUI_TA_MsgBox.dll", + "Name": "msg" + } + ], + "Instance": [ + { + "File": "TestCppDemo.tp", + "Name": "Demo11", + "Parameter": [ + { + "Desc": "asd", + "Name": "Gabc", + "Value": "123" + }, + { + "Desc": "111", + "Name": "Gdd", + "Value": "111" + }, + { + "Desc": "all of this", + "Name": "Gall", + "Value": "22.3" + } + ] + }, + { + "File": "TestCppDemo.tp", + "Name": "Demo2", + "Parameter": [ + { + "Desc": "asd", + "Name": "Gabc", + "Value": "123" + }, + { + "Desc": "111", + "Name": "Gdd", + "Value": "111" + }, + { + "Desc": "all of this", + "Name": "Gall", + "Value": "22.3" + } + ] + }, + { + "File": "TestCppDemo.tp", + "Name": "Demo3", + "Parameter": [ + { + "Desc": "asd", + "Name": "Gabc", + "Value": "123" + }, + { + "Desc": "111", + "Name": "Gdd", + "Value": "111" + }, + { + "Desc": "all of this", + "Name": "Gall", + "Value": "22.3" + } + ] + } + ], + "LoopCount": 1, + "Name": "TestDemos", + "failedToStop": false, + "stoppedForLoop": false +} diff --git a/Example/TestCppDemo/libs/GUI_TA_MsgBox.dll b/Example/TestCppDemo/libs/GUI_TA_MsgBox.dll new file mode 100644 index 0000000000000000000000000000000000000000..541afaf0372f751e951fa63bd2276e558729d8a5 GIT binary patch literal 42496 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 QHZ*2X8}Wa3{D1cRKXYIh0{{R3 literal 0 HcmV?d00001 diff --git a/Example/TestCppDemo/libs/TA_MsgBox.dll b/Example/TestCppDemo/libs/TA_MsgBox.dll new file mode 100644 index 0000000000000000000000000000000000000000..1c1bece0e8b812845764bb26a67bada431b0c1f3 GIT binary patch literal 25600 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 Date: Tue, 5 May 2020 17:41:22 +0800 Subject: [PATCH 3/6] Update Readme.md --- Example/TestCppDemo/Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Example/TestCppDemo/Readme.md b/Example/TestCppDemo/Readme.md index eeae7b5..a9020fc 100644 --- a/Example/TestCppDemo/Readme.md +++ b/Example/TestCppDemo/Readme.md @@ -2,6 +2,6 @@ C++测试用例样例 # 注意事项 -1、与Python和JavaScript的测试工程一样,测试用例组件需要与后缀tp和tpx同文件名; -2、编译TestCppDemo时依赖了TACppBase.lib -3、开发完成生成TestCppDemo.dll后,发布时需要依赖DevLangCpp.dll,删除该测试工程的源代码; \ No newline at end of file +* 与Python和JavaScript的测试工程一样,测试用例组件需要与后缀tp和tpx同文件名; +* 编译TestCppDemo时依赖了TACppBase.lib +* 开发完成生成TestCppDemo.dll后,发布时需要依赖DevLangCpp.dll,删除该测试工程的源代码; From ba0a06d089e9a5e98812bcf65346fef87460bacc Mon Sep 17 00:00:00 2001 From: David Yin Date: Mon, 25 May 2020 22:27:47 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E5=8F=98=E6=9B=B4License?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Changelog.txt | 5 + Example/LocalSqlite/localsqlite.cpp | 6 +- Example/LocalSqlite/localsqlite.h | 6 +- Example/TestCppDemo/testcppdemo.cpp | 6 +- Example/TestCppDemo/testcppdemo.h | 6 +- Example/TestDemo/libs/GUI_TA_MsgBox.dll | Bin 0 -> 42496 bytes Example/TestDemo/libs/TA_MsgBox.dll | Bin 0 -> 25600 bytes Example/TestDemoPy/libs/GUI_TA_MsgBox.dll | Bin 0 -> 42496 bytes Example/TestDemoPy/libs/TA_MsgBox.dll | Bin 0 -> 25600 bytes LICENSE | 998 +++++++--------------- LICENSE-TreeATEDev | 674 +++++++++++++++ Libs/TACppBase/tacppbase.cpp | 6 +- Libs/TACppBase/tacppbase.h | 6 +- Libs/TALocalSocket/talocalsocket.cpp | 6 +- Libs/TALocalSocket/talocalsocket.h | 6 +- Plugins/DevLangCpp/devlangcpp.cpp | 6 +- Plugins/DevLangCpp/devlangcpp.h | 6 +- Plugins/DevLangPython/devlangchoose.cpp | 10 + Plugins/DevLangPython/langpy.cpp | 6 +- Plugins/DevLangPython/langpy.h | 6 +- Plugins/GUI_TA_MsgBox/gui_ta_msgbox.cpp | 6 +- Plugins/GUI_TA_MsgBox/gui_ta_msgbox.h | 6 +- Plugins/GUI_TA_MsgBox/msgboxdlg.cpp | 6 +- Plugins/GUI_TA_MsgBox/msgboxdlg.h | 6 +- Plugins/TA_MsgBox/ta_msgbox.cpp | 6 +- Plugins/TA_MsgBox/ta_msgbox.h | 6 +- Src/TestEngine/ioutput.h | 6 +- Src/TestEngine/langqs.cpp | 6 +- Src/TestEngine/langqs.h | 6 +- Src/TestEngine/main.cpp | 6 +- Src/TestEngine/maintask.cpp | 6 +- Src/TestEngine/maintask.h | 6 +- Src/TestEngine/outputlocal.cpp | 6 +- Src/TestEngine/outputlocal.h | 6 +- Src/TestEngine/outputmgr.cpp | 6 +- Src/TestEngine/outputmgr.h | 6 +- Src/TestEngine/outputstd.cpp | 6 +- Src/TestEngine/outputstd.h | 6 +- Src/TestEngine/resultmgr.cpp | 6 +- Src/TestEngine/resultmgr.h | 6 +- Src/TestEngine/stdinc.h | 6 +- Src/TestEngine/testctrl.cpp | 6 +- Src/TestEngine/testctrl.h | 6 +- Src/TestEngine/testrststruct.h | 6 +- Src/TestEngine/testrunner.cpp | 6 +- Src/TestEngine/testrunner.h | 6 +- Src/TestEngine/unitmgr.cpp | 6 +- Src/TestEngine/unitmgr.h | 6 +- Src/TreeATE/aboutdialog.cpp | 6 +- Src/TreeATE/aboutdialog.h | 6 +- Src/TreeATE/ate.rc | 10 +- Src/TreeATE/login.cpp | 6 +- Src/TreeATE/login.h | 6 +- Src/TreeATE/main.cpp | 6 +- Src/TreeATE/mainwindow.cpp | 6 +- Src/TreeATE/mainwindow.h | 6 +- Src/TreeATE/manybarcodedlg.cpp | 6 +- Src/TreeATE/manybarcodedlg.h | 6 +- Src/TreeATE/pluginsmgr.cpp | 6 +- Src/TreeATE/pluginsmgr.h | 6 +- Src/TreeATE/prjoptdlg.cpp | 6 +- Src/TreeATE/prjoptdlg.h | 6 +- Src/TreeATE/projectmgr.cpp | 6 +- Src/TreeATE/projectmgr.h | 6 +- Src/TreeATE/statusdelegate.cpp | 6 +- Src/TreeATE/statusdelegate.h | 6 +- Src/TreeATE/syscfgdlg.cpp | 6 +- Src/TreeATE/syscfgdlg.h | 6 +- Src/TreeATE/tadefine.h | 6 +- Src/TreeATE/talineedit.cpp | 6 +- Src/TreeATE/talineedit.h | 6 +- Src/TreeATE/talogin.h | 6 +- Src/TreeATE/tasizedockwidget.cpp | 6 +- Src/TreeATE/tasizedockwidget.h | 6 +- Src/TreeATE/testmanger.cpp | 6 +- Src/TreeATE/testmanger.h | 6 +- Src/TreeATE/testproccess.cpp | 6 +- Src/TreeATE/testproccess.h | 6 +- Src/TreeATEDev/LICENSE | 674 +++++++++++++++ Src/TreeATEDev/aboutdlg.cpp | 2 +- Src/TreeATEDev/aboutdlg.h | 2 +- Src/TreeATEDev/ate_dev.rc | 12 +- Src/TreeATEDev/dlgfind.cpp | 12 + Src/TreeATEDev/dlgfind.h | 12 + Src/TreeATEDev/main.cpp | 2 +- Src/TreeATEDev/mainwindow.cpp | 2 +- Src/TreeATEDev/mainwindow.h | 2 +- Src/TreeATEDev/newprjdlg.h | 2 +- Src/TreeATEDev/tacsvparser.cpp | 2 +- Src/TreeATEDev/tacsvparser.h | 2 +- Src/TreeATEDev/taprjcfgwidget.cpp | 2 +- Src/TreeATEDev/taprjcfgwidget.h | 2 +- Src/TreeATEDev/tapropertymgr.cpp | 2 +- Src/TreeATEDev/tapropertymgr.h | 2 +- Src/TreeATEDev/tascriptedit.cpp | 2 +- Src/TreeATEDev/tascriptedit.h | 2 +- Src/TreeATEDev/testunititem.cpp | 2 +- Src/TreeATEDev/testunititem.h | 2 +- Src/TreeATEDev/testunitsmodel.cpp | 2 +- Src/TreeATEDev/testunitsmodel.h | 2 +- Src/TreeResults/main.cpp | 6 +- Src/TreeResults/mainwindow.cpp | 6 +- Src/TreeResults/mainwindow.h | 6 +- Src/TreeResults/tasqlquerymodel.cpp | 6 +- Src/TreeResults/tasqlquerymodel.h | 6 +- 105 files changed, 1962 insertions(+), 925 deletions(-) create mode 100644 Example/TestDemo/libs/GUI_TA_MsgBox.dll create mode 100644 Example/TestDemo/libs/TA_MsgBox.dll create mode 100644 Example/TestDemoPy/libs/GUI_TA_MsgBox.dll create mode 100644 Example/TestDemoPy/libs/TA_MsgBox.dll create mode 100644 LICENSE-TreeATEDev create mode 100644 Src/TreeATEDev/LICENSE diff --git a/Changelog.txt b/Changelog.txt index de1fbca..30dfd03 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -2,6 +2,11 @@ 2、登录TreeATE的默认用户名/密码: admin/123 3、加载Example中的测试工程,点击Play(测试) +V2.0.0 +------------------- +1、变更TreeATE的License为LGPL v3 +2、保留TreeATEDev的License为GPL v3 + V1.3.0 ------------------- 1、增加对C++测试用例的支持 diff --git a/Example/LocalSqlite/localsqlite.cpp b/Example/LocalSqlite/localsqlite.cpp index ee87ead..575b785 100644 --- a/Example/LocalSqlite/localsqlite.cpp +++ b/Example/LocalSqlite/localsqlite.cpp @@ -2,11 +2,11 @@ /// @brief demo of the output to database model /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "localsqlite.h" diff --git a/Example/LocalSqlite/localsqlite.h b/Example/LocalSqlite/localsqlite.h index 9840028..afec2f5 100644 --- a/Example/LocalSqlite/localsqlite.h +++ b/Example/LocalSqlite/localsqlite.h @@ -2,11 +2,11 @@ /// @brief demo of the output to database model /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef LOCALSQLITE_H diff --git a/Example/TestCppDemo/testcppdemo.cpp b/Example/TestCppDemo/testcppdemo.cpp index 89a7044..2791ff9 100644 --- a/Example/TestCppDemo/testcppdemo.cpp +++ b/Example/TestCppDemo/testcppdemo.cpp @@ -3,11 +3,11 @@ /// @brief This is test item sample class for cpp language /// @author David Yin 2020-05 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "testcppdemo.h" #include diff --git a/Example/TestCppDemo/testcppdemo.h b/Example/TestCppDemo/testcppdemo.h index 8566fd4..feaecb0 100644 --- a/Example/TestCppDemo/testcppdemo.h +++ b/Example/TestCppDemo/testcppdemo.h @@ -3,11 +3,11 @@ /// @brief This is test item sample class for cpp language /// @author David Yin 2020-05 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TESTCPPDEMO_H #define TESTCPPDEMO_H diff --git a/Example/TestDemo/libs/GUI_TA_MsgBox.dll b/Example/TestDemo/libs/GUI_TA_MsgBox.dll new file mode 100644 index 0000000000000000000000000000000000000000..541afaf0372f751e951fa63bd2276e558729d8a5 GIT binary patch literal 42496 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 QHZ*2X8}Wa3{D1cRKXYIh0{{R3 literal 0 HcmV?d00001 diff --git a/Example/TestDemo/libs/TA_MsgBox.dll b/Example/TestDemo/libs/TA_MsgBox.dll new file mode 100644 index 0000000000000000000000000000000000000000..1c1bece0e8b812845764bb26a67bada431b0c1f3 GIT binary patch literal 25600 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 QHZ*2X8}Wa3{D1cRKXYIh0{{R3 literal 0 HcmV?d00001 diff --git a/Example/TestDemoPy/libs/TA_MsgBox.dll b/Example/TestDemoPy/libs/TA_MsgBox.dll new file mode 100644 index 0000000000000000000000000000000000000000..1c1bece0e8b812845764bb26a67bada431b0c1f3 GIT binary patch literal 25600 zcmeHve_T}OmG=V-I_fABg@i`hOj3+AF*?i)^Me_f0YTA#83F<(>VPmh5MapsFqmp; zGT2J4bZzVQlWuL-#I#8hH*2ch+N@1bh?vwGl6BQ>+}3SvcC55Z8f!?GI`8*9_uiR1 zh}!Pw{o~#D)9dHl=hr#sInQ~{InR$fSoP3Omc|%U0b()64k4w-#osr1r7$+@j@M?f zgVTO`=b@C!pWa#PYYpnU0{#twrVd?mQ)j0?q+93J1;U-W)=pj712wu1e~WkF%$d`3 zCDz|55PJTj_Sa`*aJ;A-zya)6e{tmsMwe%~LB+Yu~n>xxnczocUX%BU4mo ze#ukYne#j?mQp)UA8c**Q6CdWmv2hOvdHF^jd$`AD?@ z7cXmhK9#X4yqHMY9#oJr@uV^rGz21|i>G4I?Plz2Q2d1&#=5C_D`V$@ea*9zv39wW zYZ?<3$Ct>WNp&v9h9~1EH7^W#yF;E4jnKx zV6_4XSr=oa$u)m1{iPc4=^RWO{nBR`TQzV3k55nK#}Z{1l{du8&mML$?Osh6({l6^ zb!|-eFqTzO!nA!W)I(GDmojZEE5wT$F(VvXE8-IWwwSNL!n7^VlA!MDx@U92$~frm zE6dfi?4?TK!`@J?x^IPMs4O>=EI5|cE^^8nXJj5N%@{ z$NQcbZ`0OAZ@rzdD+4K^Y4y=x&t)t!s1k-S=1h6ap0y9d0FJ7dXhM>z5+;-*Yl=)L zCt*UIXI=CwU{5?rkJs`%aiuI*l~N~sI5cG(6B3$M7j2XY)}l|c@31v)-;ojh%A^sx zq!C^e3f!Q_TszvPLz|86*lA&mXML!wglIh2QT1qFl^QeLm{N@vw=a7!)4HRktFf5R zMOjp?Msq0D9sRDo+qK3(6V}pJDLmJIzn)u!Z+0&-Ah=x5>^>1Luz;QDk|#OgMQDts66=%kaIaHh#FY2h65ijOa5fMkC&7XvM8!5h_}ZQDq80l~kIA<*02sV&8FKxo?YQ z)zWNM@|mc(RTzzP(PAbmL?a^+xmmdqrn)9F=s2onY+|>R6T!*!xq+q>>)k z*BPaKWhR-IPBO1g+NR4s3$b&+)as69k;TE99#EsrL=l7xDpxY7U;Q_x$t_J2R}>6t zAu9Q-lWuC$+|hsdqhd1KQP~JPQUeR)kRnmul*HhHkT*46qJmzf4C;=mB|XvlVpI5^RvBNiW%cweB^_j< zFGdrZDe2%BG`dVl2ec?~ExDufQ4bxGl{-?2AP@Hc2@N_|8njLoAC?wax^%G!A{v%P zc*jlI=+D#npm^sr0fZ_K3S2R)?D()EgE>bv4C6Vi9FHkEo|MV)Bpy1-Aa(@}OpGvz zxY7kdD6TY8$BMYplB$d==P)dvNm2pDm2S-Xd{iQ?Y$u6DzgCeJ5L&)926Sa;p{-iF zJNgIIM|fx<9_}fGj?mIc=*rO2h)D7lD&wK09Z{r$u#};t8)0NGD&wK02fZMK+(C%S z&_cb>a7Q0QJ$lF7kjYghVhM$o%0w)o&{CO*B@|jJ6S0IsOJyRKP-v-4#1aZEm5EqF z9#ff!B@|jJ6S0Kcr&5X~kcvV}C4vSy0_>s%*53dHWy0`(8hs6?0^m^KpyLDCNTqBe zWcX!q3t5Zk;X0a`6d_g$BQP0OsBi&Ie35SVAOAn+Bm5)O_ zX6)}RAKCU+Xldk=*kju2=<+#y0j0|RupyRZ#fA~R^i|D3l?(m4kCl(7Mrp6tTdqFz z#oMu!6t;|zAmJ!bgf*IN?}sWPPh@HX`NFJAi%`uA(_`l7N3%KeHa4^*GXorkmhfFl z8#^|IMMu!Ha1z8bYO3AQ-*7oJaneH~sZc%w+}`IYj{i%u-+Tr+SVVsJu()1EW;gr1Z;%k*dc6tD~w3TM|UIK**53qWR&7%|0rD0r&?rNqD{gefqR#bShH3hQ>9=; zZ7iCFz~RA0ddjq^y@R|yx_6ow273C#9>j(+cl6Hbv|6peMyU~T1IT4! z1ZkVfR}G7g7kZvgj??v+(_gUbb_bluVd&zUV^N717QajG@D3 z-XVz--3KxLtWJTQjgBEdKPMq-S>a{T-5A`YodO?Q0e(;{%ccFTHPsDgtE67jNgLRo zqVJx5E=$I?vrr0`==SSK1iT72#~7o5juIWQO>?&~`iG_kv8=76qvNrx%}DEf7oa!3 zg>zy3c1TTDq(BylV_7b-SiwcSj>dtG!&%bcQ+kv4L70G@*wRd@i|Yvpwp=sm)jkGq zC%GpRGF223Yl91eR%55vBFdaBkSIHe$|on9LgHYN0o_E4NZ5283`$cM%hDsxP|)iK zg}PTCnla>3;hsmk79N1CTFRcFcq!BZMcZ4UBA-IpUZD!l6qp^9;dJb2)y&W@JC2aj zSDQPAb298t^I*)a0kKx7P}!HO!m~h=8dmR5foeICm?nfn4xt9}tLud)wDwPu;wWb{ zgeB|fV|VhHxkD-L@w)aA1JXlD<>fS%r^yR1pkcTqdeX2R`8ki1O zfgBVbCT4O};LPNpfI>pV>N*Ny@Cw)@U1g9Sp;A$ouUTP#8Rf&tiy4-ut%WQ++xS-X zgTl$^OW1ru-c{7c+x2~$Ql3sJfscN2?>ipe{&b=p-Bv^4njsb4)-gVJk+GEU-ECP? z7q~qTS4>|Qx~4_*{sg(ZE?R|!Ug}I7!$kQ_f3f_(!RGNs^1q#EN0*26kV|o8aj0cN z`T68>HPoB=Bf5`*j_K}^7LCj}WOb8ML;K?G7VM=>8+{RhR2U^|z7o0{XEF zuBLCf2b;2$(Jw<@TvkMWmmXhKBQZ@_OBiY)Z3tKL*vTqdVehycs~0}mb|pO31F5j{ zIMh`J?kD@cNuz)ImO^d#_MZ1bv!AX`DRifVXGM;rM*35G-V0wa_Fqb$+aEcef{oc! zVaP+oIBLbR4njO$I&mVh8I~HphpZ?vrh4qox>)Wu?L2O?ndE4(jjCwFhnUe>*z%=r zPgy$vfp`lR^q5{)qKWAdgfe3r3Dq5Sd?ew{K&=L$iO#i%L7KI(dHg_p4Yf!aJ@7k; z@LRn}ov1i}+<^Rk^v~t27D>1~=VaNhBTrr~)0P6Z0$u?83?R;|_{RGFedYSDPC9=p zFR(PY4;2@G&3}Hyqsw-r5a;x6!~?m zw>bIvv$SdMXk6V zlrD(H3rbqYz?W~KpgUMFd@WZvj=F5x^Te{wlhak^=D_GqAWMrW8nL71XDYf$9wrRj zFDNAR-6Jzm;bFA4s`W zM`|Zp^nZb~fvu9~rTSjPjN!b;FG+#2f;(hdENcvCQfE2XdJ!WO=@MS%Yj__OxirDz z^byL_1Cwco?0rl*A9*#&7d#I6f(IP4VTs@*6rB^h%x=4iJ}S5}&u}H?#Ll3XN{mT| zu}29RSt5mWWhp`z%=X9_tl~@^DuK=4BG&@)7p_oL@>|x_*lEs*%D9KFB6X8DF|w#C z6#_plEMOt4VIftpkWhwzt8s2HR1Dt@{7T@922+(Vm`cfD-oNODHv%gYSY#o{x=B*p zT=U`5jPRX&CDp1DJ9+EGo%~iz7T?KN;_6M_BP7>UI3oxIqCIC0!0p;yrqGqw#v znOu`{-SmuY`>BphQmW%7nXNF%v9?qgq|XNt(yod=j-4vpyt1B~D8DMg6&R^8ZmYEz zQ3dWs$yT`(?rPfKkD$1XY}}pkw*&DVJ6%PU;XEPP8XpiWkrvRN_d~ON&!B63C5UBR z2D#z=OQ{FQrO1xU5*A9gU1jhNi3v?{ndAsGIG9q|1ao!B2SqyY(^(Nm@_C2QX>8s> z{@%~u`}q4s{(hdn_we^_{(gqPck%a5{@%gg+xgqX-+KODz~6cNoy*_-7*1^7KK|D5 z8ZCck@^?0W=kT`3EZ&ja{c8O3Eu#Cw6^CP~26k~ZTXhlH>?ZL~M6j(Eq}1HD_c z-I{wpLJ?cPm6?}*XY6fO*3NQ%zE5V&>Aw( zmg(!K?l$r6##yXN+g&JBsqd}Q^kOc+__w%h0%On$xa&GEl%Idn+8pdSkJD56Ij~?t z`MH6p5%hvLDtGS}dp;4Hw}X#+JAe1!9VvP-gm3ksG-LljU7M;6*3^jVRjY(ioX~X0 z?j?l1&*O#tVR~D3!`gw!-MFD!OTwNfVNYN?5b>U4u>wLB3UY}1X$Xnyt*|B*h7C0k z&r9Amb#yL7Sw$)nu{mC>fY?*^d|&x_Tqs^}gGwl%?qjFj(T}KuL5(ohyX9Ogd?9w4 z%M=TrM~*1vVdAEN2}98*fsQ#khu#h#yJ`RznBW(!#7umAcGcYekIz=D8Hml>4EFY! z^szXc`q99}VcQpS+p?USbFPh*LPmISbZJN61FA&GkmJ*s; zAN>c+^D1nBFJ(rb!Vtyky6D$=H7>>Ct0~S4zO4`x2Ly1xo}OVoT+h)Jbd&Rj8EQ5| zd@REwl)nf0RWt{XuDUw1MZ>W7&)D`k7}2xskCMA*d^rn+ihq6v`q@iW##qa<^x3(0 z%edfHT~gVPhGrT2g||mDUY!9m9KAFZY9u3!6zv90YG`KL9nk^O-^Hg;ElpPzO|Ag5 zhc#sM{2h%$oIJ7NY;Rc8yG9)W`=19^+w7q~;G{y+XiE$ICT5Irta|#EMU}m2vD3*$ zBQonPAEUKl%vPm=8HBaAa&>4Qu9o2hVXbf$SGxx&)C)vL5=-iO1t<&p1F7c3AC1yvF*FaiHb4CgpWD#_J(qEM^gODYm5QnUv&ER^G; zH2Nx7f-E#M7S`5t&!OsAI-kIP7p@iQ5?RAA?IeCUJ=%pC08W-&;P8qoc-FMBFoaPJz}w7D|uAQp46~40$7kpEf0o7&GRYM8O6}Mxj9!{6RE=QcKrs;)_35dk{{e(Rs{x^EG``Y_(^f6Up-f0E&X#ZALUcy)Cwc_)9vRH0sN{nL zv3V{0y&7){URl}5w59CbK{oPD;F2Q0K{Q2Fg`tMkZ7I?k57)| zBHwmf^z%qCqv>s_tA6^qybvH9nbh-NoK|mS51lZXQv&(M~1oZ5TQ$B zzZ#e(RH)NV+CK?QFOBr)+5aUFHTGjN*CX;e z7}mTt15sqXtvWkn7aBnj8Oe-zFJsvsWBfE-SO3O}4_yEJI!rTW9}3Ofb}TgQ z4}kY2?Y5I)jc{b~k$M1(c1}@K^BZfQ=H&NCFVflIV zF!%@bu&)w53?rvd7P2=O_RXeZL|7gL_w~eG$LAlp8}RF^`oE>deo2it8GgU8{4fN3 z^D+dyK(_KOa>>I#AzGD2SbhPR-y}>cVZI<^_Env_c=i(6HAOSou7?$N*;f^xaE(0A zm>(B60VyN)a!Ob}j9v<;mk=qeMD8Ua6m|v)H!B}?M^kWtjLiXMul$~8x%)`Qd=agO zHj^>`0XeX_uA9C=m@g9MPee?yPj3IiaP~wupD#sJ#2=nt?Q&<^-2;QN4|0kj^*OaM2a8}K|}7%&dVZDh;^ zcnI(m;M;)1fVJr39smQJ#8G4qU^Ac*Pzf*tasWTartEdV9>8Wm1HcN%0bE^$aRW{Q z4gtOlXaST0=$Vf6=MB&$U^`$fKnFNi&)7?V9>98l3vfH&_jUM+0cZz22v`7!KU${M z0(1a9K(5yM6X-ax<~KnKrDGd!qYc|tPGZeJ_~HjH{5g*| zopq;*MfNkPEEU;%QaMek7?8?Sr1B3ZlwX-p{*F|}A)i0HCzQV;mFcREo-YDO9@(It zlFG8Y5ve>ADLq>NgfGkYd6a8QJfgB#X;Wv*1MAut^W!DeK_hM$7ZOyk(55ag!&Egh zg+AFt1+z|(cv%Zu8g5gYQq(Kr=#ghRNbA4+8)JOYxH=90#M@5b>y3GaG1avRN= zk{`_p@sOWE_|gjaNF(4O04)24zEnZ}1Skc(0yqZf2fPS)4WI{@0S-U_&<dCm z#cHGqmVAz=o`B|n=+p`vxo!;lpg!FAqcEVbHl)Ox=z0|R)FwZ~i)eOAxKuuL16<;l z4IDKt8Dt*HROWXWe`rDVZlqMV3Mt944k^j|2vQnz2r0$pEl4Roe-SCg=)XZqG4>gx zv@Sf0lw$BpNGTp4kjj)&JEeqADbZ6({3s>Yq}Qhf*Xwr8%bZtthu6r7==p!<8Zq;VB=YCz>BiJa!_bx^Ez* zKAuBLeZGv8WH>05DW!Hw37=9VJf%KK{xaNGP~F5w?sKj*7fhO)X-J9ZY^h8s(NZe& zeC8%R^YFtgqR}CxeoB!N&-;fLP~WORdF&Uy^zJcjcgHe!t7x3;YRE)hnN>cOWR@DQK_@J+w~;3L4i2XQV2JPCLO@SlJg zHTX?5pa<|hz6R%7r06%qzRaw6-rdX zn|LCcK;SG%aOQlIj!8E_Mn47@rw~tAH$#=g#<@#6f+-1>m6R(5N$~FQhMI5=^frf- z=qpRh-K8t5s}hY|(T|2agx}oM-kyXF1=gDuQ*9DSg}cOE(m*G>Rl0xLu7tv5$p zjH{NAx6He-wb{F@GZ@01+Dfu>@iE|@3BSBzYDL}IM#lEJ;1{(L5|SsH7|TQ5ZbeRx9gTfQ-6HAGH1TZt?%0yTy4F{i-Yd@V**<^CRAn7yy-C0XKS_!eKI&6cN9X z;%xTg)ZZMEPyDWAJjB5UWpJx==2kChZ`u%qw>{A1?X1Fo9zr#k)6+C+XO;P+>1_Lj6n=%nbHEZWV&?mPuG0`E1{@z~2&ra2L} zTFUUB4NX9+g1pP!C1sxFG<$ExXS$Rok)|dz`4DNc--~0@3~i#<1nw|R$u3RJ$p?p+(}O!GLlMOIT8Orn$u}g z)|Qk2U8ec_Yq;g+RucmFy*epnqFp=H+0+H&gT57=f_*-*&nFh_fX2BVckz5#i(~QC zFW-f6a&Nu$Q_hfoSto2K&Ze{+%epvepS{J|8SYpIjmMiMdcK2V0kMaYU~_A$$LDSD zQerN~-e4snOf9aNTS@|frcHe6m%8N6OZfQZ1)p?`P{&9AHrJ-yB84~hRbDI2rZgp6 zRZge5I#I_JEbcd0XtFkC{DYG6)y`&LYkN!iMg#{}eD?vT;JcBzA_=I20WfI5*ypvOBV!*X$AF^D*uFam}wt6kca`-I+EQSJ0~|`tD5iP&Ne0C@k*4E za_;oB!B*W6LkS@$-IMl&c{xe#$uUEUk&14C_kHq(j;^KvR$XQ6;Qi34Z2!+7^jRYJxavNq;vJnh0VuspL+pGI(@mIfGvBBiA&Edx6j2<_xwzj_FNs zmN#zTrsi&iiC%DG_Rx(HsO&Hj>n+pmKCdhqt4{ztPKj(c-B~G&Q7n7I$~o`U3vP z%DbDrUE-(ZP>P4Dm*79<^j6@@Yr8jK#OaK6Mf8@0vR)QjYGr-MACz}c zeY>}*(-R+#2Mdcg2$3LAXHz?4cczqgHshG$_VYS+m6dsw$t8`$Lb2G;un9Zj9h-o^ef^~R>BF7<{MhXVnykf`wqe3qgX zHh>K;D%okOg`whS6tp^)1fg*+<=C8*veqD-f<)xX)^&lVz$Us$39|dkA6!vhX*7t| zIq3=iua*DHHIQA(w3UDz02<0p{68b-%kcXl{N1}eH2SgltDkzKjLNwFjUA%jYU5dm zwMqP%;IqushsmI@gunM#_f?^AOAerzu zoZTJmI{eluh+jAr&Cg$`pRe;$gv2kOisrAZU2>mwz79L#&Xy)xI*R6R@&@NSi)T)E zGzEj+j&<#ubYRdKESisBZWRWbecq0y;CJ(Oq?u=# zP3AhY*BmlO%=^v%V*ZtRs%5t2e#=9aZI->3A6U*=rdzYDW!9ke8`h)N|FmAQrrR=Y zpS2lmB{sLsW9zhSv3<{W+7`8~D}1uhWnXV^w{N$9+5Vcn-~PH|&{0#=T=avYH;RrG zohZ7e*i>vUE-C&(@!{fQ#iPYz#aD}GIOjO;a^^d&&SK|U=U1HHaK7l=?>yuja-Men z*2#4Ey$*Dgr*}X*!}`UpUD3tUvDTje8upr;Z?&i!+FD0qt+)tM$C~ zH`Y(A8rxi((N=1!ws~z4+t+RXX#0WfoGra@Mxm*&rLeQGyYT74Zx_B+c(m|%;lCFC zd*Mjoe-}=*&$TbI7u)Z**VrGmKWX1-|9kr@_8;4i+265WuzzGvb!0jW4y&WsQRZ0g za69T8s~zhcK1Zh` zV$mzm_}fMA6rC!%RP@IpRy?OTuh>|;thl+jqxi+*SBhUR9xQ&l_*`+G)8Mo?9nJ@# z`!6{AoL_Ywah`GhyK~fe#mR#Xbg$Lt=;!Gd=?nBl`VM_q|G54O`X2q$`osEj`v1~j z*8fpID}PS@9r+9M&G}WZ)ZYB(^Iy$>Gk=kx$*|vW*l@(~bHnG13ysCbGUIaC=|jd2 z<9CcN8(%g45Y{?ieB1c0@vQL|#t)3YHC{H38&xKaDcf|X>2A{kliB1lxlN6xF4HE{ zcGH(lyG&P1|81ICaBqRLpuAwTV21fN^WEk}W{3F^bI`oqybCk=g83+B^OxqR`M2gj znwe#aMFWe@w#>8STb5e9nAvTX?^q67{?+mymX9sz)>+outUBxGtOlzcc3x$zvwASo zk6OQE{afp|tuI*jTYqGI&w3GdKg)KTO>bLjTWMQs+hFUmZL&RO6KuO|-?Dud^M1(o zF1%oNVNv1ILU-Y+!gZMYX9@=k&ldi!Fx~zcdx5>&{;)l4f5QGH%=mZhKd`@UAF>bI z|IPkO`z8Bj`*g=$j=M4MW=E-G3H^Z41>Ga~pUOX*e=h%g{z(34{#gEaJ~OBcYJ-VHh@?GMqJx6^s`!v&yVCYs^}6ra9Z3W7e5-&3WbpW<4T<6`FOK%ghz#O0(Ns zYi=;FHaD7E%m>Yf%>Cv;v&y2jtXl=CYO98f>d=?a+I-ZKq9Dm|5s5tSD?R+*-K3aA)D}!o%>ekwT3<)1G6` zwJ)%n><)XGz0zK5Uu|zeR0`QQ+k5Og?7Qr{?a$ly*$>(e+XtclQ9FLA}9E^IVP!_+5je5nk8j=!Va2ckG16?Qy*5IOsU#IOn+F7;#*7j5}0Cnxf32oT9v< ziXwMWLs4Uquc)hNGyL%RqJ2dNiw+kJBJ!OoIu9>Y7iS^@I*KcbeZ^hH-Nik{&lm46 z9)=$>r_Pz@)FTSIoE1*Dv%%Tu^f|kn-Oe7w!c)$(&M_zcOqpfEEVA`FeJ - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - 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 3 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, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. + + GNU LESSER GENERAL PUBLIC LICENSE + + Version 3, 29 June 2007 + + + + Copyright ? 2007 Free Software Foundation, Inc. + + Everyone is permitted to copy and distribute verbatim copies of this + + license document, but changing it is not allowed. + + + +This version of the GNU Lesser General Public License incorporates + +the terms and conditions of version 3 of the GNU General Public + +License, supplemented by the additional permissions listed below. + + + +0. Additional Definitions. + + + + As used herein, “this License” refers to version 3 of the GNU Lesser + +General Public License, and the “GNU GPL” refers to version 3 of the + +GNU General Public License. + + + + “The Library” refers to a covered work governed by this License, + +other than an Application or a Combined Work as defined below. + + + + An “Application” is any work that makes use of an interface provided + +by the Library, but which is not otherwise based on the Library. + +Defining a subclass of a class defined by the Library is deemed a mode + +of using an interface provided by the Library. + + + + A “Combined Work” is a work produced by combining or linking an + +Application with the Library. The particular version of the Library + +with which the Combined Work was made is also called the “Linked + +Version”. + + + + The “Minimal Corresponding Source” for a Combined Work means the + +Corresponding Source for the Combined Work, excluding any source code + +for portions of the Combined Work that, considered in isolation, are + +based on the Application, and not on the Linked Version. + + + + The “Corresponding Application Code” for a Combined Work means the + +object code and/or source code for the Application, including any data + +and utility programs needed for reproducing the Combined Work from the + +Application, but excluding the System Libraries of the Combined Work. + + + +1. Exception to Section 3 of the GNU GPL. + + + + You may convey a covered work under sections 3 and 4 of this License + +without being bound by section 3 of the GNU GPL. + + + +2. Conveying Modified Versions. + + + + If you modify a copy of the Library, and, in your modifications, a + +facility refers to a function or data to be supplied by an Application + +that uses the facility (other than as an argument passed when the + +facility is invoked), then you may convey a copy of the modified + +version: + + + + a) under this License, provided that you make a good faith effort + + to ensure that, in the event an Application does not supply the + + function or data, the facility still operates, and performs + + whatever part of its purpose remains meaningful, or + + + + b) under the GNU GPL, with none of the additional permissions of + + this License applicable to that copy. + + + +3. Object Code Incorporating Material from Library Header Files. + + + + The object code form of an Application may incorporate material from + +a header file that is part of the Library. You may convey such object + +code under terms of your choice, provided that, if the incorporated + +material is not limited to numerical parameters, data structure + +layouts and accessors, or small macros, inline functions and templates + +(ten or fewer lines in length), you do both of the following: + + + + a) Give prominent notice with each copy of the object code that + + the Library is used in it and that the Library and its use are + + covered by this License. + + + + b) Accompany the object code with a copy of the GNU GPL and this + + license document. + + + +4. Combined Works. + + + + You may convey a Combined Work under terms of your choice that, taken + +together, effectively do not restrict modification of the portions of + +the Library contained in the Combined Work and reverse engineering for + +debugging such modifications, if you also do each of the following: + + + + a) Give prominent notice with each copy of the Combined Work that + + the Library is used in it and that the Library and its use are + + covered by this License. + + + + b) Accompany the Combined Work with a copy of the GNU GPL and this + + license document. + + + + c) For a Combined Work that displays copyright notices during + + execution, include the copyright notice for the Library among + + these notices, as well as a reference directing the user to the + + copies of the GNU GPL and this license document. + + + + d) Do one of the following: + + + + 0) Convey the Minimal Corresponding Source under the terms of + + this License, and the Corresponding Application Code in a form + + suitable for, and under terms that permit, the user to + + recombine or relink the Application with a modified version of + + the Linked Version to produce a modified Combined Work, in the + + manner specified by section 6 of the GNU GPL for conveying + + Corresponding Source. + + + + 1) Use a suitable shared library mechanism for linking with + + the Library. A suitable mechanism is one that (a) uses at run + + time a copy of the Library already present on the user's + + computer system, and (b) will operate properly with a modified + + version of the Library that is interface-compatible with the + + Linked Version. + + + + e) Provide Installation Information, but only if you would + + otherwise be required to provide such information under section 6 + + of the GNU GPL, and only to the extent that such information is + + necessary to install and execute a modified version of the + + Combined Work produced by recombining or relinking the Application + + with a modified version of the Linked Version. (If you use option + + 4d0, the Installation Information must accompany the Minimal + + Corresponding Source and Corresponding Application Code. If you + + use option 4d1, you must provide the Installation Information in + + the manner specified by section 6 of the GNU GPL for conveying + + Corresponding Source.) + + + +5. Combined Libraries. + + + + You may place library facilities that are a work based on the Library + +side by side in a single library together with other library + +facilities that are not Applications and are not covered by this + +License, and convey such a combined library under terms of your + +choice, if you do both of the following: + + + + a) Accompany the combined library with a copy of the same work + + based on the Library, uncombined with any other library + + facilities, conveyed under the terms of this License. + + + + b) Give prominent notice with the combined library that part of + + it is a work based on the Library, and explaining where to find + + the accompanying uncombined form of the same work. + + + +6. Revised Versions of the GNU Lesser General Public License. + + + + The Free Software Foundation may publish revised and/or new versions + +of the GNU Lesser General Public License from time to time. Such new + +versions will be similar in spirit to the present version, but may + +differ in detail to address new problems or concerns. + + + +Each version is given a distinguishing version number. If the Library + +as you received it specifies that a certain numbered version of the + +GNU Lesser General Public License “or any later version” applies to + +it, you have the option of following the terms and conditions either + +of that published version or of any later version published by the + +Free Software Foundation. If the Library as you received it does not + +specify a version number of the GNU Lesser General Public License, + +you may choose any version of the GNU Lesser General Public License + +ever published by the Free Software Foundation. + + + +If the Library as you received it specifies that a proxy can decide + +whether future versions of the GNU Lesser General Public License shall + +apply, that proxy's public statement of acceptance of any version is + +permanent authorization for you to choose that version for the Library. \ No newline at end of file diff --git a/LICENSE-TreeATEDev b/LICENSE-TreeATEDev new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/LICENSE-TreeATEDev @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/Libs/TACppBase/tacppbase.cpp b/Libs/TACppBase/tacppbase.cpp index 51f060e..d2ce1fa 100644 --- a/Libs/TACppBase/tacppbase.cpp +++ b/Libs/TACppBase/tacppbase.cpp @@ -3,11 +3,11 @@ /// @brief This is test item base class for cpp language /// @author David Yin 2020-05 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "tacppbase.h" #include diff --git a/Libs/TACppBase/tacppbase.h b/Libs/TACppBase/tacppbase.h index b50fb1d..02397c0 100644 --- a/Libs/TACppBase/tacppbase.h +++ b/Libs/TACppBase/tacppbase.h @@ -3,11 +3,11 @@ /// @brief This is test item base class for cpp language /// @author David Yin 2020-05 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TACPPBASE_H #define TACPPBASE_H diff --git a/Libs/TALocalSocket/talocalsocket.cpp b/Libs/TALocalSocket/talocalsocket.cpp index 9d263c4..da3f499 100644 --- a/Libs/TALocalSocket/talocalsocket.cpp +++ b/Libs/TALocalSocket/talocalsocket.cpp @@ -2,11 +2,11 @@ /// @brief Protocol of TreeATE between GUI and models /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "talocalsocket.h" diff --git a/Libs/TALocalSocket/talocalsocket.h b/Libs/TALocalSocket/talocalsocket.h index d5ddbfd..f2bb25c 100644 --- a/Libs/TALocalSocket/talocalsocket.h +++ b/Libs/TALocalSocket/talocalsocket.h @@ -2,11 +2,11 @@ /// @brief Protocol of TreeATE between GUI and models /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TALOCALSOCKET_H diff --git a/Plugins/DevLangCpp/devlangcpp.cpp b/Plugins/DevLangCpp/devlangcpp.cpp index 7e9ddf9..6d1302e 100644 --- a/Plugins/DevLangCpp/devlangcpp.cpp +++ b/Plugins/DevLangCpp/devlangcpp.cpp @@ -3,11 +3,11 @@ /// @brief Support cpp language test item /// @author David Yin 2020-05 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "devlangcpp.h" diff --git a/Plugins/DevLangCpp/devlangcpp.h b/Plugins/DevLangCpp/devlangcpp.h index 0f4040a..97fdab2 100644 --- a/Plugins/DevLangCpp/devlangcpp.h +++ b/Plugins/DevLangCpp/devlangcpp.h @@ -3,11 +3,11 @@ /// @brief Support cpp language test item /// @author David Yin 2020-05 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef DEVLANGCPP_H #define DEVLANGCPP_H diff --git a/Plugins/DevLangPython/devlangchoose.cpp b/Plugins/DevLangPython/devlangchoose.cpp index 67ea81b..d8e7c38 100644 --- a/Plugins/DevLangPython/devlangchoose.cpp +++ b/Plugins/DevLangPython/devlangchoose.cpp @@ -1,3 +1,13 @@ +/// @project TreeATE +/// @brief parser test for Python +/// @author David Yin 2019-01 willage.yin@163.com +/// +/// @license GNU LGPL v3 +/// +/// Distributed under the GNU LGPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/lgpl-3.0.html) +/// #include "devlangchoose.h" #include "langpy.h" diff --git a/Plugins/DevLangPython/langpy.cpp b/Plugins/DevLangPython/langpy.cpp index 3b35a87..bf2d129 100644 --- a/Plugins/DevLangPython/langpy.cpp +++ b/Plugins/DevLangPython/langpy.cpp @@ -3,11 +3,11 @@ /// @brief parser test for Python /// @author David Yin 2019-01 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Plugins/DevLangPython/langpy.h b/Plugins/DevLangPython/langpy.h index 58a81d7..683ddcf 100644 --- a/Plugins/DevLangPython/langpy.h +++ b/Plugins/DevLangPython/langpy.h @@ -3,11 +3,11 @@ /// @brief parser test for Python /// @author David Yin 2019-01 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef LANGPY_H #define LANGPY_H diff --git a/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.cpp b/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.cpp index d022877..555facb 100644 --- a/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.cpp +++ b/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.cpp @@ -2,11 +2,11 @@ /// @brief MsgBox GUI Instance /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "gui_ta_msgbox.h" diff --git a/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.h b/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.h index b706802..728c48c 100644 --- a/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.h +++ b/Plugins/GUI_TA_MsgBox/gui_ta_msgbox.h @@ -2,11 +2,11 @@ /// @brief Plugin of the MsgBox GUI Instance /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef GUI_TA_MSGBOX_H diff --git a/Plugins/GUI_TA_MsgBox/msgboxdlg.cpp b/Plugins/GUI_TA_MsgBox/msgboxdlg.cpp index f5bf668..0273420 100644 --- a/Plugins/GUI_TA_MsgBox/msgboxdlg.cpp +++ b/Plugins/GUI_TA_MsgBox/msgboxdlg.cpp @@ -2,11 +2,11 @@ /// @brief Timeout Dialog /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// diff --git a/Plugins/GUI_TA_MsgBox/msgboxdlg.h b/Plugins/GUI_TA_MsgBox/msgboxdlg.h index 9f8dfe1..de653b0 100644 --- a/Plugins/GUI_TA_MsgBox/msgboxdlg.h +++ b/Plugins/GUI_TA_MsgBox/msgboxdlg.h @@ -2,11 +2,11 @@ /// @brief Timeout Dialog /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef MSGBOXDLG_H diff --git a/Plugins/TA_MsgBox/ta_msgbox.cpp b/Plugins/TA_MsgBox/ta_msgbox.cpp index be4d9cf..3f1af4a 100644 --- a/Plugins/TA_MsgBox/ta_msgbox.cpp +++ b/Plugins/TA_MsgBox/ta_msgbox.cpp @@ -2,11 +2,11 @@ /// @brief common of the MessageBox /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "ta_msgbox.h" diff --git a/Plugins/TA_MsgBox/ta_msgbox.h b/Plugins/TA_MsgBox/ta_msgbox.h index ea243a5..637f9b5 100644 --- a/Plugins/TA_MsgBox/ta_msgbox.h +++ b/Plugins/TA_MsgBox/ta_msgbox.h @@ -2,11 +2,11 @@ /// @brief common of the MessageBox /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TA_MSGBOX_H diff --git a/Src/TestEngine/ioutput.h b/Src/TestEngine/ioutput.h index d007796..94d1f61 100644 --- a/Src/TestEngine/ioutput.h +++ b/Src/TestEngine/ioutput.h @@ -2,11 +2,11 @@ /// @brief Output Interface /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef IOUTPUT_H diff --git a/Src/TestEngine/langqs.cpp b/Src/TestEngine/langqs.cpp index 5774a8f..70ed070 100644 --- a/Src/TestEngine/langqs.cpp +++ b/Src/TestEngine/langqs.cpp @@ -3,11 +3,11 @@ /// @brief parser test for QtScript /// @author David Yin 2019-01 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/langqs.h b/Src/TestEngine/langqs.h index e727ba7..0acd97e 100644 --- a/Src/TestEngine/langqs.h +++ b/Src/TestEngine/langqs.h @@ -3,11 +3,11 @@ /// @brief parser test for QtScript /// @author David Yin 2019-01 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef LANGQS_H diff --git a/Src/TestEngine/main.cpp b/Src/TestEngine/main.cpp index 75e5a7f..c30d049 100644 --- a/Src/TestEngine/main.cpp +++ b/Src/TestEngine/main.cpp @@ -2,11 +2,11 @@ /// @brief TestEngine main /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/maintask.cpp b/Src/TestEngine/maintask.cpp index 0da0f42..0a376f4 100644 --- a/Src/TestEngine/maintask.cpp +++ b/Src/TestEngine/maintask.cpp @@ -3,11 +3,11 @@ /// @brief TestEngine's main task /// @author David Yin 2019-01 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/maintask.h b/Src/TestEngine/maintask.h index 83559cc..c282e09 100644 --- a/Src/TestEngine/maintask.h +++ b/Src/TestEngine/maintask.h @@ -3,11 +3,11 @@ /// @brief TestEngine's main task /// @author David Yin 2019-01 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef MAINTASK_H diff --git a/Src/TestEngine/outputlocal.cpp b/Src/TestEngine/outputlocal.cpp index aafb2d3..7e9c869 100644 --- a/Src/TestEngine/outputlocal.cpp +++ b/Src/TestEngine/outputlocal.cpp @@ -2,11 +2,11 @@ /// @brief Let's test result output and save the local with file. /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/outputlocal.h b/Src/TestEngine/outputlocal.h index 40da14a..2818ff5 100644 --- a/Src/TestEngine/outputlocal.h +++ b/Src/TestEngine/outputlocal.h @@ -2,11 +2,11 @@ /// @brief Let's test result output and save the local with file. /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef OUTPUTLOCAL_H diff --git a/Src/TestEngine/outputmgr.cpp b/Src/TestEngine/outputmgr.cpp index 5a5f4ac..b8b0142 100644 --- a/Src/TestEngine/outputmgr.cpp +++ b/Src/TestEngine/outputmgr.cpp @@ -2,11 +2,11 @@ /// @brief Output model manager /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/outputmgr.h b/Src/TestEngine/outputmgr.h index 9b72fb7..41b351b 100644 --- a/Src/TestEngine/outputmgr.h +++ b/Src/TestEngine/outputmgr.h @@ -2,11 +2,11 @@ /// @brief Output model manager /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef OUTPUTMGR_H diff --git a/Src/TestEngine/outputstd.cpp b/Src/TestEngine/outputstd.cpp index a2fc092..7ee846c 100644 --- a/Src/TestEngine/outputstd.cpp +++ b/Src/TestEngine/outputstd.cpp @@ -2,11 +2,11 @@ /// @brief Standard output /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/outputstd.h b/Src/TestEngine/outputstd.h index 711787a..954ec68 100644 --- a/Src/TestEngine/outputstd.h +++ b/Src/TestEngine/outputstd.h @@ -2,11 +2,11 @@ /// @brief Standard output /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef OUTPUTSTD_H diff --git a/Src/TestEngine/resultmgr.cpp b/Src/TestEngine/resultmgr.cpp index 92ad13f..fc93cc6 100644 --- a/Src/TestEngine/resultmgr.cpp +++ b/Src/TestEngine/resultmgr.cpp @@ -2,11 +2,11 @@ /// @brief Test results manager /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/resultmgr.h b/Src/TestEngine/resultmgr.h index 75ef6b3..4516756 100644 --- a/Src/TestEngine/resultmgr.h +++ b/Src/TestEngine/resultmgr.h @@ -2,11 +2,11 @@ /// @brief Test results manager /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef RESULTMGR_H diff --git a/Src/TestEngine/stdinc.h b/Src/TestEngine/stdinc.h index 905dddb..ddf1052 100644 --- a/Src/TestEngine/stdinc.h +++ b/Src/TestEngine/stdinc.h @@ -2,11 +2,11 @@ /// @brief some define of global /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef STDINC_H diff --git a/Src/TestEngine/testctrl.cpp b/Src/TestEngine/testctrl.cpp index 3659778..e27f7fd 100644 --- a/Src/TestEngine/testctrl.cpp +++ b/Src/TestEngine/testctrl.cpp @@ -2,11 +2,11 @@ /// @brief Stop the current testing with command line /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/testctrl.h b/Src/TestEngine/testctrl.h index b81b1ab..66b1909 100644 --- a/Src/TestEngine/testctrl.h +++ b/Src/TestEngine/testctrl.h @@ -2,11 +2,11 @@ /// @brief Stop the current testing with command line /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TESTCTRL_H diff --git a/Src/TestEngine/testrststruct.h b/Src/TestEngine/testrststruct.h index d095772..8a2fe5a 100644 --- a/Src/TestEngine/testrststruct.h +++ b/Src/TestEngine/testrststruct.h @@ -2,11 +2,11 @@ /// @brief Test Result struct /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TESTRSTSTRUCT_H diff --git a/Src/TestEngine/testrunner.cpp b/Src/TestEngine/testrunner.cpp index 1f072b8..ca2c11a 100644 --- a/Src/TestEngine/testrunner.cpp +++ b/Src/TestEngine/testrunner.cpp @@ -2,11 +2,11 @@ /// @brief Test runner, parse the mutli-language and configure file /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/testrunner.h b/Src/TestEngine/testrunner.h index fb9d9d1..017702a 100644 --- a/Src/TestEngine/testrunner.h +++ b/Src/TestEngine/testrunner.h @@ -2,11 +2,11 @@ /// @brief Test runner, parse the mutli-language and configure file /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TESTRUNNER_H diff --git a/Src/TestEngine/unitmgr.cpp b/Src/TestEngine/unitmgr.cpp index 3aa5d2a..f48c1f4 100644 --- a/Src/TestEngine/unitmgr.cpp +++ b/Src/TestEngine/unitmgr.cpp @@ -2,11 +2,11 @@ /// @brief Load and manage the test items. /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "stdinc.h" diff --git a/Src/TestEngine/unitmgr.h b/Src/TestEngine/unitmgr.h index 9f6015b..83289da 100644 --- a/Src/TestEngine/unitmgr.h +++ b/Src/TestEngine/unitmgr.h @@ -2,11 +2,11 @@ /// @brief Load and manage the test items. /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// diff --git a/Src/TreeATE/aboutdialog.cpp b/Src/TreeATE/aboutdialog.cpp index 5d21370..6f68e91 100644 --- a/Src/TreeATE/aboutdialog.cpp +++ b/Src/TreeATE/aboutdialog.cpp @@ -2,11 +2,11 @@ /// @brief about this system /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "aboutdialog.h" diff --git a/Src/TreeATE/aboutdialog.h b/Src/TreeATE/aboutdialog.h index 0d63a9a..f2b16e7 100644 --- a/Src/TreeATE/aboutdialog.h +++ b/Src/TreeATE/aboutdialog.h @@ -2,11 +2,11 @@ /// @brief about this system /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef ABOUTDIALOG_H diff --git a/Src/TreeATE/ate.rc b/Src/TreeATE/ate.rc index 7afcc20..ca4f1b4 100644 --- a/Src/TreeATE/ate.rc +++ b/Src/TreeATE/ate.rc @@ -7,8 +7,8 @@ IDI_ICON1 ICON DISCARDABLE "ATE.ico" #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,2,2,1 - PRODUCTVERSION 1,2,2,1 + FILEVERSION 2,0,0,1 + PRODUCTVERSION 2,0,0,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS VS_FF_DEBUG @@ -25,10 +25,10 @@ VS_VERSION_INFO VERSIONINFO BEGIN VALUE "CompanyName", "David Yin\0" VALUE "FileDescription", "TreeATE for manufactory automatic testing\0" - VALUE "FileVersion", "1,2,2,1" - VALUE "ProductVersion", "1,2,2,1" + VALUE "FileVersion", "2,0,0,1" + VALUE "ProductVersion", "2,0,0,1" VALUE "LegalCopyright", "Copyright 2020(C) David Yin\0" - VALUE "LegalTrademarks", "Tree ATE\0" + VALUE "LegalTrademarks", "TreeATE\0" VALUE "OriginalFilename", "TreeATE.exe\0" VALUE "ProductName", "TreeATE\0" VALUE "InternalName", "TreeATE.exe\0" diff --git a/Src/TreeATE/login.cpp b/Src/TreeATE/login.cpp index cbb00ab..7a11d9f 100644 --- a/Src/TreeATE/login.cpp +++ b/Src/TreeATE/login.cpp @@ -2,11 +2,11 @@ /// @brief login the TreeATE dialog /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "login.h" diff --git a/Src/TreeATE/login.h b/Src/TreeATE/login.h index 9ed1db3..ca9a0b5 100644 --- a/Src/TreeATE/login.h +++ b/Src/TreeATE/login.h @@ -2,11 +2,11 @@ /// @brief login the TreeATE dialog /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef LOGIN_H diff --git a/Src/TreeATE/main.cpp b/Src/TreeATE/main.cpp index 59f79a6..022492e 100644 --- a/Src/TreeATE/main.cpp +++ b/Src/TreeATE/main.cpp @@ -2,11 +2,11 @@ /// @brief TreeATE main function /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "mainwindow.h" diff --git a/Src/TreeATE/mainwindow.cpp b/Src/TreeATE/mainwindow.cpp index 436df77..483c1a8 100644 --- a/Src/TreeATE/mainwindow.cpp +++ b/Src/TreeATE/mainwindow.cpp @@ -2,11 +2,11 @@ /// @brief TreeATE's main window /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "mainwindow.h" diff --git a/Src/TreeATE/mainwindow.h b/Src/TreeATE/mainwindow.h index 1d431da..b040e46 100644 --- a/Src/TreeATE/mainwindow.h +++ b/Src/TreeATE/mainwindow.h @@ -2,11 +2,11 @@ /// @brief TreeATE's main window /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef MAINWINDOW_H diff --git a/Src/TreeATE/manybarcodedlg.cpp b/Src/TreeATE/manybarcodedlg.cpp index b6703f0..bc36976 100644 --- a/Src/TreeATE/manybarcodedlg.cpp +++ b/Src/TreeATE/manybarcodedlg.cpp @@ -2,11 +2,11 @@ /// @brief Scan the barcode for every one of the test project /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "manybarcodedlg.h" diff --git a/Src/TreeATE/manybarcodedlg.h b/Src/TreeATE/manybarcodedlg.h index 3b1cc26..ef2fbdd 100644 --- a/Src/TreeATE/manybarcodedlg.h +++ b/Src/TreeATE/manybarcodedlg.h @@ -2,11 +2,11 @@ /// @brief Scan the barcode for every one of the test project /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef MANYBARCODEDLG_H diff --git a/Src/TreeATE/pluginsmgr.cpp b/Src/TreeATE/pluginsmgr.cpp index e238b53..2dbb153 100644 --- a/Src/TreeATE/pluginsmgr.cpp +++ b/Src/TreeATE/pluginsmgr.cpp @@ -2,11 +2,11 @@ /// @brief Plugins Manger /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "pluginsmgr.h" diff --git a/Src/TreeATE/pluginsmgr.h b/Src/TreeATE/pluginsmgr.h index cdc15bb..050e56a 100644 --- a/Src/TreeATE/pluginsmgr.h +++ b/Src/TreeATE/pluginsmgr.h @@ -2,11 +2,11 @@ /// @brief Plugins Manager /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// diff --git a/Src/TreeATE/prjoptdlg.cpp b/Src/TreeATE/prjoptdlg.cpp index dfba656..3126a12 100644 --- a/Src/TreeATE/prjoptdlg.cpp +++ b/Src/TreeATE/prjoptdlg.cpp @@ -2,11 +2,11 @@ /// @brief Test Project option dialog /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "prjoptdlg.h" diff --git a/Src/TreeATE/prjoptdlg.h b/Src/TreeATE/prjoptdlg.h index 3afaad9..681f01d 100644 --- a/Src/TreeATE/prjoptdlg.h +++ b/Src/TreeATE/prjoptdlg.h @@ -2,11 +2,11 @@ /// @brief Test Project option dialog /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef PRJOPTDLG_H diff --git a/Src/TreeATE/projectmgr.cpp b/Src/TreeATE/projectmgr.cpp index fe607bb..1d41495 100644 --- a/Src/TreeATE/projectmgr.cpp +++ b/Src/TreeATE/projectmgr.cpp @@ -3,11 +3,11 @@ /// and barcode regex. /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "projectmgr.h" diff --git a/Src/TreeATE/projectmgr.h b/Src/TreeATE/projectmgr.h index dd20901..dd483ad 100644 --- a/Src/TreeATE/projectmgr.h +++ b/Src/TreeATE/projectmgr.h @@ -3,11 +3,11 @@ /// and barcode regex. /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef PROJECTMGR_H diff --git a/Src/TreeATE/statusdelegate.cpp b/Src/TreeATE/statusdelegate.cpp index d07876d..bdffd94 100644 --- a/Src/TreeATE/statusdelegate.cpp +++ b/Src/TreeATE/statusdelegate.cpp @@ -2,11 +2,11 @@ /// @brief The test status delegate on the main window /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "statusdelegate.h" diff --git a/Src/TreeATE/statusdelegate.h b/Src/TreeATE/statusdelegate.h index cafdae4..74d3258 100644 --- a/Src/TreeATE/statusdelegate.h +++ b/Src/TreeATE/statusdelegate.h @@ -2,11 +2,11 @@ /// @brief The test status delegate on the main window /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef STATUSDELEGATE_H diff --git a/Src/TreeATE/syscfgdlg.cpp b/Src/TreeATE/syscfgdlg.cpp index f5879ec..19bd0e3 100644 --- a/Src/TreeATE/syscfgdlg.cpp +++ b/Src/TreeATE/syscfgdlg.cpp @@ -2,11 +2,11 @@ /// @brief TreeATE system option /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "syscfgdlg.h" diff --git a/Src/TreeATE/syscfgdlg.h b/Src/TreeATE/syscfgdlg.h index df489c4..5439a24 100644 --- a/Src/TreeATE/syscfgdlg.h +++ b/Src/TreeATE/syscfgdlg.h @@ -2,11 +2,11 @@ /// @brief TreeATE system option /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef SYSCFGDLG_H diff --git a/Src/TreeATE/tadefine.h b/Src/TreeATE/tadefine.h index dcebdef..74f7251 100644 --- a/Src/TreeATE/tadefine.h +++ b/Src/TreeATE/tadefine.h @@ -2,11 +2,11 @@ /// @brief global define /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TADEFINE_H diff --git a/Src/TreeATE/talineedit.cpp b/Src/TreeATE/talineedit.cpp index 626e01f..c562b78 100644 --- a/Src/TreeATE/talineedit.cpp +++ b/Src/TreeATE/talineedit.cpp @@ -2,11 +2,11 @@ /// @brief auto focus LineEdit /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "talineedit.h" diff --git a/Src/TreeATE/talineedit.h b/Src/TreeATE/talineedit.h index 55b9925..c530eb0 100644 --- a/Src/TreeATE/talineedit.h +++ b/Src/TreeATE/talineedit.h @@ -2,11 +2,11 @@ /// @brief auto focus LineEdit /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TALINEEDIT_H #define TALINEEDIT_H diff --git a/Src/TreeATE/talogin.h b/Src/TreeATE/talogin.h index a1e6093..831b8a2 100644 --- a/Src/TreeATE/talogin.h +++ b/Src/TreeATE/talogin.h @@ -2,11 +2,11 @@ /// @brief Login Dialog Interface /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TALOGIN_H diff --git a/Src/TreeATE/tasizedockwidget.cpp b/Src/TreeATE/tasizedockwidget.cpp index 95b3301..5457cec 100644 --- a/Src/TreeATE/tasizedockwidget.cpp +++ b/Src/TreeATE/tasizedockwidget.cpp @@ -3,11 +3,11 @@ /// @brief For default size of the DockWidget /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "tasizedockwidget.h" diff --git a/Src/TreeATE/tasizedockwidget.h b/Src/TreeATE/tasizedockwidget.h index a9bbb4d..040fbbc 100644 --- a/Src/TreeATE/tasizedockwidget.h +++ b/Src/TreeATE/tasizedockwidget.h @@ -3,11 +3,11 @@ /// @brief For default size of the DockWidget /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TASIZEDOCKWIDGET_H diff --git a/Src/TreeATE/testmanger.cpp b/Src/TreeATE/testmanger.cpp index e1317c1..8443e86 100644 --- a/Src/TreeATE/testmanger.cpp +++ b/Src/TreeATE/testmanger.cpp @@ -2,11 +2,11 @@ /// @brief Test perform manager. load test items, /// start the testing or stop the testing. /// @author David Yin 2018-12 willage.yin@163.com-12 willage.yin@163.com -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "testmanger.h" diff --git a/Src/TreeATE/testmanger.h b/Src/TreeATE/testmanger.h index 79bfbf8..c4cdc6c 100644 --- a/Src/TreeATE/testmanger.h +++ b/Src/TreeATE/testmanger.h @@ -3,11 +3,11 @@ /// start the testing or stop the testing. /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TESTMANGER_H diff --git a/Src/TreeATE/testproccess.cpp b/Src/TreeATE/testproccess.cpp index 9cd0b0d..98ce7fe 100644 --- a/Src/TreeATE/testproccess.cpp +++ b/Src/TreeATE/testproccess.cpp @@ -2,11 +2,11 @@ /// @brief Process the standard output from TestEngine /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "testproccess.h" diff --git a/Src/TreeATE/testproccess.h b/Src/TreeATE/testproccess.h index 5d6392f..2fc3464 100644 --- a/Src/TreeATE/testproccess.h +++ b/Src/TreeATE/testproccess.h @@ -2,11 +2,11 @@ /// @brief Process the standard output from TestEngine /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TESTPROCCESS_H diff --git a/Src/TreeATEDev/LICENSE b/Src/TreeATEDev/LICENSE new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/Src/TreeATEDev/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 3 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, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/Src/TreeATEDev/aboutdlg.cpp b/Src/TreeATEDev/aboutdlg.cpp index 0be98e1..1297f72 100644 --- a/Src/TreeATEDev/aboutdlg.cpp +++ b/Src/TreeATEDev/aboutdlg.cpp @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief about this /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/aboutdlg.h b/Src/TreeATEDev/aboutdlg.h index 0780ccb..472181d 100644 --- a/Src/TreeATEDev/aboutdlg.h +++ b/Src/TreeATEDev/aboutdlg.h @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief about this /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/ate_dev.rc b/Src/TreeATEDev/ate_dev.rc index 8a8c7fc..3b0f884 100644 --- a/Src/TreeATEDev/ate_dev.rc +++ b/Src/TreeATEDev/ate_dev.rc @@ -7,8 +7,8 @@ IDI_ICON1 ICON DISCARDABLE "ATE_dev.ico" #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,2,2,1 - PRODUCTVERSION 1,2,2,1 + FILEVERSION 1,2,2,2 + PRODUCTVERSION 1,2,2,2 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS VS_FF_DEBUG @@ -25,12 +25,12 @@ VS_VERSION_INFO VERSIONINFO BEGIN VALUE "CompanyName", "David Yin\0" VALUE "FileDescription", "TreeATE Developer Tools for TreeATE\0" - VALUE "FileVersion", "1,2,2,1" - VALUE "ProductVersion", "1,2,2,1" + VALUE "FileVersion", "1,2,2,2" + VALUE "ProductVersion", "1,2,2,2" VALUE "LegalCopyright", "Copyright 2020(C) David Yin\0" - VALUE "LegalTrademarks", "Tree ATE\0" + VALUE "LegalTrademarks", "TreeATE Dev\0" VALUE "OriginalFilename", "TreeATEDev.exe\0" - VALUE "ProductName", "TreeATE\0" + VALUE "ProductName", "TreeATE Dev\0" VALUE "InternalName", "TreeATEDev.exe\0" END END diff --git a/Src/TreeATEDev/dlgfind.cpp b/Src/TreeATEDev/dlgfind.cpp index 86d1580..ca56232 100644 --- a/Src/TreeATEDev/dlgfind.cpp +++ b/Src/TreeATEDev/dlgfind.cpp @@ -1,3 +1,15 @@ +/// +/// @project TreeATE Dev +/// @brief Find Dialog +/// @author David Yin 2019-4 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// + #include "dlgfind.h" #include "ui_dlgfind.h" diff --git a/Src/TreeATEDev/dlgfind.h b/Src/TreeATEDev/dlgfind.h index a305798..069fa66 100644 --- a/Src/TreeATEDev/dlgfind.h +++ b/Src/TreeATEDev/dlgfind.h @@ -1,3 +1,15 @@ +/// +/// @project TreeATE Dev +/// @brief Find Dialog +/// @author David Yin 2019-4 willage.yin@163.com +/// +/// @license GNU GPL v3 +/// +/// Distributed under the GNU GPL v3 License +/// (See accompanying file LICENSE or copy at +/// http://www.gnu.org/licenses/gpl.html) +/// + #ifndef DLGFIND_H #define DLGFIND_H diff --git a/Src/TreeATEDev/main.cpp b/Src/TreeATEDev/main.cpp index 32655df..801de43 100644 --- a/Src/TreeATEDev/main.cpp +++ b/Src/TreeATEDev/main.cpp @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief TreeATEDev's main function /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/mainwindow.cpp b/Src/TreeATEDev/mainwindow.cpp index c1b536c..18a1f5e 100644 --- a/Src/TreeATEDev/mainwindow.cpp +++ b/Src/TreeATEDev/mainwindow.cpp @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief MainWindow of the TreeATEDev /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/mainwindow.h b/Src/TreeATEDev/mainwindow.h index 3eb88c6..ab12585 100644 --- a/Src/TreeATEDev/mainwindow.h +++ b/Src/TreeATEDev/mainwindow.h @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief MainWindow of the TreeATEDev /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/newprjdlg.h b/Src/TreeATEDev/newprjdlg.h index 8c27bc1..a658e0e 100644 --- a/Src/TreeATEDev/newprjdlg.h +++ b/Src/TreeATEDev/newprjdlg.h @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief New project dialog /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/tacsvparser.cpp b/Src/TreeATEDev/tacsvparser.cpp index a94ad1c..6603cef 100644 --- a/Src/TreeATEDev/tacsvparser.cpp +++ b/Src/TreeATEDev/tacsvparser.cpp @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief This is CSV file parser /// @author David Yin 2019-01 willage.yin@163.com /// diff --git a/Src/TreeATEDev/tacsvparser.h b/Src/TreeATEDev/tacsvparser.h index ac7e0f5..0491efd 100644 --- a/Src/TreeATEDev/tacsvparser.h +++ b/Src/TreeATEDev/tacsvparser.h @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief This is CSV file parser /// @author David Yin 2019-01 willage.yin@163.com /// diff --git a/Src/TreeATEDev/taprjcfgwidget.cpp b/Src/TreeATEDev/taprjcfgwidget.cpp index b4e6dfc..a28ac83 100644 --- a/Src/TreeATEDev/taprjcfgwidget.cpp +++ b/Src/TreeATEDev/taprjcfgwidget.cpp @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief Test Project Configure (TPX) file Widget /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/taprjcfgwidget.h b/Src/TreeATEDev/taprjcfgwidget.h index be19fdc..4429002 100644 --- a/Src/TreeATEDev/taprjcfgwidget.h +++ b/Src/TreeATEDev/taprjcfgwidget.h @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief Test Project Configure (TPX) file Widget /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/tapropertymgr.cpp b/Src/TreeATEDev/tapropertymgr.cpp index 3843c3b..0a58cba 100644 --- a/Src/TreeATEDev/tapropertymgr.cpp +++ b/Src/TreeATEDev/tapropertymgr.cpp @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief Property manager for different model /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/tapropertymgr.h b/Src/TreeATEDev/tapropertymgr.h index 33a0f1b..861b49e 100644 --- a/Src/TreeATEDev/tapropertymgr.h +++ b/Src/TreeATEDev/tapropertymgr.h @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief Property manager for different model /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/tascriptedit.cpp b/Src/TreeATEDev/tascriptedit.cpp index eb40c29..94d276e 100644 --- a/Src/TreeATEDev/tascriptedit.cpp +++ b/Src/TreeATEDev/tascriptedit.cpp @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief script eidt widget /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/tascriptedit.h b/Src/TreeATEDev/tascriptedit.h index 2bf81c0..d6e896a 100644 --- a/Src/TreeATEDev/tascriptedit.h +++ b/Src/TreeATEDev/tascriptedit.h @@ -1,5 +1,5 @@ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief script edit widget /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/testunititem.cpp b/Src/TreeATEDev/testunititem.cpp index f8d6377..7e29d5d 100644 --- a/Src/TreeATEDev/testunititem.cpp +++ b/Src/TreeATEDev/testunititem.cpp @@ -48,7 +48,7 @@ ** ****************************************************************************/ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief TestUnitItem class for TestUnitModel /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/testunititem.h b/Src/TreeATEDev/testunititem.h index e1cab42..de089d2 100644 --- a/Src/TreeATEDev/testunititem.h +++ b/Src/TreeATEDev/testunititem.h @@ -48,7 +48,7 @@ ** ****************************************************************************/ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief TestUnitItem class for TestUnitModel /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/testunitsmodel.cpp b/Src/TreeATEDev/testunitsmodel.cpp index e9f5a6c..fdbecc4 100644 --- a/Src/TreeATEDev/testunitsmodel.cpp +++ b/Src/TreeATEDev/testunitsmodel.cpp @@ -48,7 +48,7 @@ ** ****************************************************************************/ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief Test Unit's model for QTreeView /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeATEDev/testunitsmodel.h b/Src/TreeATEDev/testunitsmodel.h index e0b6291..a0d7261 100644 --- a/Src/TreeATEDev/testunitsmodel.h +++ b/Src/TreeATEDev/testunitsmodel.h @@ -48,7 +48,7 @@ ** ****************************************************************************/ /// -/// @project TreeATE +/// @project TreeATE Dev /// @brief Test Unit's model for QTreeView /// @author David Yin 2018-12 willage.yin@163.com /// diff --git a/Src/TreeResults/main.cpp b/Src/TreeResults/main.cpp index 556cc54..1a2ecb4 100644 --- a/Src/TreeResults/main.cpp +++ b/Src/TreeResults/main.cpp @@ -3,11 +3,11 @@ /// @brief main function of the test results manager /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "mainwindow.h" diff --git a/Src/TreeResults/mainwindow.cpp b/Src/TreeResults/mainwindow.cpp index c8767f2..7ead471 100644 --- a/Src/TreeResults/mainwindow.cpp +++ b/Src/TreeResults/mainwindow.cpp @@ -3,11 +3,11 @@ /// @brief MainWindow of the test results /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "mainwindow.h" diff --git a/Src/TreeResults/mainwindow.h b/Src/TreeResults/mainwindow.h index 3ad03df..1d4588f 100644 --- a/Src/TreeResults/mainwindow.h +++ b/Src/TreeResults/mainwindow.h @@ -3,11 +3,11 @@ /// @brief MainWindow of the test results manager /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef MAINWINDOW_H diff --git a/Src/TreeResults/tasqlquerymodel.cpp b/Src/TreeResults/tasqlquerymodel.cpp index 75e7a10..f0a8f11 100644 --- a/Src/TreeResults/tasqlquerymodel.cpp +++ b/Src/TreeResults/tasqlquerymodel.cpp @@ -3,11 +3,11 @@ /// @brief TASqlQueryModel /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #include "tasqlquerymodel.h" diff --git a/Src/TreeResults/tasqlquerymodel.h b/Src/TreeResults/tasqlquerymodel.h index 8cf90d7..7bc34b4 100644 --- a/Src/TreeResults/tasqlquerymodel.h +++ b/Src/TreeResults/tasqlquerymodel.h @@ -3,11 +3,11 @@ /// @brief TASqlQueryModel class /// @author David Yin 2018-12 willage.yin@163.com /// -/// @license GNU GPL v3 +/// @license GNU LGPL v3 /// -/// Distributed under the GNU GPL v3 License +/// Distributed under the GNU LGPL v3 License /// (See accompanying file LICENSE or copy at -/// http://www.gnu.org/licenses/gpl.html) +/// http://www.gnu.org/licenses/lgpl-3.0.html) /// #ifndef TASQLQUERYMODEL_H From e49741e3d5fef52abf91a1331f102811d6189a45 Mon Sep 17 00:00:00 2001 From: David Yin Date: Mon, 25 May 2020 22:33:33 +0800 Subject: [PATCH 5/6] Update readme.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e037821..c94fdd1 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ TreeATE Dev界面预览 TreeATE基于QT开发,运行于Windows 32位系统(支持64位)。在编译TreeATE之前,你需要安装以下开发工具: * [qt-opensource-windows-x86-msvc2013-5.7.0](http://download.qt.io/archive/qt/5.7/5.7.0/qt-opensource-windows-x86-msvc2013-5.7.0.exe) (L)GPL v3 * [QScintilla_gpl-2.10.3](https://riverbankcomputing.com/software/qscintilla/download) GPL v3 -* [PythonQt 3.2.0](http://pythonqt.sourceforge.net) LGPL v2.1 +* [PythonQt 3.2.0](https://github.com/MeVisLab/pythonqt) LGPL v2.1 * [Python27 32位](https://www.python.org/ftp/python/2.7.15/python-2.7.15.msi) Python License (Python-2.0) 关于以上工具的安装和配置请参见它们的帮助文档。 From bbd08b42bb012469b624af95d8ac48e1e5bd9842 Mon Sep 17 00:00:00 2001 From: David Yin Date: Mon, 25 May 2020 23:02:07 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=85=8D=E5=A5=97?= =?UTF-8?q?=E7=9A=84=E5=AE=89=E8=A3=85=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新版本信息 --- Changelog.txt | 5 +---- Setup/setup.iss | 3 ++- Src/TestEngine/ate_te.rc | 8 ++++---- Src/TreeATE/aboutdialog.ui | 6 +++--- Src/TreeResults/ate_rst.rc | 12 ++++++------ 5 files changed, 16 insertions(+), 18 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 30dfd03..354b6b1 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -6,10 +6,7 @@ V2.0.0 ------------------- 1、变更TreeATE的License为LGPL v3 2、保留TreeATEDev的License为GPL v3 - -V1.3.0 -------------------- -1、增加对C++测试用例的支持 +3、增加对C++测试用例的支持 V1.2.2 ------------------- diff --git a/Setup/setup.iss b/Setup/setup.iss index e74a777..8be5c8a 100644 --- a/Setup/setup.iss +++ b/Setup/setup.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "TreeATE" -#define MyAppVersion "1.2.2" +#define MyAppVersion "2.0.0" #define MyAppPublisher "David Yin" #define MyAppURL "https://blog.csdn.net/vivasoft/column/info/31202" #define MyAppExeName "TreeATE.exe" @@ -37,6 +37,7 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{ Source: "D:\Projects\build-TreeATE-Desktop_Qt_5_7_0_MSVC2013_32bit-Release\bin\*"; DestDir: "{app}"; Flags: recursesubdirs replacesameversion Source: "..\Example\TestDemo\*"; DestDir: "{app}\Example\TestDemo\"; Flags: recursesubdirs Source: "..\Example\TestDemoPy\*"; DestDir: "{app}\Example\TestDemoPy\"; Flags: recursesubdirs +Source: "..\Example\TestCppDemo\*"; DestDir: "{app}\Example\TestCppDemo\"; Flags: recursesubdirs ; NOTE: Don't use "Flags: ignoreversion" on any shared system files [Icons] diff --git a/Src/TestEngine/ate_te.rc b/Src/TestEngine/ate_te.rc index 3dd0f8b..bd929af 100644 --- a/Src/TestEngine/ate_te.rc +++ b/Src/TestEngine/ate_te.rc @@ -5,8 +5,8 @@ #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,3,0,1 - PRODUCTVERSION 1,3,0,1 + FILEVERSION 2,0,0,1 + PRODUCTVERSION 2,0,0,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS VS_FF_DEBUG @@ -23,8 +23,8 @@ VS_VERSION_INFO VERSIONINFO BEGIN VALUE "CompanyName", "David Yin\0" VALUE "FileDescription", "Test Engine for TreeATE\0" - VALUE "FileVersion", "1,3,0,1" - VALUE "ProductVersion", "1,3,0,1" + VALUE "FileVersion", "2,0,0,1" + VALUE "ProductVersion", "2,0,0,1" VALUE "LegalCopyright", "Copyright 2020(C) David Yin\0" VALUE "LegalTrademarks", "Tree ATE\0" VALUE "OriginalFilename", "TestEngine.exe\0" diff --git a/Src/TreeATE/aboutdialog.ui b/Src/TreeATE/aboutdialog.ui index b61d799..2443e5c 100644 --- a/Src/TreeATE/aboutdialog.ui +++ b/Src/TreeATE/aboutdialog.ui @@ -68,14 +68,14 @@ - Version: 1.2.2 + Version: 2.0.0 - Copyright 2019 David Yin + Copyright 2020 David Yin @@ -89,7 +89,7 @@ - <html><head/><body><p>License: <a href="https://www.gnu.org/licenses/gpl.html"><span style=" text-decoration: underline; color:#007af4;">GNU GPL v3</span></a></p></body></html> + <html><head/><body><p>License: <a href="https://www.gnu.org/licenses/lgpl-3.0.html"><span style=" text-decoration: underline; color:#007af4;">GNU LGPL v3</span></a></p></body></html> diff --git a/Src/TreeResults/ate_rst.rc b/Src/TreeResults/ate_rst.rc index 800dcea..64e85cc 100644 --- a/Src/TreeResults/ate_rst.rc +++ b/Src/TreeResults/ate_rst.rc @@ -7,8 +7,8 @@ IDI_ICON1 ICON DISCARDABLE "ATE_rst.ico" #endif VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,1 - PRODUCTVERSION 1,0,0,1 + FILEVERSION 2,0,0,1 + PRODUCTVERSION 2,0,0,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS VS_FF_DEBUG @@ -25,10 +25,10 @@ VS_VERSION_INFO VERSIONINFO BEGIN VALUE "CompanyName", "David Yin\0" VALUE "FileDescription", "Test Results View for TreeATE\0" - VALUE "FileVersion", "1,0,0,1" - VALUE "ProductVersion", "1,0,0,1" - VALUE "LegalCopyright", "Copyright 2019(C) David Yin\0" - VALUE "LegalTrademarks", "Tree ATE\0" + VALUE "FileVersion", "2,0,0,1" + VALUE "ProductVersion", "2,0,0,1" + VALUE "LegalCopyright", "Copyright 2020(C) David Yin\0" + VALUE "LegalTrademarks", "TreeATE\0" VALUE "OriginalFilename", "TreeResults.exe\0" VALUE "ProductName", "TreeATE\0" VALUE "InternalName", "TreeResults.exe\0"