Skip to content

Commit 54e6fc4

Browse files
author
Michael Tröger
committed
no message
1 parent 0f8922a commit 54e6fc4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1219
-1715
lines changed

.github/workflows/style.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Check Style
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
style:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Setup PHP
10+
uses: shivammathur/setup-php@v2
11+
with:
12+
php-version: 7.4
13+
- name: Checkout module
14+
uses: actions/checkout@master
15+
- name: Check style
16+
uses: Nall-chan/action-style@master

.github/workflows/tests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Run Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout module
10+
uses: actions/checkout@master
11+
with:
12+
submodules: true
13+
- name: Run tests
14+
uses: symcon/action-tests@master

.gitmodules

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[submodule "tests/stubs"]
2+
path = tests/stubs
3+
url = https://github.com/Nall-chan/SymconStubs
4+
[submodule ".vscode"]
5+
path = .vscode
6+
url = https://github.com/Nall-chan/SymconVSCTasks.git
7+
[submodule ".style"]
8+
path = .style
9+
url = https://github.com/Nall-chan/StylePHP

.style

Submodule .style added at db94317

.styleci.yml

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

.vscode

Submodule .vscode added at 672a096

ClientSplitter/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ClientSplitter (IPSNetwork)
1+
# ClientSplitter (Network)
22

33
Implementierung eines Splitters für ServerSocket und WebSocket-Server.
44

@@ -31,7 +31,7 @@ Implementierung eines Splitters für ServerSocket und WebSocket-Server.
3131
## 3. Installation
3232

3333
Über das Modul-Control folgende URL hinzufügen.
34-
`git://github.com/Nall-chan/IPSNetwork.git`
34+
`git://github.com/Nall-chan/Network.git`
3535

3636
**Bei kommerzieller Nutzung (z.B. als Errichter oder Integrator) wenden Sie sich bitte an den Autor.**
3737

@@ -59,15 +59,15 @@ Implementierung eines Splitters für ServerSocket und WebSocket-Server.
5959

6060
GUID des Modules (z.B. wenn Instanz per PHP angelegt werden soll):
6161

62-
| Instanz | GUID |
63-
| :--------------: | :------------------------------------: |
64-
| Client Splitter | {7A107D38-75ED-47CB-83F9-F41228CAEEFA} |
62+
| Instanz | GUID |
63+
| :-------------: | :------------------------------------: |
64+
| Client Splitter | {7A107D38-75ED-47CB-83F9-F41228CAEEFA} |
6565

6666
Eigenschaften des 'Client Splitter' für Get/SetProperty-Befehle:
6767

68-
| Eigenschaft | Typ | Standardwert | Funktion |
69-
| :-----------: | :-----: | :----------: | :-----------------------: |
70-
| ClientIP | string | | Die IP-Adresse des Client |
68+
| Eigenschaft | Typ | Standardwert | Funktion |
69+
| :---------: | :----: | :----------: | :-----------------------: |
70+
| ClientIP | string | | Die IP-Adresse des Client |
7171

7272

7373
## 8. Datenaustausch
@@ -79,7 +79,7 @@ Kompatibel zum Interface Virtual-IO.
7979
**Changlog:**
8080

8181
Version 1.1:
82-
- In IPSNetwork-Library integriert
82+
- In Network-Library integriert
8383

8484
Version 1.0:
8585
- Erstes offizielles Release

ClientSplitter/form.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
2-
"elements":
3-
[
4-
{
5-
"name": "ClientIP",
6-
"type": "ValidationTextBox",
7-
"caption": "Client IP:"
8-
}
9-
]
2+
"elements": [
3+
{
4+
"name": "ClientIP",
5+
"type": "ValidationTextBox",
6+
"caption": "Client IP:"
7+
}
8+
]
109
}

ClientSplitter/module.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@
33
"name": "ClientSplitter",
44
"type": 2,
55
"vendor": "",
6-
"aliases": ["Client Splitter"],
7-
"parentRequirements": ["{C8792760-65CF-4C53-B5C7-A30FCC84FEFE}"],
8-
"childRequirements": ["{018EF6B5-AB94-40C6-AA53-46943E824ACF}"],
9-
"implemented": ["{7A1272A4-CBDB-46EF-BFC6-DCF4A53D2FC7}", "{79827379-F36E-4ADA-8A95-5F8D1DC92FA9}"],
10-
"prefix": "WSC"
6+
"aliases": [
7+
"Client Splitter"
8+
],
9+
"parentRequirements": [
10+
"{C8792760-65CF-4C53-B5C7-A30FCC84FEFE}"
11+
],
12+
"childRequirements": [
13+
"{018EF6B5-AB94-40C6-AA53-46943E824ACF}"
14+
],
15+
"implemented": [
16+
"{7A1272A4-CBDB-46EF-BFC6-DCF4A53D2FC7}",
17+
"{79827379-F36E-4ADA-8A95-5F8D1DC92FA9}"
18+
],
19+
"prefix": "WSC",
20+
"url": "https://github.com/Nall-chan/Network"
1121
}

ClientSplitter/module.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?php
22

3+
declare(strict_types=1);
4+
35
require_once __DIR__ . '/../libs/NetworkTraits.php';
46

57
/*

0 commit comments

Comments
 (0)