-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
86 changed files
with
2,818 additions
and
661 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Сообщение об ошибке | ||
about: 1Script работает не так как ожидается | ||
|
||
--- | ||
|
||
**Опишите ошибку** | ||
Понятное описание того, что происходит | ||
|
||
**Воспроизведение ошибки** | ||
Steps to reproduce the behavior: | ||
1. Запустить код ... | ||
2. Подать на вход параметры ... | ||
3. Увидеть ошибку | ||
|
||
**Ожидаемое поведение** | ||
Опишите, как должна вести себя система в указаных условиях. Ведет ли себя 1С в тех же условиях иным образом? | ||
|
||
**Окружение** | ||
- ОС: | ||
- Версия: | ||
|
||
**Дополнительная информация** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
name: Предложение/Запрос на развитие | ||
about: Предложить идею для проекта | ||
|
||
--- | ||
|
||
<!--- | ||
## Уведомление от команды разработки | ||
Проект 1Script разрабатывается командой на безвозмездной основе за счет личного времени. | ||
За 4 года существования проекта, в него было подано более 800 задач и предложений. Все их отработать не представляется возможным. На каждой задаче, которую мы считаем посильной для реализации силами сообщества вешается зеленая плашка "help wanted". Это означает "Нужна помощь". За все время существования проекта, практически никто не взял и не сделал задачу с такой плашкой. Исключения единичны. | ||
Подавая запрос на новую функциональность, учитывайте, пожалуйста, что скорее всего, Ваша задача сможет быть реализована только Вами самостоятельно. | ||
Если вы не планируете реализовывать новую функциональность, то, возможно, и не стоит подавать запрос на нее? | ||
С надеждой на понимание, EvilBeaver | ||
--> | ||
|
||
# Описание задачи | ||
|
||
**Опишите вашу Цель, которую вы сможете достичь с помощью новой функциональности** | ||
Какую задачу вы смогли бы решить, если бы в 1Script была предлагаемая Вами функциональность? | ||
|
||
**Опишите решение** | ||
Четкое и понятное описание того, что Вы хотите видеть в проекте и как именно? | ||
|
||
**Дополнительная информация** | ||
Любая дополнтельная информация |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@echo Full distr and tests | ||
@echo add MSBuild 12 to your path | ||
@echo add MSBuild 15 to your path | ||
|
||
MSBuild.exe ./BuildAll.csproj | ||
MSBuild.exe ./BuildAll.csproj /t:CreateZipForUpdateDll | ||
MSBuild.exe ./BuildAll.csproj /t:xUnitTest | ||
MSBuild.exe ./Build.csproj | ||
MSBuild.exe ./Build.csproj /t:CreateZipForUpdateDll | ||
MSBuild.exe ./Build.csproj /t:xUnitTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
OSPATH=/usr/share/oscript | ||
mono $OSPATH/bin/oscript.exe $OSPATH/lib/opm/src/opm.os "$@" | ||
mono $OSPATH/bin/oscript.exe $OSPATH/lib/opm/src/cmd/opm.os "$@" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM fedora | ||
FROM fedora:26 | ||
MAINTAINER Chmouel Boudjnah <[email protected]> | ||
|
||
|
||
# Install various packages to get compile environment | ||
RUN dnf update -y && dnf -y group install 'Development Tools' | ||
|
||
# Install git command to access GitHub repository | ||
RUN dnf -y install sudo git rpmdevtools rpm-build yum-utils dnf-plugins-core dnf-plugins-extras | ||
RUN dnf -y install sudo git rpmdevtools rpm-build yum-utils dnf-plugins-core | ||
|
||
RUN sed -i.bak -n -e '/^Defaults.*requiretty/ { s/^/# /;};/^%wheel.*ALL$/ { s/^/# / ;} ;/^#.*wheel.*NOPASSWD/ { s/^#[ ]*//;};p' /etc/sudoers | ||
|
||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.