From 5f112e7d0464d98282443b78870cdccabe42aae9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 14:47:35 +0200 Subject: Adding upstream version 1:1.1.2. Signed-off-by: Daniel Baumann --- application/views/scripts/certificate/index.phtml | 6 +++ application/views/scripts/certificates/index.phtml | 14 +++++++ application/views/scripts/chain/index.phtml | 8 ++++ application/views/scripts/config/backend.phtml | 6 +++ application/views/scripts/dashboard/index.phtml | 13 ++++++ application/views/scripts/jobs/index.phtml | 46 ++++++++++++++++++++++ application/views/scripts/missing-resource.phtml | 12 ++++++ application/views/scripts/simple-form.phtml | 6 +++ application/views/scripts/sni/index.phtml | 46 ++++++++++++++++++++++ application/views/scripts/usage/index.phtml | 14 +++++++ 10 files changed, 171 insertions(+) create mode 100644 application/views/scripts/certificate/index.phtml create mode 100644 application/views/scripts/certificates/index.phtml create mode 100644 application/views/scripts/chain/index.phtml create mode 100644 application/views/scripts/config/backend.phtml create mode 100644 application/views/scripts/dashboard/index.phtml create mode 100644 application/views/scripts/jobs/index.phtml create mode 100644 application/views/scripts/missing-resource.phtml create mode 100644 application/views/scripts/simple-form.phtml create mode 100644 application/views/scripts/sni/index.phtml create mode 100644 application/views/scripts/usage/index.phtml (limited to 'application/views') diff --git a/application/views/scripts/certificate/index.phtml b/application/views/scripts/certificate/index.phtml new file mode 100644 index 0000000..08cfadb --- /dev/null +++ b/application/views/scripts/certificate/index.phtml @@ -0,0 +1,6 @@ +
+ +
+
+ render() ?> +
diff --git a/application/views/scripts/certificates/index.phtml b/application/views/scripts/certificates/index.phtml new file mode 100644 index 0000000..47eb2b5 --- /dev/null +++ b/application/views/scripts/certificates/index.phtml @@ -0,0 +1,14 @@ +compact): ?> +
+ tabs ?> + paginator ?> +
+ limiter ?> + sortBox ?> +
+ filterEditor ?> +
+ +
+ render() ?> +
diff --git a/application/views/scripts/chain/index.phtml b/application/views/scripts/chain/index.phtml new file mode 100644 index 0000000..ffa3872 --- /dev/null +++ b/application/views/scripts/chain/index.phtml @@ -0,0 +1,8 @@ +compact): ?> +
+ tabs ?> +
+ +
+ render() ?> +
diff --git a/application/views/scripts/config/backend.phtml b/application/views/scripts/config/backend.phtml new file mode 100644 index 0000000..78e312e --- /dev/null +++ b/application/views/scripts/config/backend.phtml @@ -0,0 +1,6 @@ +
+ +
+
+ +
diff --git a/application/views/scripts/dashboard/index.phtml b/application/views/scripts/dashboard/index.phtml new file mode 100644 index 0000000..3b6ec0f --- /dev/null +++ b/application/views/scripts/dashboard/index.phtml @@ -0,0 +1,13 @@ +compact): ?> +
+ tabs ?> +
+ +
+
+ render() ?> + render() ?> + render() ?> + render() ?> +
+
diff --git a/application/views/scripts/jobs/index.phtml b/application/views/scripts/jobs/index.phtml new file mode 100644 index 0000000..e86c3a6 --- /dev/null +++ b/application/views/scripts/jobs/index.phtml @@ -0,0 +1,46 @@ +
+ +
+
+
+ qlink( + $this->translate('Create a New Job') , + 'x509/jobs/new', + null, + [ + 'class' => 'button-link', + 'data-base-target' => '_next', + 'icon' => 'plus', + 'title' => $this->translate('Create a New Job') + ] + ) ?> +
+hasResult()): ?> +

escape($this->translate('No jobs configured yet.')) ?>

+ + + + + + + + + + + + + + + +
escape($this->translate('Name')) ?>
qlink($job->name, 'x509/jobs/update', ['name' => $job->name]) ?>qlink( + null, + 'x509/jobs/remove', + array('name' => $job->name), + array( + 'class' => 'action-link', + 'icon' => 'cancel', + 'title' => $this->translate('Remove this job') + ) + ) ?>
+ +
diff --git a/application/views/scripts/missing-resource.phtml b/application/views/scripts/missing-resource.phtml new file mode 100644 index 0000000..fcfa255 --- /dev/null +++ b/application/views/scripts/missing-resource.phtml @@ -0,0 +1,12 @@ +
+ tabs ?> +
+
+

translate('Database not configured') ?>

+

translate('You seem to not have configured a database resource yet. Please create one %1$shere%3$s and then set it in this %2$smodule\'s configuration%3$s.'), + '', + '', + '' + ) ?>

+
diff --git a/application/views/scripts/simple-form.phtml b/application/views/scripts/simple-form.phtml new file mode 100644 index 0000000..9bcba74 --- /dev/null +++ b/application/views/scripts/simple-form.phtml @@ -0,0 +1,6 @@ +
+ +
+
+ create()->setTitle(null) // @TODO(el): create() has to be called because the UserForm is setting the title there ?> +
diff --git a/application/views/scripts/sni/index.phtml b/application/views/scripts/sni/index.phtml new file mode 100644 index 0000000..09c4de8 --- /dev/null +++ b/application/views/scripts/sni/index.phtml @@ -0,0 +1,46 @@ +
+ +
+
+
+ qlink( + $this->translate('Create a New SNI Map') , + 'x509/sni/new', + null, + [ + 'class' => 'button-link', + 'data-base-target' => '_next', + 'icon' => 'plus', + 'title' => $this->translate('Create a New SNI Map') + ] + ) ?> +
+ hasResult()): ?> +

escape($this->translate('No SNI maps configured yet.')) ?>

+ + + + + + + + + + + + + + + +
escape($this->translate('IP')) ?>
qlink($data->ip, 'x509/sni/update', ['ip' => $data->ip]) ?>qlink( + null, + 'x509/sni/remove', + array('ip' => $data->ip), + array( + 'class' => 'action-link', + 'icon' => 'cancel', + 'title' => $this->translate('Remove this SNI map') + ) + ) ?>
+ +
diff --git a/application/views/scripts/usage/index.phtml b/application/views/scripts/usage/index.phtml new file mode 100644 index 0000000..a0eed09 --- /dev/null +++ b/application/views/scripts/usage/index.phtml @@ -0,0 +1,14 @@ +compact): ?> +
+ tabs ?> + paginator ?> +
+ limiter ?> + sortBox ?> +
+ filterEditor ?> +
+ +
+ render() ?> +
-- cgit v1.2.3