You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -60,9 +60,9 @@ These are the basic steps for building your first PEB-based serverless applicati
60
60
61
61
These are the basic steps for building your first PEB-based application using a local Perl server:
62
62
63
-
***1.** Write your Perl server-based application.
63
+
***1.** Write your Perl server application.
64
64
***2.** Write [local-server.json](./doc/SETTINGS.md#starting-local-server) for your local Perl server.
65
-
***3.** Write an appropriate HTML interface connected to your server-based application by traditional web connection technologies - POST or GET requests, WebSocket etc.
65
+
***3.** Write an appropriate HTML interface and connect it to your server application by traditional web communication protocols.
66
66
67
67
## Design Objectives
68
68
***1. Easy and beautiful graphical user interface for Perl 5 desktop applications**
@@ -78,8 +78,8 @@ These are the basic steps for building your first PEB-based application using a
78
78
*[Perl scripts implementing local servers can be started](./doc/SETTINGS.md#starting-local-server)
79
79
*[Any version of Perl 5 can be used.](./doc/REQUIREMENTS.md#runtime-requirements)
80
80
*[Single file or multiple files, new filename, existing or new directory can be selected by user.](./doc/SETTINGS.md#selecting-files-and-folders)
81
-
*[Custom dialog and context menu labels](./doc/SETTINGS.md#html-page-api)
82
-
*[Custom window and message box icon](./doc/CONSTANTS.md#icon)
81
+
*[Custom labels for all JavaScript popup boxes and context menus](./doc/SETTINGS.md#html-page-api)
82
+
*[Custom icon for the main window and all dialog boxes](./doc/CONSTANTS.md#icon)
83
83
*[Optional warning for unsaved data in HTML forms](./doc/SETTINGS.md#html-page-api)
Copy file name to clipboardExpand all lines: doc/SETTINGS.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ perl_script.stdoutFunction = function (stdout) {
95
95
}
96
96
```
97
97
98
-
A JavaScript settings object for a Perl script run by PEB may have the following properties:
98
+
A JavaScript settings object for a Perl script run by PEB has the following properties:
99
99
100
100
***scriptRelativePath**
101
101
``String`` for the relative path of a Perl script run by PEB
@@ -191,7 +191,8 @@ The [index.htm](https://github.com/ddmitov/perl-executing-browser/blob/master/re
191
191
The [interactive.pl](https://github.com/ddmitov/perl-executing-browser/blob/master/resources/app/perl/interactive.pl) script of the demo package is an example of a Perl interactive script for PEB.
192
192
193
193
## Starting Local Server
194
-
A [Mojolicious](http://mojolicious.org/) application or other local Perl server can be started by PEB provided that a ``{PEB_app_directory}/local-server.json`` file is found instead of ``{PEB_app_directory}/index.html`` with the following structure:
194
+
A [Mojolicious](http://mojolicious.org/) application or other local Perl server can be started by PEB provided that a
195
+
``{PEB_app_directory}/local-server.json`` file is found instead of ``{PEB_app_directory}/index.html`` with the following structure:
0 commit comments