├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── example-report.cfg-file.json ├── example-report.html ├── example-report.json └── example.cfg-file.json ├── installlocalhost.bat ├── packagedef └── src ├── main.os ├── Классы ├── КомандаVersion.os ├── КомандаЗакрытьИшузы.os ├── КомандаСгенерироватьОтчет.os └── КомандаСправкаПоПараметрам.os └── Модули ├── МенеджерКомандПриложения.os ├── ПараметрыСистемы.os └── Сонар.os /.gitattributes: -------------------------------------------------------------------------------- 1 | # модули 2 | * text=auto 3 | *.os text eol=lf 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/README.md -------------------------------------------------------------------------------- /examples/example-report.cfg-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/examples/example-report.cfg-file.json -------------------------------------------------------------------------------- /examples/example-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/examples/example-report.html -------------------------------------------------------------------------------- /examples/example-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/examples/example-report.json -------------------------------------------------------------------------------- /examples/example.cfg-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/examples/example.cfg-file.json -------------------------------------------------------------------------------- /installlocalhost.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/installlocalhost.bat -------------------------------------------------------------------------------- /packagedef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/packagedef -------------------------------------------------------------------------------- /src/main.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/main.os -------------------------------------------------------------------------------- /src/Классы/КомандаVersion.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/Классы/КомандаVersion.os -------------------------------------------------------------------------------- /src/Классы/КомандаЗакрытьИшузы.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/Классы/КомандаЗакрытьИшузы.os -------------------------------------------------------------------------------- /src/Классы/КомандаСгенерироватьОтчет.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/Классы/КомандаСгенерироватьОтчет.os -------------------------------------------------------------------------------- /src/Классы/КомандаСправкаПоПараметрам.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/Классы/КомандаСправкаПоПараметрам.os -------------------------------------------------------------------------------- /src/Модули/МенеджерКомандПриложения.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/Модули/МенеджерКомандПриложения.os -------------------------------------------------------------------------------- /src/Модули/ПараметрыСистемы.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/Модули/ПараметрыСистемы.os -------------------------------------------------------------------------------- /src/Модули/Сонар.os: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscript-library/sonar-helper/HEAD/src/Модули/Сонар.os --------------------------------------------------------------------------------