diff --git a/Sources/pyOpenRPA/Orchestrator/ServerSettings.py b/Sources/pyOpenRPA/Orchestrator/ServerSettings.py index 8bba61d8..aa870646 100644 --- a/Sources/pyOpenRPA/Orchestrator/ServerSettings.py +++ b/Sources/pyOpenRPA/Orchestrator/ServerSettings.py @@ -110,6 +110,7 @@ def SettingsUpdate(inGlobalConfiguration): {"Method":"GET", "URL": "/3rdParty/Handlebars/handlebars-v4.1.2.js", "MatchType": "EqualCase", "ResponseFilePath": os.path.join(lOrchestratorFolder, "..\\Resources\\Web\\Handlebars\\handlebars-v4.1.2.js"), "ResponseContentType": "application/javascript"}, {"Method": "GET", "URL": "/Monitor/ControlPanelDictGet", "MatchType": "Equal", "ResponseDefRequestGlobal": Monitor_ControlPanelDictGet, "ResponseContentType": "application/json"}, {"Method": "GET", "URL": "/GetScreenshot", "MatchType": "BeginWith", "ResponseDefRequestGlobal": GetScreenshot, "ResponseContentType": "image/png"}, + {"Method": "GET", "URL": "/pyOpenRPA_logo.png", "MatchType": "Equal", "ResponseFilePath": os.path.join(lOrchestratorFolder, "..\\Resources\\Web\\pyOpenRPA_logo.png"), "ResponseContentType": "image/png"}, {"Method": "GET", "URL": "/Orchestrator/RobotRDPActive/ControlPanelDictGet", "MatchType": "Equal","ResponseDefRequestGlobal": RobotRDPActive_ControlPanelDictGet, "ResponseContentType": "application/json"}, {"Method": "POST", "URL": "/Orchestrator/UserRoleHierarchyGet", "MatchType": "Equal","ResponseDefRequestGlobal": UserRoleHierarchyGet, "ResponseContentType": "application/json"} ] diff --git a/Sources/pyOpenRPA/Orchestrator/Web/Index.xhtml b/Sources/pyOpenRPA/Orchestrator/Web/Index.xhtml index 7e51d4c4..0dd8106d 100644 --- a/Sources/pyOpenRPA/Orchestrator/Web/Index.xhtml +++ b/Sources/pyOpenRPA/Orchestrator/Web/Index.xhtml @@ -705,16 +705,17 @@
-
-

OpenRPA

-
-
+
+ +     +

pyOpenRPA

+
by Ivan Maslov
+     +     +     +    

Orchestrator Web GUI

-
-
by Ivan Maslov
-
-
diff --git a/Sources/pyOpenRPA/Orchestrator/Web/favicon.ico b/Sources/pyOpenRPA/Orchestrator/Web/favicon.ico index 79e3b24a..867515cf 100644 Binary files a/Sources/pyOpenRPA/Orchestrator/Web/favicon.ico and b/Sources/pyOpenRPA/Orchestrator/Web/favicon.ico differ diff --git a/Sources/pyOpenRPA/Resources/Web/pyOpenRPA_logo.png b/Sources/pyOpenRPA/Resources/Web/pyOpenRPA_logo.png new file mode 100644 index 00000000..ab22929d Binary files /dev/null and b/Sources/pyOpenRPA/Resources/Web/pyOpenRPA_logo.png differ diff --git a/Sources/pyOpenRPA/Studio/Studio.py b/Sources/pyOpenRPA/Studio/Studio.py index 47dfdfa0..e4bf95b5 100644 --- a/Sources/pyOpenRPA/Studio/Studio.py +++ b/Sources/pyOpenRPA/Studio/Studio.py @@ -67,6 +67,9 @@ class testHTTPServer_RequestHandler(BaseHTTPRequestHandler): #Мост между файлом и http запросом (новый формат) if self.path == '/favicon.ico': self.SendResponseContentTypeFile('image/x-icon', os.path.join(lStudioFolder, "Web\\favicon.ico")) + #Мост между файлом и http запросом (новый формат) + if self.path == '/pyOpenRPA_logo.png': + self.SendResponseContentTypeFile('image/png', os.path.join(lStudioFolder, "..\\Resources\\Web\\pyOpenRPA_logo.png")) # POST def do_POST(self): #Restart studio diff --git a/Sources/pyOpenRPA/Studio/Web/Index.xhtml b/Sources/pyOpenRPA/Studio/Web/Index.xhtml index 780f81ac..25a26a55 100644 --- a/Sources/pyOpenRPA/Studio/Web/Index.xhtml +++ b/Sources/pyOpenRPA/Studio/Web/Index.xhtml @@ -856,25 +856,17 @@
-
-

Studio

- +
+ +     +

pyOpenRPA

+
by Ivan Maslov
+     +     +     +     +

Orchestrator Web GUI

-
-
- -
- - Backend: win32 or uia -
-
-

OpenRPA

-
by UnicodeLabs
-
-
diff --git a/Sources/pyOpenRPA/Studio/Web/favicon.ico b/Sources/pyOpenRPA/Studio/Web/favicon.ico index 79e3b24a..867515cf 100644 Binary files a/Sources/pyOpenRPA/Studio/Web/favicon.ico and b/Sources/pyOpenRPA/Studio/Web/favicon.ico differ