Skip to content

Commit 84e736d

Browse files
committed
documentation update
1 parent 311137e commit 84e736d

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ These are the basic steps for building your first PEB-based serverless applicati
6060

6161
These are the basic steps for building your first PEB-based application using a local Perl server:
6262

63-
* **1.** Write your Perl server-based application.
63+
* **1.** Write your Perl server application.
6464
* **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.
6666

6767
## Design Objectives
6868
* **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
7878
* [Perl scripts implementing local servers can be started](./doc/SETTINGS.md#starting-local-server)
7979
* [Any version of Perl 5 can be used.](./doc/REQUIREMENTS.md#runtime-requirements)
8080
* [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)
8383
* [Optional warning for unsaved data in HTML forms](./doc/SETTINGS.md#html-page-api)
8484
* [Optional Perl scripts error logging](./doc/CONSTANTS.md#log-files-directory)
8585

@@ -103,7 +103,7 @@ These are the basic steps for building your first PEB-based application using a
103103
* Windows builds of PEB do no support [interactive Perl Scripts](./doc/SETTINGS.md#interactive-perl-scripts).
104104

105105
## History
106-
PEB was started as a simple GUI for personal database applications in 2013 by Dimitar D. Mitov.
106+
PEB was started in 2013 by Dimitar D. Mitov as a simple GUI for personal database applications.
107107

108108
## [Thanks and Credits](CREDITS.md)
109109

doc/SETTINGS.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ perl_script.stdoutFunction = function (stdout) {
9595
}
9696
```
9797

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:
9999

100100
* **scriptRelativePath**
101101
``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
191191
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.
192192

193193
## 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:
195196

196197
```json
197198
{

0 commit comments

Comments
 (0)