Skip to content

Commit f71cb35

Browse files
committed
Prepare to build
Prepare to build
1 parent 20aeeb7 commit f71cb35

File tree

24 files changed

+39
-426
lines changed

24 files changed

+39
-426
lines changed

.idea/Integration-testing-environment.iml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

automation_editor/automation_editor_ui/editor_main/main_ui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(self):
2727
set_load_density_menu(self)
2828
set_web_runner_menu(self)
2929
syntax_extend_package(self)
30-
self.setWindowTitle("ITE & RPA")
30+
self.setWindowTitle("Automation Editor")
3131

3232

3333
def start_editor():

automation_editor/utils/file_process/get_dir_file_list.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import sys
2-
import tkinter.filedialog
32
from os import getcwd
43
from os import walk
54
from os.path import abspath

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ je-load-density
77
je-auto-control
88
je-web-runner
99
je-mail-thunder
10-
integration_testing_environment_dev
10+
automation_editor_dev

docs/Makefile

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +0,0 @@
1-
# Minimal makefile for Sphinx documentation
2-
#
3-
4-
# You can set these variables from the command line, and also
5-
# from the environment for the first two.
6-
SPHINXOPTS ?=
7-
SPHINXBUILD ?= sphinx-build
8-
SOURCEDIR = source
9-
BUILDDIR = build
10-
11-
# Put it first so that "make" without argument is like "make help".
12-
help:
13-
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14-
15-
.PHONY: help Makefile
16-
17-
# Catch-all target: route all unknown targets to Sphinx using the new
18-
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19-
%: Makefile
20-
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

docs/make.bat

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +0,0 @@
1-
@ECHO OFF
2-
3-
pushd %~dp0
4-
5-
REM Command file for Sphinx documentation
6-
7-
if "%SPHINXBUILD%" == "" (
8-
set SPHINXBUILD=sphinx-build
9-
)
10-
set SOURCEDIR=source
11-
set BUILDDIR=build
12-
13-
%SPHINXBUILD% >NUL 2>NUL
14-
if errorlevel 9009 (
15-
echo.
16-
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
17-
echo.installed, then set the SPHINXBUILD environment variable to point
18-
echo.to the full path of the 'sphinx-build' executable. Alternatively you
19-
echo.may add the Sphinx directory to PATH.
20-
echo.
21-
echo.If you don't have Sphinx installed, grab it from
22-
echo.https://www.sphinx-doc.org/
23-
exit /b 1
24-
)
25-
26-
if "%1" == "" goto help
27-
28-
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
29-
goto end
30-
31-
:help
32-
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
33-
34-
:end
35-
popd

docs/source/conf.py

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +0,0 @@
1-
# Configuration file for the Sphinx documentation builder.
2-
#
3-
# This file only contains a selection of the most common options. For a full
4-
# list see the documentation:
5-
# https://www.sphinx-doc.org/en/master/usage/configuration.html
6-
7-
# -- Path setup --------------------------------------------------------------
8-
9-
# If extensions (or modules to document with autodoc) are in another directory,
10-
# add these directories to sys.path here. If the directory is relative to the
11-
# documentation root, use os.path.abspath to make it absolute, like shown here.
12-
#
13-
import os
14-
import sys
15-
sys.path.insert(0, os.path.abspath('.'))
16-
17-
18-
# -- Project information -----------------------------------------------------
19-
20-
project = 'ITE'
21-
copyright = '2022, JE-Chen'
22-
author = 'JE-Chen'
23-
24-
# The full version, including alpha/beta/rc tags
25-
release = '0.0.1'
26-
27-
28-
# -- General configuration ---------------------------------------------------
29-
30-
# Add any Sphinx extension module names here, as strings. They can be
31-
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
32-
# ones.
33-
extensions = [
34-
]
35-
36-
# Add any paths that contain templates here, relative to this directory.
37-
templates_path = ['_templates']
38-
39-
# List of patterns, relative to source directory, that match files and
40-
# directories to ignore when looking for source files.
41-
# This pattern also affects html_static_path and html_extra_path.
42-
exclude_patterns = []
43-
44-
45-
# -- Options for HTML output -------------------------------------------------
46-
47-
# The theme to use for HTML and HTML Help pages. See the documentation for
48-
# a list of builtin themes.
49-
#
50-
html_theme = 'sphinx_rtd_theme'
51-
52-
# Add any paths that contain custom static files (such as style sheets) here,
53-
# relative to this directory. They are copied after the builtin static files,
54-
# so a file named "default.css" will overwrite the builtin "default.css".
55-
html_static_path = ['_static']
Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +0,0 @@
1-
====================================
2-
ITE APITestka Script Example
3-
====================================
4-
5-
6-
* Script using json and keyword
7-
* if you want to use python not keyword
8-
* https://apitestka.readthedocs.io/en/latest/?badge=latest
9-
10-
* this is a example
11-
.. code-block:: python
12-
13-
"""
14-
you can copy this into ite code editor area
15-
then you can use ite ApiTestka menu to execute this script
16-
"""
17-
[
18-
["test_api_method",
19-
{"http_method": "get", "test_url": "http://httpbin.org/get",
20-
"headers": {
21-
"x-requested-with": "XMLHttpRequest",
22-
"Content-Type": "application/x-www-form-urlencoded",
23-
"User-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36",
24-
}
25-
}
26-
],
27-
["test_api_method",
28-
{"http_method": "post", "test_url": "http://httpbin.org/post", "params": {"task": "new task"},
29-
"result_check_dict": {"status_code": 200}
30-
}
31-
]
32-
]

0 commit comments

Comments
 (0)