mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
Merge branch 'develop' into 'l10n_develop'
# Conflicts: # translations/fediplan.pl.yaml # translations/fediplan.sv.yaml # translations/fediplan.uk.yaml
This commit is contained in:
commit
99410f8a83
53 changed files with 29020 additions and 18498 deletions
56
Dockerfile
Normal file
56
Dockerfile
Normal file
|
@ -0,0 +1,56 @@
|
|||
FROM composer as composer
|
||||
|
||||
COPY --chown=nobody . /app
|
||||
RUN composer install --optimize-autoloader --no-interaction --no-progress
|
||||
|
||||
FROM alpine:3.19
|
||||
|
||||
# Install packages and remove default server definition
|
||||
RUN apk add --no-cache \
|
||||
curl \
|
||||
nginx \
|
||||
php83 \
|
||||
php83-ctype \
|
||||
php83-curl \
|
||||
php83-dom \
|
||||
php83-fpm \
|
||||
php83-intl \
|
||||
php83-mbstring \
|
||||
php83-session \
|
||||
php83-tokenizer \
|
||||
php83-simplexml \
|
||||
supervisor
|
||||
|
||||
# Configure nginx - http
|
||||
COPY docker_config/nginx.conf /etc/nginx/nginx.conf
|
||||
# Configure nginx - default server
|
||||
COPY docker_config/conf.d /etc/nginx/conf.d/
|
||||
|
||||
# Configure PHP-FPM
|
||||
ENV PHP_INI_DIR /etc/php83
|
||||
COPY docker_config/fpm-pool.conf ${PHP_INI_DIR}/php-fpm.d/www.conf
|
||||
COPY docker_config/php.ini ${PHP_INI_DIR}/conf.d/custom.ini
|
||||
|
||||
# Configure supervisord
|
||||
COPY docker_config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
||||
|
||||
# Add application
|
||||
COPY --chown=nobody --from=composer /app/ /var/www/fediplan/
|
||||
|
||||
# Make sure files/folders needed by the processes are accessable when they run under the nobody user
|
||||
RUN chown -R nobody.nobody /var/www/fediplan /run /var/lib/nginx /var/log/nginx
|
||||
|
||||
# Create symlink for php
|
||||
RUN ln -s /usr/bin/php83 /usr/bin/php
|
||||
|
||||
# Switch to use a non-root user from here on
|
||||
USER nobody
|
||||
|
||||
# Expose the port nginx is reachable on
|
||||
EXPOSE 8080
|
||||
|
||||
# Let supervisord start nginx & php-fpm
|
||||
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
|
||||
|
||||
# Configure a healthcheck to validate that everything is up&running
|
||||
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1
|
64
README.md
64
README.md
|
@ -1,25 +1,63 @@
|
|||
**If you want to contribute to a _translation_:**[](https://crowdin.com/project/fediplan)
|
||||
|
||||
### How to install FediPlan
|
||||
## How to install FediPlan
|
||||
|
||||
**1 - Clone the repository**
|
||||
There are 2 methods to run Fediplan
|
||||
1. Build and run Docker image
|
||||
2. Manual install
|
||||
|
||||
**2 - Install vendors:**
|
||||
### 1. Build and run Docker image
|
||||
|
||||
#### Required programs
|
||||
- `git`
|
||||
- `docker`
|
||||
|
||||
#### Steps
|
||||
|
||||
1. Clone this repo<br>
|
||||
`git clone https://framagit.org/tom79/fediplan.git fediplan`
|
||||
|
||||
2. Build the Docker image<br>
|
||||
`docker build -t fediplan fediplan`
|
||||
|
||||
3. Run the docker image<br>
|
||||
`docker run fediplan`
|
||||
|
||||
4. Find the IP<br>
|
||||
|
||||
- Find 'CONTAINER ID' of fediplan's container<br>
|
||||
`docker ps | grep fediplan`
|
||||
|
||||
- Find IP address of the container<br>
|
||||
`docker inspect <CONTAINER ID> | grep IPAddress`
|
||||
|
||||
5. Open _<ip_address>:8080_ in your web browser
|
||||
|
||||
### 2. Manual install
|
||||
|
||||
#### Required programs
|
||||
- `git`
|
||||
- `php 8.3` and some extensions
|
||||
- `composer` ([getcomposer.org/download](https://getcomposer.org/download/))
|
||||
|
||||
#### Steps
|
||||
|
||||
1. Clone this repo<br>
|
||||
`git clone https://framagit.org/tom79/fediplan.git fediplan`
|
||||
|
||||
2. Change directory to the cloned repo<br>
|
||||
`cd fediplan`
|
||||
|
||||
3. Install vendors<br>
|
||||
`composer install -o`
|
||||
|
||||
PS: You need to install `composer`, just use:
|
||||
4. Point your server software to '_public_' folder
|
||||
|
||||
`apt install composer`
|
||||
### Support My work
|
||||
[fedilab.app/page/donations](https://fedilab.app/page/donations/)
|
||||
|
||||
Or you can do that with the following commands:
|
||||
|
||||
```
|
||||
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
||||
php -r "if (hash_file('sha384', 'composer-setup.php') === '48e3236262b34d30969dca3c37281b3b4bbe3221bda826ac6a9a62d6444cdb0dcd0615698a5cbe587c3f0fe57a54d8f5') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
|
||||
php composer-setup.php
|
||||
php -r "unlink('composer-setup.php');"
|
||||
```
|
||||
### Credits
|
||||
Docker configurations are based on [github.com/TrafeX/docker-php-nginx](https://github.com/TrafeX/docker-php-nginx)
|
||||
|
||||
See: [Download Composer](https://getcomposer.org/download/)
|
||||
|
||||
|
|
24
composer.lock
generated
24
composer.lock
generated
|
@ -5809,16 +5809,16 @@
|
|||
},
|
||||
{
|
||||
"name": "twig/extra-bundle",
|
||||
"version": "v3.9.3",
|
||||
"version": "v3.10.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/twigphp/twig-extra-bundle.git",
|
||||
"reference": "ef6869adf1fdab66f7e495771a7ba01496ffc0d5"
|
||||
"reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/ef6869adf1fdab66f7e495771a7ba01496ffc0d5",
|
||||
"reference": "ef6869adf1fdab66f7e495771a7ba01496ffc0d5",
|
||||
"url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/cdc6e23aeb7f4953c1039568c3439aab60c56454",
|
||||
"reference": "cdc6e23aeb7f4953c1039568c3439aab60c56454",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -5867,7 +5867,7 @@
|
|||
"twig"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.9.3"
|
||||
"source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.10.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
|
@ -5879,20 +5879,20 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-04-18T09:24:21+00:00"
|
||||
"time": "2024-05-11T07:35:57+00:00"
|
||||
},
|
||||
{
|
||||
"name": "twig/twig",
|
||||
"version": "v3.9.3",
|
||||
"version": "v3.10.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/twigphp/Twig.git",
|
||||
"reference": "a842d75fed59cdbcbd3a3ad7fb9eb768fc350d58"
|
||||
"reference": "7aaed0b8311a557cc8c4047a71fd03153a00e755"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/twigphp/Twig/zipball/a842d75fed59cdbcbd3a3ad7fb9eb768fc350d58",
|
||||
"reference": "a842d75fed59cdbcbd3a3ad7fb9eb768fc350d58",
|
||||
"url": "https://api.github.com/repos/twigphp/Twig/zipball/7aaed0b8311a557cc8c4047a71fd03153a00e755",
|
||||
"reference": "7aaed0b8311a557cc8c4047a71fd03153a00e755",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
@ -5946,7 +5946,7 @@
|
|||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/twigphp/Twig/issues",
|
||||
"source": "https://github.com/twigphp/Twig/tree/v3.9.3"
|
||||
"source": "https://github.com/twigphp/Twig/tree/v3.10.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
|
@ -5958,7 +5958,7 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-04-18T11:59:33+00:00"
|
||||
"time": "2024-05-14T06:04:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "webmozart/assert",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# Put parameters here that don't need to change on each machine where the app is deployed
|
||||
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
|
||||
parameters:
|
||||
allowed_language: "fr|en|nl|pt-PT|pt-BR|de|ar|it|ca|ja"
|
||||
allowed_language: "fr|en|nl|pt-PT|pt-BR|de|ar|it|ca|ja|pl|ru|uk"
|
||||
languages: "(%allowed_language%)?"
|
||||
services:
|
||||
# default configuration for services in *this* file
|
||||
|
|
56
docker_config/conf.d/default.conf
Normal file
56
docker_config/conf.d/default.conf
Normal file
|
@ -0,0 +1,56 @@
|
|||
# Default server definition
|
||||
server {
|
||||
listen [::]:8080 default_server;
|
||||
listen 8080 default_server;
|
||||
server_name _;
|
||||
|
||||
sendfile off;
|
||||
tcp_nodelay on;
|
||||
absolute_redirect off;
|
||||
|
||||
root /var/www/fediplan/public;
|
||||
index index.php index.html;
|
||||
|
||||
location / {
|
||||
# First attempt to serve request as file, then
|
||||
# as directory, then fall back to index.php
|
||||
try_files $uri $uri/ /index.php?q=$uri&$args;
|
||||
}
|
||||
|
||||
# Redirect server error pages to the static page /50x.html
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root /var/lib/nginx/html;
|
||||
}
|
||||
|
||||
# Pass the PHP scripts to PHP-FPM listening on php-fpm.sock
|
||||
location ~ \.php$ {
|
||||
try_files $uri =404;
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
fastcgi_pass unix:/run/php-fpm.sock;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
}
|
||||
|
||||
# Set the cache-control headers on assets to cache for 5 days
|
||||
location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
|
||||
expires 5d;
|
||||
}
|
||||
|
||||
# Deny access to . files, for security
|
||||
location ~ /\. {
|
||||
log_not_found off;
|
||||
deny all;
|
||||
}
|
||||
|
||||
# Allow fpm ping and status from localhost
|
||||
location ~ ^/(fpm-status|fpm-ping)$ {
|
||||
access_log off;
|
||||
allow 127.0.0.1;
|
||||
deny all;
|
||||
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||||
include fastcgi_params;
|
||||
fastcgi_pass unix:/run/php-fpm.sock;
|
||||
}
|
||||
}
|
56
docker_config/fpm-pool.conf
Normal file
56
docker_config/fpm-pool.conf
Normal file
|
@ -0,0 +1,56 @@
|
|||
[global]
|
||||
; Log to stderr
|
||||
error_log = /dev/stderr
|
||||
|
||||
[www]
|
||||
; The address on which to accept FastCGI requests.
|
||||
; Valid syntaxes are:
|
||||
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on
|
||||
; a specific port;
|
||||
; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on
|
||||
; a specific port;
|
||||
; 'port' - to listen on a TCP socket to all addresses
|
||||
; (IPv6 and IPv4-mapped) on a specific port;
|
||||
; '/path/to/unix/socket' - to listen on a unix socket.
|
||||
; Note: This value is mandatory.
|
||||
listen = /run/php-fpm.sock
|
||||
|
||||
; Enable status page
|
||||
pm.status_path = /fpm-status
|
||||
|
||||
; Ondemand process manager
|
||||
pm = ondemand
|
||||
|
||||
; The number of child processes to be created when pm is set to 'static' and the
|
||||
; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
|
||||
; This value sets the limit on the number of simultaneous requests that will be
|
||||
; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
|
||||
; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
|
||||
; CGI. The below defaults are based on a server without much resources. Don't
|
||||
; forget to tweak pm.* to fit your needs.
|
||||
; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
|
||||
; Note: This value is mandatory.
|
||||
pm.max_children = 100
|
||||
|
||||
; The number of seconds after which an idle process will be killed.
|
||||
; Note: Used only when pm is set to 'ondemand'
|
||||
; Default Value: 10s
|
||||
pm.process_idle_timeout = 10s;
|
||||
|
||||
; The number of requests each child process should execute before respawning.
|
||||
; This can be useful to work around memory leaks in 3rd party libraries. For
|
||||
; endless request processing specify '0'. Equivalent to PHP_FCGI_MAX_REQUESTS.
|
||||
; Default Value: 0
|
||||
pm.max_requests = 1000
|
||||
|
||||
; Make sure the FPM workers can reach the environment variables for configuration
|
||||
clear_env = no
|
||||
|
||||
; Catch output from PHP
|
||||
catch_workers_output = yes
|
||||
|
||||
; Remove the 'child 10 said into stderr' prefix in the log and only show the actual message
|
||||
decorate_workers_output = no
|
||||
|
||||
; Enable ping page to use in healthcheck
|
||||
ping.path = /fpm-ping
|
47
docker_config/nginx.conf
Normal file
47
docker_config/nginx.conf
Normal file
|
@ -0,0 +1,47 @@
|
|||
worker_processes auto;
|
||||
error_log stderr warn;
|
||||
pid /run/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include mime.types;
|
||||
# Threat files with a unknown filetype as binary
|
||||
default_type application/octet-stream;
|
||||
|
||||
# Define custom log format to include reponse times
|
||||
log_format main_timed '$remote_addr - $remote_user [$time_local] "$request" '
|
||||
'$status $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for" '
|
||||
'$request_time $upstream_response_time $pipe $upstream_cache_status';
|
||||
|
||||
access_log /dev/stdout main_timed;
|
||||
error_log /dev/stderr notice;
|
||||
|
||||
keepalive_timeout 65;
|
||||
|
||||
# Write temporary files to /tmp so they can be created as a non-privileged user
|
||||
client_body_temp_path /tmp/client_temp;
|
||||
proxy_temp_path /tmp/proxy_temp_path;
|
||||
fastcgi_temp_path /tmp/fastcgi_temp;
|
||||
uwsgi_temp_path /tmp/uwsgi_temp;
|
||||
scgi_temp_path /tmp/scgi_temp;
|
||||
|
||||
# Hide headers that identify the server to prevent information leakage
|
||||
proxy_hide_header X-Powered-By;
|
||||
fastcgi_hide_header X-Powered-By;
|
||||
server_tokens off;
|
||||
|
||||
# Enable gzip compression by default
|
||||
gzip on;
|
||||
gzip_proxied any;
|
||||
# Based on CloudFlare's recommended settings
|
||||
gzip_types text/richtext text/plain text/css text/x-script text/x-component text/x-java-source text/x-markdown application/javascript application/x-javascript text/javascript text/js image/x-icon image/vnd.microsoft.icon application/x-perl application/x-httpd-cgi text/xml application/xml application/rss+xml application/vnd.api+json application/x-protobuf application/json multipart/bag multipart/mixed application/xhtml+xml font/ttf font/otf font/x-woff image/svg+xml application/vnd.ms-fontobject application/ttf application/x-ttf application/otf application/x-otf application/truetype application/opentype application/x-opentype application/font-woff application/eot application/font application/font-sfnt application/wasm application/javascript-binast application/manifest+json application/ld+json application/graphql+json application/geo+json;
|
||||
gzip_vary on;
|
||||
gzip_disable "msie6";
|
||||
|
||||
# Include server configs
|
||||
include /etc/nginx/conf.d/*.conf;
|
||||
}
|
3
docker_config/php.ini
Normal file
3
docker_config/php.ini
Normal file
|
@ -0,0 +1,3 @@
|
|||
[Date]
|
||||
date.timezone="UTC"
|
||||
expose_php= Off
|
23
docker_config/supervisord.conf
Normal file
23
docker_config/supervisord.conf
Normal file
|
@ -0,0 +1,23 @@
|
|||
[supervisord]
|
||||
nodaemon=true
|
||||
logfile=/dev/null
|
||||
logfile_maxbytes=0
|
||||
pidfile=/run/supervisord.pid
|
||||
|
||||
[program:php-fpm]
|
||||
command=php-fpm83 -F
|
||||
stdout_logfile=/dev/stdout
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/dev/stderr
|
||||
stderr_logfile_maxbytes=0
|
||||
autorestart=false
|
||||
startretries=0
|
||||
|
||||
[program:nginx]
|
||||
command=nginx -g 'daemon off;'
|
||||
stdout_logfile=/dev/stdout
|
||||
stdout_logfile_maxbytes=0
|
||||
stderr_logfile=/dev/stderr
|
||||
stderr_logfile_maxbytes=0
|
||||
autorestart=false
|
||||
startretries=0
|
4969
public/css/bootstrap-grid.css
vendored
4969
public/css/bootstrap-grid.css
vendored
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
9
public/css/bootstrap-grid.min.css
vendored
9
public/css/bootstrap-grid.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
516
public/css/bootstrap-reboot.css
vendored
516
public/css/bootstrap-reboot.css
vendored
|
@ -1,57 +1,268 @@
|
|||
/*!
|
||||
* Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2018 The Bootstrap Authors
|
||||
* Copyright 2011-2018 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
* Bootstrap Reboot v5.3.3 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2024 The Bootstrap Authors
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
*/
|
||||
:root,
|
||||
[data-bs-theme=light] {
|
||||
--bs-blue: #0d6efd;
|
||||
--bs-indigo: #6610f2;
|
||||
--bs-purple: #6f42c1;
|
||||
--bs-pink: #d63384;
|
||||
--bs-red: #dc3545;
|
||||
--bs-orange: #fd7e14;
|
||||
--bs-yellow: #ffc107;
|
||||
--bs-green: #198754;
|
||||
--bs-teal: #20c997;
|
||||
--bs-cyan: #0dcaf0;
|
||||
--bs-black: #000;
|
||||
--bs-white: #fff;
|
||||
--bs-gray: #6c757d;
|
||||
--bs-gray-dark: #343a40;
|
||||
--bs-gray-100: #f8f9fa;
|
||||
--bs-gray-200: #e9ecef;
|
||||
--bs-gray-300: #dee2e6;
|
||||
--bs-gray-400: #ced4da;
|
||||
--bs-gray-500: #adb5bd;
|
||||
--bs-gray-600: #6c757d;
|
||||
--bs-gray-700: #495057;
|
||||
--bs-gray-800: #343a40;
|
||||
--bs-gray-900: #212529;
|
||||
--bs-primary: #0d6efd;
|
||||
--bs-secondary: #6c757d;
|
||||
--bs-success: #198754;
|
||||
--bs-info: #0dcaf0;
|
||||
--bs-warning: #ffc107;
|
||||
--bs-danger: #dc3545;
|
||||
--bs-light: #f8f9fa;
|
||||
--bs-dark: #212529;
|
||||
--bs-primary-rgb: 13, 110, 253;
|
||||
--bs-secondary-rgb: 108, 117, 125;
|
||||
--bs-success-rgb: 25, 135, 84;
|
||||
--bs-info-rgb: 13, 202, 240;
|
||||
--bs-warning-rgb: 255, 193, 7;
|
||||
--bs-danger-rgb: 220, 53, 69;
|
||||
--bs-light-rgb: 248, 249, 250;
|
||||
--bs-dark-rgb: 33, 37, 41;
|
||||
--bs-primary-text-emphasis: #052c65;
|
||||
--bs-secondary-text-emphasis: #2b2f32;
|
||||
--bs-success-text-emphasis: #0a3622;
|
||||
--bs-info-text-emphasis: #055160;
|
||||
--bs-warning-text-emphasis: #664d03;
|
||||
--bs-danger-text-emphasis: #58151c;
|
||||
--bs-light-text-emphasis: #495057;
|
||||
--bs-dark-text-emphasis: #495057;
|
||||
--bs-primary-bg-subtle: #cfe2ff;
|
||||
--bs-secondary-bg-subtle: #e2e3e5;
|
||||
--bs-success-bg-subtle: #d1e7dd;
|
||||
--bs-info-bg-subtle: #cff4fc;
|
||||
--bs-warning-bg-subtle: #fff3cd;
|
||||
--bs-danger-bg-subtle: #f8d7da;
|
||||
--bs-light-bg-subtle: #fcfcfd;
|
||||
--bs-dark-bg-subtle: #ced4da;
|
||||
--bs-primary-border-subtle: #9ec5fe;
|
||||
--bs-secondary-border-subtle: #c4c8cb;
|
||||
--bs-success-border-subtle: #a3cfbb;
|
||||
--bs-info-border-subtle: #9eeaf9;
|
||||
--bs-warning-border-subtle: #ffe69c;
|
||||
--bs-danger-border-subtle: #f1aeb5;
|
||||
--bs-light-border-subtle: #e9ecef;
|
||||
--bs-dark-border-subtle: #adb5bd;
|
||||
--bs-white-rgb: 255, 255, 255;
|
||||
--bs-black-rgb: 0, 0, 0;
|
||||
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||
--bs-body-font-size: 1rem;
|
||||
--bs-body-font-weight: 400;
|
||||
--bs-body-line-height: 1.5;
|
||||
--bs-body-color: #212529;
|
||||
--bs-body-color-rgb: 33, 37, 41;
|
||||
--bs-body-bg: #fff;
|
||||
--bs-body-bg-rgb: 255, 255, 255;
|
||||
--bs-emphasis-color: #000;
|
||||
--bs-emphasis-color-rgb: 0, 0, 0;
|
||||
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
||||
--bs-secondary-color-rgb: 33, 37, 41;
|
||||
--bs-secondary-bg: #e9ecef;
|
||||
--bs-secondary-bg-rgb: 233, 236, 239;
|
||||
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
||||
--bs-tertiary-color-rgb: 33, 37, 41;
|
||||
--bs-tertiary-bg: #f8f9fa;
|
||||
--bs-tertiary-bg-rgb: 248, 249, 250;
|
||||
--bs-heading-color: inherit;
|
||||
--bs-link-color: #0d6efd;
|
||||
--bs-link-color-rgb: 13, 110, 253;
|
||||
--bs-link-decoration: underline;
|
||||
--bs-link-hover-color: #0a58ca;
|
||||
--bs-link-hover-color-rgb: 10, 88, 202;
|
||||
--bs-code-color: #d63384;
|
||||
--bs-highlight-color: #212529;
|
||||
--bs-highlight-bg: #fff3cd;
|
||||
--bs-border-width: 1px;
|
||||
--bs-border-style: solid;
|
||||
--bs-border-color: #dee2e6;
|
||||
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
||||
--bs-border-radius: 0.375rem;
|
||||
--bs-border-radius-sm: 0.25rem;
|
||||
--bs-border-radius-lg: 0.5rem;
|
||||
--bs-border-radius-xl: 1rem;
|
||||
--bs-border-radius-xxl: 2rem;
|
||||
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
||||
--bs-border-radius-pill: 50rem;
|
||||
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
||||
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
||||
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||
--bs-focus-ring-width: 0.25rem;
|
||||
--bs-focus-ring-opacity: 0.25;
|
||||
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
||||
--bs-form-valid-color: #198754;
|
||||
--bs-form-valid-border-color: #198754;
|
||||
--bs-form-invalid-color: #dc3545;
|
||||
--bs-form-invalid-border-color: #dc3545;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] {
|
||||
color-scheme: dark;
|
||||
--bs-body-color: #dee2e6;
|
||||
--bs-body-color-rgb: 222, 226, 230;
|
||||
--bs-body-bg: #212529;
|
||||
--bs-body-bg-rgb: 33, 37, 41;
|
||||
--bs-emphasis-color: #fff;
|
||||
--bs-emphasis-color-rgb: 255, 255, 255;
|
||||
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
||||
--bs-secondary-color-rgb: 222, 226, 230;
|
||||
--bs-secondary-bg: #343a40;
|
||||
--bs-secondary-bg-rgb: 52, 58, 64;
|
||||
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
||||
--bs-tertiary-color-rgb: 222, 226, 230;
|
||||
--bs-tertiary-bg: #2b3035;
|
||||
--bs-tertiary-bg-rgb: 43, 48, 53;
|
||||
--bs-primary-text-emphasis: #6ea8fe;
|
||||
--bs-secondary-text-emphasis: #a7acb1;
|
||||
--bs-success-text-emphasis: #75b798;
|
||||
--bs-info-text-emphasis: #6edff6;
|
||||
--bs-warning-text-emphasis: #ffda6a;
|
||||
--bs-danger-text-emphasis: #ea868f;
|
||||
--bs-light-text-emphasis: #f8f9fa;
|
||||
--bs-dark-text-emphasis: #dee2e6;
|
||||
--bs-primary-bg-subtle: #031633;
|
||||
--bs-secondary-bg-subtle: #161719;
|
||||
--bs-success-bg-subtle: #051b11;
|
||||
--bs-info-bg-subtle: #032830;
|
||||
--bs-warning-bg-subtle: #332701;
|
||||
--bs-danger-bg-subtle: #2c0b0e;
|
||||
--bs-light-bg-subtle: #343a40;
|
||||
--bs-dark-bg-subtle: #1a1d20;
|
||||
--bs-primary-border-subtle: #084298;
|
||||
--bs-secondary-border-subtle: #41464b;
|
||||
--bs-success-border-subtle: #0f5132;
|
||||
--bs-info-border-subtle: #087990;
|
||||
--bs-warning-border-subtle: #997404;
|
||||
--bs-danger-border-subtle: #842029;
|
||||
--bs-light-border-subtle: #495057;
|
||||
--bs-dark-border-subtle: #343a40;
|
||||
--bs-heading-color: inherit;
|
||||
--bs-link-color: #6ea8fe;
|
||||
--bs-link-hover-color: #8bb9fe;
|
||||
--bs-link-color-rgb: 110, 168, 254;
|
||||
--bs-link-hover-color-rgb: 139, 185, 254;
|
||||
--bs-code-color: #e685b5;
|
||||
--bs-highlight-color: #dee2e6;
|
||||
--bs-highlight-bg: #664d03;
|
||||
--bs-border-color: #495057;
|
||||
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
||||
--bs-form-valid-color: #75b798;
|
||||
--bs-form-valid-border-color: #75b798;
|
||||
--bs-form-invalid-color: #ea868f;
|
||||
--bs-form-invalid-border-color: #ea868f;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
line-height: 1.15;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-ms-overflow-style: scrollbar;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
@-ms-viewport {
|
||||
width: device-width;
|
||||
}
|
||||
|
||||
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||||
display: block;
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
line-height: 1.5;
|
||||
color: #212529;
|
||||
text-align: left;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
[tabindex="-1"]:focus {
|
||||
outline: 0 !important;
|
||||
font-family: var(--bs-body-font-family);
|
||||
font-size: var(--bs-body-font-size);
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: var(--bs-body-color);
|
||||
text-align: var(--bs-body-text-align);
|
||||
background-color: var(--bs-body-bg);
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
hr {
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
overflow: visible;
|
||||
margin: 1rem 0;
|
||||
color: inherit;
|
||||
border: 0;
|
||||
border-top: var(--bs-border-width) solid;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
h6, h5, h4, h3, h2, h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
color: var(--bs-heading-color);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: calc(1.375rem + 1.5vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: calc(1.3rem + 0.6vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
|
@ -59,13 +270,12 @@ p {
|
|||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title],
|
||||
abbr[data-original-title] {
|
||||
text-decoration: underline;
|
||||
abbr[title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
border-bottom: 0;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
address {
|
||||
|
@ -74,6 +284,11 @@ address {
|
|||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
|
@ -93,7 +308,7 @@ dt {
|
|||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: .5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
|
@ -101,118 +316,139 @@ blockquote {
|
|||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
mark {
|
||||
padding: 0.1875em;
|
||||
color: var(--bs-highlight-color);
|
||||
background-color: var(--bs-highlight-bg);
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 75%;
|
||||
font-size: 0.75em;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -.25em;
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -.5em;
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #007bff;
|
||||
text-decoration: none;
|
||||
background-color: transparent;
|
||||
-webkit-text-decoration-skip: objects;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #0056b3;
|
||||
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]) {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
a:hover {
|
||||
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:not([href]):not([tabindex]):focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
font-family: var(--bs-font-monospace);
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
-ms-overflow-style: scrollbar;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
pre code {
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.875em;
|
||||
color: var(--bs-code-color);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
kbd {
|
||||
padding: 0.1875rem 0.375rem;
|
||||
font-size: 0.875em;
|
||||
color: var(--bs-body-bg);
|
||||
background-color: var(--bs-body-color);
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
kbd kbd {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
img,
|
||||
svg {
|
||||
overflow: hidden;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
caption-side: bottom;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0.75rem;
|
||||
color: #6c757d;
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
color: var(--bs-secondary-color);
|
||||
text-align: left;
|
||||
caption-side: bottom;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
text-align: -webkit-match-parent;
|
||||
}
|
||||
|
||||
thead,
|
||||
tbody,
|
||||
tfoot,
|
||||
tr,
|
||||
td,
|
||||
th {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus {
|
||||
outline: 1px dotted;
|
||||
outline: 5px auto -webkit-focus-ring-color;
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input,
|
||||
|
@ -226,46 +462,45 @@ textarea {
|
|||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
input {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
button,
|
||||
html [type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
[role=button] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
select {
|
||||
word-wrap: normal;
|
||||
}
|
||||
select:disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
button,
|
||||
[type=button],
|
||||
[type=reset],
|
||||
[type=submit] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
button:not(:disabled),
|
||||
[type=button]:not(:disabled),
|
||||
[type=reset]:not(:disabled),
|
||||
[type=submit]:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="date"],
|
||||
input[type="time"],
|
||||
input[type="datetime-local"],
|
||||
input[type="month"] {
|
||||
-webkit-appearance: listbox;
|
||||
}
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
|
@ -277,34 +512,55 @@ fieldset {
|
|||
}
|
||||
|
||||
legend {
|
||||
display: block;
|
||||
float: left;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: .5rem;
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
white-space: normal;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
legend {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
legend + * {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
::-webkit-datetime-edit-fields-wrapper,
|
||||
::-webkit-datetime-edit-text,
|
||||
::-webkit-datetime-edit-minute,
|
||||
::-webkit-datetime-edit-hour-field,
|
||||
::-webkit-datetime-edit-day-field,
|
||||
::-webkit-datetime-edit-month-field,
|
||||
::-webkit-datetime-edit-year-field {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
::-webkit-inner-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type="search"] {
|
||||
[type=search] {
|
||||
-webkit-appearance: textfield;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
/* rtl:raw:
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
*/
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
[type="search"]::-webkit-search-cancel-button,
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
::-webkit-color-swatch-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
|
@ -312,20 +568,30 @@ progress {
|
|||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
::file-selector-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
template {
|
||||
display: none;
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
File diff suppressed because one or more lines are too long
10
public/css/bootstrap-reboot.min.css
vendored
10
public/css/bootstrap-reboot.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
14
public/css/bootstrap-toggle.min.css
vendored
Normal file
14
public/css/bootstrap-toggle.min.css
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
/* Copyright Notice
|
||||
* bootstrap5-toggle v5.1.0
|
||||
* https://palcarazm.github.io/bootstrap5-toggle/
|
||||
* @author 2011-2014 Min Hur (https://github.com/minhur)
|
||||
* @author 2018-2019 Brent Ely (https://github.com/gitbrent)
|
||||
* @author 2022 Pablo Alcaraz Martínez (https://github.com/palcarazm)
|
||||
* @funding GitHub Sponsors
|
||||
* @see https://github.com/sponsors/palcarazm
|
||||
* @license MIT
|
||||
* @see https://github.com/palcarazm/bootstrap5-toggle/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
.btn-group-xs>.btn,.btn-xs{padding:.35rem .4rem .25rem .4rem;font-size:.875rem;line-height:.5;border-radius:.2rem}.checkbox label .toggle,.checkbox-inline .toggle{margin-left:-1.25rem;margin-right:.35rem}.toggle{position:relative;overflow:hidden}.toggle:focus>.toggle-group>.btn,.toggle:hover>.toggle-group>.btn{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.toggle:focus>.toggle-group>.toggle-handle,.toggle:hover>.toggle-group>.toggle-handle{background-color:var(--bs-light);opacity:.5}.toggle>input[type=checkbox]{display:none}.toggle>.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;user-select:none;-moz-user-select:none;-webkit-user-select:none}.toggle>.toggle-group>span{cursor:pointer}.toggle.off>.toggle-group{left:-100%}.toggle.indeterminate>.toggle-group{left:-50%}.toggle>.toggle-group>.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0}.toggle>.toggle-group>.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0;box-shadow:none}.toggle>.toggle-group>.toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:0;border-width:0 1px;background-color:var(--bs-light);border-color:var(--bs-light)}.input-group .toggle>.toggle-group>.toggle-off,.input-group .toggle>.toggle-group>.toggle-on{position:absolute}.toggle:not(:hover):not(:focus).btn-outline-primary>.toggle-group>.toggle-handle{background-color:var(--bs-primary);border-color:var(--bs-primary)}.toggle:not(:hover):not(:focus).btn-outline-secondary>.toggle-group>.toggle-handle{background-color:var(--bs-secondary);border-color:var(--bs-secondary)}.toggle:not(:hover):not(:focus).btn-outline-success>.toggle-group>.toggle-handle{background-color:var(--bs-success);border-color:var(--bs-success)}.toggle:not(:hover):not(:focus).btn-outline-danger>.toggle-group>.toggle-handle{background-color:var(--bs-danger);border-color:var(--bs-danger)}.toggle:not(:hover):not(:focus).btn-outline-warning>.toggle-group>.toggle-handle{background-color:var(--bs-warning);border-color:var(--bs-warning)}.toggle:not(:hover):not(:focus).btn-outline-info>.toggle-group>.toggle-handle{background-color:var(--bs-info);border-color:var(--bs-info)}.toggle:not(:hover):not(:focus).btn-outline-light>.toggle-group>.toggle-handle{background-color:var(--bs-light);border-color:var(--bs-light)}.toggle:not(:hover):not(:focus).btn-outline-dark>.toggle-group>.toggle-handle{background-color:var(--bs-dark);border-color:var(--bs-dark)}.toggle.btn{min-width:3.7rem;min-height:2.15rem}.toggle>.toggle-group>.toggle-on.btn{padding-right:1.5rem}.toggle>.toggle-group>.toggle-off.btn{padding-left:1.5rem}.toggle.btn-lg{min-width:5rem;min-height:2.815rem}.toggle>.toggle-group>.toggle-on.btn-lg{padding-right:2rem}.toggle>.toggle-group>.toggle-off.btn-lg{padding-left:2rem}.toggle>.toggle-group>.toggle-handle.btn-lg{width:2.5rem}.toggle.btn-sm{min-width:3.125rem;min-height:1.938rem}.toggle>.toggle-group>.toggle-on.btn-sm{padding-right:1rem}.toggle>.toggle-group>.toggle-off.btn-sm{padding-left:1rem}.toggle.btn-xs{min-width:2.19rem;min-height:1.375rem}.toggle>.toggle-group>.toggle-on.btn-xs{padding-right:.8rem}.toggle>.toggle-group>.toggle-off.btn-xs{padding-left:.8rem}
|
||||
/*# sourceMappingURL=bootstrap5-toggle.min.css.map */
|
16439
public/css/bootstrap.css
vendored
16439
public/css/bootstrap.css
vendored
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
11
public/css/bootstrap.min.css
vendored
11
public/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
42
public/css/bootstrap4-toggle.min.css
vendored
42
public/css/bootstrap4-toggle.min.css
vendored
|
@ -1,42 +0,0 @@
|
|||
/*\
|
||||
|*| ========================================================================
|
||||
|*| Bootstrap Toggle: bootstrap4-toggle.css v3.5.0
|
||||
|*| https://gitbrent.github.io/bootstrap-toggle/
|
||||
|*| ========================================================================
|
||||
|*| Copyright 2018-2019 Brent Ely
|
||||
|*| Licensed under MIT
|
||||
|*| ========================================================================
|
||||
\*/
|
||||
.btn-group-xs>.btn,.btn-xs{padding:.35rem .4rem .25rem;font-size:.875rem;line-height:.5;border-radius:.2rem}
|
||||
.checkbox label .toggle,.checkbox-inline .toggle{margin-left:-1.25rem;margin-right:.35rem}
|
||||
.toggle{position:relative;overflow:hidden}
|
||||
.toggle.btn.btn-light,.toggle.btn.btn-outline-light{border-color:rgba(0,0,0,.15)}
|
||||
.toggle input[type=checkbox]{display:none}
|
||||
.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left .35s;-webkit-transition:left .35s;-moz-user-select:none;-webkit-user-select:none}
|
||||
.toggle-group label,.toggle-group span{cursor:pointer}
|
||||
.toggle.off .toggle-group{left:-100%}
|
||||
.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0}
|
||||
.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0;box-shadow:none}
|
||||
.toggle-handle{position:relative;margin:0 auto;padding-top:0;padding-bottom:0;height:100%;width:0;border-width:0 1px;background-color:#fff}
|
||||
.toggle.btn-outline-primary .toggle-handle{background-color:var(--primary);border-color:var(--primary)}
|
||||
.toggle.btn-outline-secondary .toggle-handle{background-color:var(--secondary);border-color:var(--secondary)}
|
||||
.toggle.btn-outline-success .toggle-handle{background-color:var(--success);border-color:var(--success)}
|
||||
.toggle.btn-outline-danger .toggle-handle{background-color:var(--danger);border-color:var(--danger)}
|
||||
.toggle.btn-outline-warning .toggle-handle{background-color:var(--warning);border-color:var(--warning)}
|
||||
.toggle.btn-outline-info .toggle-handle{background-color:var(--info);border-color:var(--info)}
|
||||
.toggle.btn-outline-light .toggle-handle{background-color:var(--light);border-color:var(--light)}
|
||||
.toggle.btn-outline-dark .toggle-handle{background-color:var(--dark);border-color:var(--dark)}
|
||||
.toggle[class*=btn-outline]:hover .toggle-handle{background-color:var(--light);opacity:.5}
|
||||
.toggle.btn{min-width:3.7rem;min-height:2.15rem}
|
||||
.toggle-on.btn{padding-right:1.5rem}
|
||||
.toggle-off.btn{padding-left:1.5rem}
|
||||
.toggle.btn-lg{min-width:5rem;min-height:2.815rem}
|
||||
.toggle-on.btn-lg{padding-right:2rem}
|
||||
.toggle-off.btn-lg{padding-left:2rem}
|
||||
.toggle-handle.btn-lg{width:2.5rem}
|
||||
.toggle.btn-sm{min-width:3.125rem;min-height:1.938rem}
|
||||
.toggle-on.btn-sm{padding-right:1rem}
|
||||
.toggle-off.btn-sm{padding-left:1rem}
|
||||
.toggle.btn-xs{min-width:2.19rem;min-height:1.375rem}
|
||||
.toggle-on.btn-xs{padding-right:.8rem}
|
||||
.toggle-off.btn-xs{padding-left:.8rem}
|
14
public/js/bootstrap-toggle.min.js
vendored
Normal file
14
public/js/bootstrap-toggle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
12229
public/js/bootstrap.bundle.js
vendored
12229
public/js/bootstrap.bundle.js
vendored
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
8
public/js/bootstrap.bundle.min.js
vendored
8
public/js/bootstrap.bundle.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4447
public/js/bootstrap.esm.js
vendored
Normal file
4447
public/js/bootstrap.esm.js
vendored
Normal file
File diff suppressed because it is too large
Load diff
1
public/js/bootstrap.esm.js.map
Normal file
1
public/js/bootstrap.esm.js.map
Normal file
File diff suppressed because one or more lines are too long
7
public/js/bootstrap.esm.min.js
vendored
Normal file
7
public/js/bootstrap.esm.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
public/js/bootstrap.esm.min.js.map
Normal file
1
public/js/bootstrap.esm.min.js.map
Normal file
File diff suppressed because one or more lines are too long
8020
public/js/bootstrap.js
vendored
8020
public/js/bootstrap.js
vendored
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
8
public/js/bootstrap.min.js
vendored
8
public/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
11
public/js/bootstrap4-toggle.min.js
vendored
11
public/js/bootstrap4-toggle.min.js
vendored
|
@ -1,11 +0,0 @@
|
|||
/*\
|
||||
|*| ========================================================================
|
||||
|*| Bootstrap Toggle: bootstrap4-toggle.js v3.5.0
|
||||
|*| https://gitbrent.github.io/bootstrap-toggle/
|
||||
|*| ========================================================================
|
||||
|*| Copyright 2018-2019 Brent Ely
|
||||
|*| Licensed under MIT
|
||||
|*| ========================================================================
|
||||
\*/
|
||||
+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.toggle"),f="object"==typeof b&&b;e||d.data("bs.toggle",e=new c(this,f)),"string"==typeof b&&e[b]&&e[b]()})}var c=function(b,c){this.$element=a(b),this.options=a.extend({},this.defaults(),c),this.render()};c.VERSION="3.5.0",c.DEFAULTS={on:"On",off:"Off",onstyle:"primary",offstyle:"light",size:"normal",style:"",width:null,height:null},c.prototype.defaults=function(){return{on:this.$element.attr("data-on")||c.DEFAULTS.on,off:this.$element.attr("data-off")||c.DEFAULTS.off,onstyle:this.$element.attr("data-onstyle")||c.DEFAULTS.onstyle,offstyle:this.$element.attr("data-offstyle")||c.DEFAULTS.offstyle,size:this.$element.attr("data-size")||c.DEFAULTS.size,style:this.$element.attr("data-style")||c.DEFAULTS.style,width:this.$element.attr("data-width")||c.DEFAULTS.width,height:this.$element.attr("data-height")||c.DEFAULTS.height}},c.prototype.render=function(){this._onstyle="btn-"+this.options.onstyle,this._offstyle="btn-"+this.options.offstyle;var b="large"===this.options.size||"lg"===this.options.size?"btn-lg":"small"===this.options.size||"sm"===this.options.size?"btn-sm":"mini"===this.options.size||"xs"===this.options.size?"btn-xs":"",c=a('<label class="btn">').html(this.options.on).addClass(this._onstyle+" "+b),d=a('<label class="btn">').html(this.options.off).addClass(this._offstyle+" "+b),e=a('<span class="toggle-handle btn btn-light">').addClass(b),f=a('<div class="toggle-group">').append(c,d,e),g=a('<div class="toggle btn" data-toggle="toggle" role="button">').addClass(this.$element.prop("checked")?this._onstyle:this._offstyle+" off").addClass(b).addClass(this.options.style);this.$element.wrap(g),a.extend(this,{$toggle:this.$element.parent(),$toggleOn:c,$toggleOff:d,$toggleGroup:f}),this.$toggle.append(f);var h=this.options.width||Math.max(c.outerWidth(),d.outerWidth())+e.outerWidth()/2,i=this.options.height||Math.max(c.outerHeight(),d.outerHeight());c.addClass("toggle-on"),d.addClass("toggle-off"),this.$toggle.css({width:h,height:i}),this.options.height&&(c.css("line-height",c.height()+"px"),d.css("line-height",d.height()+"px")),this.update(!0),this.trigger(!0)},c.prototype.toggle=function(){this.$element.prop("checked")?this.off():this.on()},c.prototype.on=function(a){if(this.$element.prop("disabled"))return!1;this.$toggle.removeClass(this._offstyle+" off").addClass(this._onstyle),this.$element.prop("checked",!0),a||this.trigger()},c.prototype.off=function(a){if(this.$element.prop("disabled"))return!1;this.$toggle.removeClass(this._onstyle).addClass(this._offstyle+" off"),this.$element.prop("checked",!1),a||this.trigger()},c.prototype.enable=function(){this.$toggle.removeAttr("disabled"),this.$element.prop("disabled",!1)},c.prototype.disable=function(){this.$toggle.attr("disabled","disabled"),this.$element.prop("disabled",!0)},c.prototype.update=function(a){this.$element.prop("disabled")?this.disable():this.enable(),this.$element.prop("checked")?this.on(a):this.off(a)},c.prototype.trigger=function(b){this.$element.off("change.bs.toggle"),b||this.$element.change(),this.$element.on("change.bs.toggle",a.proxy(function(){this.update()},this))},c.prototype.destroy=function(){this.$element.off("change.bs.toggle"),this.$toggleGroup.remove(),this.$element.removeData("bs.toggle"),this.$element.unwrap()};var d=a.fn.bootstrapToggle;a.fn.bootstrapToggle=b,a.fn.bootstrapToggle.Constructor=c,a.fn.toggle.noConflict=function(){return a.fn.bootstrapToggle=d,this},a(function(){a("input[type=checkbox][data-toggle^=toggle]").bootstrapToggle()}),a(document).on("click.bs.toggle","div[data-toggle^=toggle]",function(b){a(this).find("input[type=checkbox]").bootstrapToggle("toggle"),b.preventDefault()})}(jQuery);
|
||||
//# sourceMappingURL=bootstrap4-toggle.min.js.map
|
|
@ -254,8 +254,9 @@ class FediPlanController extends AbstractController
|
|||
$form = $this->createForm(ComposeType::class, $compose, ['user' => $this->getUser()]);
|
||||
}
|
||||
}
|
||||
$user = $this->getUser();
|
||||
/** @var $user MastodonAccount */
|
||||
$user = $this->getUser();
|
||||
|
||||
|
||||
return $this->render("fediplan/schedule.html.twig", [
|
||||
'form' => $form->createView(),
|
||||
|
@ -284,7 +285,7 @@ class FediPlanController extends AbstractController
|
|||
)]
|
||||
public function loadMoreAction(Mastodon_api $mastodon_api, string $max_id = null): JsonResponse
|
||||
{
|
||||
|
||||
/** @var $user MastodonAccount */
|
||||
$user = $this->getUser();
|
||||
$mastodon_api->set_url("https://" . $user->getInstance());
|
||||
$token = explode(" ", $user->getToken())[1];
|
||||
|
@ -295,7 +296,7 @@ class FediPlanController extends AbstractController
|
|||
$params['max_id'] = $max_id;
|
||||
}
|
||||
$scheduled_reply = $mastodon_api->get_scheduled($params);
|
||||
$statuses = $mastodon_api->getScheduledStatuses($scheduled_reply['response'], $this->getUser());
|
||||
$statuses = $mastodon_api->getScheduledStatuses($scheduled_reply['response'], $user);
|
||||
$data['max_id'] = $scheduled_reply['max_id'];
|
||||
$data['html'] = $this->renderView('fediplan/Ajax/layout.html.twig', ['statuses' => $statuses]);
|
||||
return new JsonResponse($data);
|
||||
|
|
|
@ -286,52 +286,21 @@ class Curl
|
|||
*
|
||||
* @param string $url The url to make the post request
|
||||
* @param array $data Post data to pass to the url
|
||||
* @param bool $payload
|
||||
* @return self
|
||||
*/
|
||||
public function post($url, $data = array(), $payload = false)
|
||||
public function post($url, $data = array())
|
||||
{
|
||||
if (!empty($data)) {
|
||||
if ($payload === false) {
|
||||
// Check if the url has not already been modified
|
||||
$url .= strpos($url, '?') !== false ? '&' : '?';
|
||||
$url .= http_build_query($data);
|
||||
} else {
|
||||
$this->preparePayload($data);
|
||||
}
|
||||
}
|
||||
|
||||
$fields_string = http_build_query($data);
|
||||
$payload = json_encode( $data );
|
||||
$this->setOpt(CURLOPT_URL, $url);
|
||||
$this->setOpt(CURLOPT_RETURNTRANSFER, true);
|
||||
$this->setOpt(CURLOPT_POST, true);
|
||||
$this->setOpt(CURLOPT_CUSTOMREQUEST, 'POST');
|
||||
$this->setOpt(CURLOPT_POSTFIELDS, $payload);
|
||||
$this->exec();
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|object|string $data
|
||||
*/
|
||||
protected function preparePayload($data)
|
||||
{
|
||||
$this->setOpt(CURLOPT_POST, true);
|
||||
|
||||
if (is_array($data) || is_object($data)) {
|
||||
$skip = false;
|
||||
foreach ($data as $key => $value) {
|
||||
// If a value is an instance of CurlFile skip the http_build_query
|
||||
// see issue https://github.com/php-mod/curl/issues/46
|
||||
// suggestion from: https://stackoverflow.com/a/36603038/4611030
|
||||
if ($value instanceof CurlFile) {
|
||||
$skip = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$skip) {
|
||||
$data = http_build_query($data);
|
||||
}
|
||||
}
|
||||
|
||||
$this->setOpt(CURLOPT_POSTFIELDS, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Make a put request with optional data.
|
||||
|
@ -340,21 +309,16 @@ class Curl
|
|||
*
|
||||
* @param string $url The url to make the put request
|
||||
* @param array $data Optional data to pass to the $url
|
||||
* @param bool $payload Whether the data should be transmitted trough payload or as get parameters of the string
|
||||
* @return self
|
||||
*/
|
||||
public function put($url, $data = array(), $payload = false)
|
||||
public function put($url, $data = array())
|
||||
{
|
||||
if (!empty($data)) {
|
||||
if ($payload === false) {
|
||||
$url .= '?' . http_build_query($data);
|
||||
} else {
|
||||
$this->preparePayload($data);
|
||||
}
|
||||
}
|
||||
$fields_string = http_build_query($data);
|
||||
|
||||
$this->setOpt(CURLOPT_URL, $url);
|
||||
$this->setOpt(CURLOPT_POST, 1);
|
||||
$this->setOpt(CURLOPT_CUSTOMREQUEST, 'PUT');
|
||||
$this->setOpt(CURLOPT_POSTFIELDS, $fields_string);
|
||||
$this->exec();
|
||||
return $this;
|
||||
}
|
||||
|
@ -366,21 +330,16 @@ class Curl
|
|||
*
|
||||
* @param string $url The url to make the patch request
|
||||
* @param array $data Optional data to pass to the $url
|
||||
* @param bool $payload Whether the data should be transmitted trough payload or as get parameters of the string
|
||||
* @return self
|
||||
*/
|
||||
public function patch($url, $data = array(), $payload = false)
|
||||
public function patch($url, $data = array())
|
||||
{
|
||||
if (!empty($data)) {
|
||||
if ($payload === false) {
|
||||
$url .= '?' . http_build_query($data);
|
||||
} else {
|
||||
$this->preparePayload($data);
|
||||
}
|
||||
}
|
||||
$fields_string = http_build_query($data);
|
||||
|
||||
$this->setOpt(CURLOPT_URL, $url);
|
||||
$this->setOpt(CURLOPT_POST, 1);
|
||||
$this->setOpt(CURLOPT_CUSTOMREQUEST, 'PATCH');
|
||||
$this->setOpt(CURLOPT_POSTFIELDS, $fields_string);
|
||||
$this->exec();
|
||||
return $this;
|
||||
}
|
||||
|
@ -392,21 +351,16 @@ class Curl
|
|||
*
|
||||
* @param string $url The url to make the delete request
|
||||
* @param array $data Optional data to pass to the $url
|
||||
* @param bool $payload Whether the data should be transmitted trough payload or as get parameters of the string
|
||||
* @return self
|
||||
*/
|
||||
public function delete($url, $data = array(), $payload = false)
|
||||
public function delete($url, $data = array())
|
||||
{
|
||||
if (!empty($data)) {
|
||||
if ($payload === false) {
|
||||
$url .= '?' . http_build_query($data);
|
||||
} else {
|
||||
$this->preparePayload($data);
|
||||
}
|
||||
}
|
||||
$fields_string = http_build_query($data);
|
||||
|
||||
$this->setOpt(CURLOPT_URL, $url);
|
||||
$this->setOpt(CURLOPT_POST, 1);
|
||||
$this->setOpt(CURLOPT_CUSTOMREQUEST, 'DELETE');
|
||||
$this->setOpt(CURLOPT_POSTFIELDS, $fields_string);
|
||||
$this->exec();
|
||||
return $this;
|
||||
}
|
||||
|
|
|
@ -195,65 +195,27 @@ class Mastodon_api
|
|||
$data = array();
|
||||
|
||||
// set USERAGENT
|
||||
if (isset($_SERVER['HTTP_USER_AGENT'])) {
|
||||
$parameters['headers']['User-Agent'] = $_SERVER['HTTP_USER_AGENT'];
|
||||
} else {
|
||||
// default IE11
|
||||
$parameters['headers']['User-Agent'] = 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko';
|
||||
}
|
||||
$parameters['headers']['User-Agent'] = 'Mozilla/5.0 (X11; Linux i686; rv:126.0) Gecko/20100101 Firefox/126.0';
|
||||
|
||||
$curl = new Curl();
|
||||
$response = null;
|
||||
|
||||
if (isset($parameters["method"]) && $parameters['method'] == "POST") {
|
||||
$parameters['headers']['content-type'] = 'application/json';
|
||||
}
|
||||
foreach ($parameters['headers'] as $key => $value) {
|
||||
$curl->setHeader($key, $value);
|
||||
}
|
||||
|
||||
//Special treatment for sending media when editing profile
|
||||
if (isset($parameters['body']['media'])) {
|
||||
$fields = [$parameters['body']['media']['name'] => new CURLFile($parameters['body']['media']['path'], $parameters['body']['media']['mimetype'], $parameters['body']['media']['filename'])];
|
||||
$curl->setOpt(CURLOPT_POSTFIELDS, $fields);
|
||||
}
|
||||
|
||||
// Since Curl does not let us upload media_ids as we wish, we had to pass it through the url, directly.
|
||||
if (isset($parameters['body']['media_ids'])) {
|
||||
$url .= strpos($url, '?') !== false ? '' : '?';
|
||||
|
||||
foreach ($parameters['body']['media_ids'] as $key => $value) {
|
||||
$url .= 'media_ids[]=' . (int)$value . '&';
|
||||
}
|
||||
$url = substr($url, 0, -1);
|
||||
|
||||
unset($parameters['body']['media_ids']);
|
||||
}
|
||||
if (isset($parameters['body']['poll']['options'])) {
|
||||
$url .= strpos($url, '?') !== false ? '' : '?';
|
||||
foreach ($parameters['body']['poll']['options'] as $key => $value) {
|
||||
$url .= 'poll[options][]=' . urlencode($value) . '&';
|
||||
}
|
||||
$url = substr($url, 0, -1);
|
||||
|
||||
unset($parameters['body']['poll']['options']);
|
||||
}
|
||||
//Special treatment for filtering notifications
|
||||
if (isset($parameters['body']['exclude_types[]']) && $parameters['method'] == "GET") {
|
||||
$url .= "?";
|
||||
foreach ($parameters['body']['exclude_types[]'] as $key => $value) {
|
||||
$url .= "exclude_types[]=" . $value . "&";
|
||||
}
|
||||
if (isset($parameters['body']['max_id']))
|
||||
$url .= "&max_id=" . $parameters['body']['max_id'];
|
||||
$parameters['body'] = [];
|
||||
}
|
||||
if (isset($parameters["method"]) && $parameters['method'] == "POST")
|
||||
if (isset($parameters["method"]) && $parameters['method'] == "POST") {
|
||||
$response = $curl->post($url, $parameters['body']);
|
||||
else if (isset($parameters["method"]) && $parameters['method'] == "GET")
|
||||
}else if (isset($parameters["method"]) && $parameters['method'] == "GET") {
|
||||
$response = $curl->get($url, $parameters['body']);
|
||||
else if (isset($parameters["method"]) && $parameters['method'] == "PUT")
|
||||
}else if (isset($parameters["method"]) && $parameters['method'] == "PUT") {
|
||||
$response = $curl->put($url, $parameters['body']);
|
||||
else if (isset($parameters["method"]) && $parameters['method'] == "PATCH")
|
||||
}else if (isset($parameters["method"]) && $parameters['method'] == "PATCH") {
|
||||
$response = $curl->patch($url, $parameters['body']);
|
||||
else if (isset($parameters["method"]) && $parameters['method'] == "DELETE")
|
||||
}else if (isset($parameters["method"]) && $parameters['method'] == "DELETE") {
|
||||
$response = $curl->delete($url);
|
||||
}
|
||||
|
||||
$min_id = null;
|
||||
$max_id = null;
|
||||
|
@ -288,7 +250,7 @@ class Mastodon_api
|
|||
$data['error'] = $response->error;
|
||||
$data['error_code'] = $response->error_code;
|
||||
$data['error_message'] = $response->error_message;
|
||||
if ($response->response)
|
||||
if ($response->response && isset(json_decode($response->response, true)['error']))
|
||||
$data['error_message'] = json_decode($response->response, true)['error'];
|
||||
} else {
|
||||
$data['response_headers'] = $response->response_headers;
|
||||
|
@ -438,7 +400,6 @@ class Mastodon_api
|
|||
}
|
||||
$params['body'] = $parameters;
|
||||
$url = $this->mastodon_url . $url;
|
||||
echo $url;
|
||||
return $this->get_content_remote($url, $params);
|
||||
}
|
||||
|
||||
|
@ -1314,6 +1275,16 @@ class Mastodon_api
|
|||
$Polls->setMinExpiration($instantParams['configuration']['polls']['min_expiration']);
|
||||
$Polls->setMaxExpiration($instantParams['configuration']['polls']['max_expiration']);
|
||||
}
|
||||
} else if (isset($instantParams['pleroma'])) {
|
||||
if (isset($instantParams['poll_limits'])) {
|
||||
$Polls->setMaxOptions($instantParams['poll_limits']['max_options']);
|
||||
$Polls->setMaxCharactersPerOption($instantParams['poll_limits']['max_option_chars']);
|
||||
$Polls->setMinExpiration($instantParams['poll_limits']['min_expiration']);
|
||||
$Polls->setMaxExpiration($instantParams['poll_limits']['max_expiration']);
|
||||
}
|
||||
if(isset($instantParams['max_toot_chars'])) {
|
||||
$Statuses->setMaxCharacters($instantParams['max_toot_chars']);
|
||||
}
|
||||
}
|
||||
$Configuration->setStatuses($Statuses);
|
||||
$Configuration->setMediaAttachments($MediaAttachments);
|
||||
|
@ -1585,6 +1556,8 @@ class Mastodon_api
|
|||
$attachment->setMeta(serialize($_m['meta']));
|
||||
if ($_m['description'])
|
||||
$attachment->setDescription($_m['description']);
|
||||
else
|
||||
$attachment->setDescription("");
|
||||
$media_attachments[] = $attachment;
|
||||
}
|
||||
$status->setMediaAttachments($media_attachments);
|
||||
|
|
|
@ -66,6 +66,14 @@ class AppExtension extends AbstractExtension
|
|||
return "Català";
|
||||
case "ar":
|
||||
return "العربية";
|
||||
case "ja":
|
||||
return "日本語";
|
||||
case "pl":
|
||||
return "Polski";
|
||||
case "ru":
|
||||
return "Русский";
|
||||
case "uk":
|
||||
return "Украïна";
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% trans_default_domain 'fediplan' %}
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="{{ app.request.locale }}" {% if app.request.locale == 'ar'%}dir="rtl"{% endif %}>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
@ -42,18 +42,18 @@
|
|||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-4" style="text-align: center;">
|
||||
<div class="col-4" style="text-align: center;">
|
||||
<img src="{{ asset('img/FediPlan.png') }}" width="80" style=" border-radius: 5%;margin-top: 10px; margin-bottom: 10px; "><br/>
|
||||
FediPlan -{{ "now"|date("Y") }}
|
||||
</div>
|
||||
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
|
||||
<div class="col-4" style="margin-top: 10px; text-align: center;">
|
||||
{{ 'common.author'|trans }}: Thomas<br/>
|
||||
Mastodon: <a href="https://toot.fedilab.app/@apps" target="_blank">@apps</a><br/>
|
||||
Framagit: <a href="https://framagit.org/tom79/" target="_blank">@tom79</a><br/>
|
||||
Codeberg: <a href="https://codeberg.org/tom79/" target="_blank">@tom79</a><br/>
|
||||
Github: <a href="https://github.com/stom79/" target="_blank">@stom79</a><br/>
|
||||
</div>
|
||||
<div class="col-md-4" style="margin-top: 10px; text-align: center;">
|
||||
<div class="col-4" style="margin-top: 10px; text-align: center;">
|
||||
{{ 'common.license'|trans }}: <a href="https://www.gnu.org/licenses/gpl-3.0.fr.html" target="_blank">GPL 3</a><br/>
|
||||
<a href="https://framagit.org/tom79/fediplan" target="_blank">{{ 'common.source_code'|trans}}</a>
|
||||
</div>
|
||||
|
@ -67,6 +67,7 @@
|
|||
{% block javascripts %}
|
||||
<script src="{{ asset('js/jquery.min.js') }}"></script>
|
||||
<script src="{{ asset('js/bootstrap.min.js') }}"></script>
|
||||
<script src="{{ asset('js/bootstrap.bundle.min.js') }}"></script>
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
|
@ -6,7 +6,7 @@
|
|||
{% include 'nav.html.twig' %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center;line-height: normal;margin-top: 100px;"> <pre>
|
||||
<div class=""col-12" style="text-align: center;line-height: normal;margin-top: 100px;"> <pre>
|
||||
██╗ ██╗ ██████╗ ██╗ ██╗
|
||||
██║ ██║██╔═████╗██║ ██║
|
||||
███████║██║██╔██║███████║
|
||||
|
@ -19,7 +19,7 @@
|
|||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center">
|
||||
<div class=""col-12" style="text-align: center">
|
||||
--> <a href="{{ path('index') }}">200</a> <--
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
{% include 'nav.html.twig' %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center;line-height: normal;margin-top: 100px;"> <pre>
|
||||
<div class=""col-12" style="text-align: center;line-height: normal;margin-top: 100px;"> <pre>
|
||||
███████╗ ██████╗ ██████╗
|
||||
██╔════╝██╔═████╗██╔═████╗
|
||||
███████╗██║██╔██║██║██╔██║
|
||||
|
@ -18,7 +18,7 @@
|
|||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12" style="text-align: center">
|
||||
<div class=""col-12" style="text-align: center">
|
||||
--> <a href="{{ path('index') }}">200</a> <--
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% for status in statuses %}
|
||||
|
||||
<div class="row" id="message_container_{{ status.getId() }}" style="margin-bottom: 20px;">
|
||||
<div class="col-md-8">
|
||||
<div class=""col-8">
|
||||
<div class="card">
|
||||
<div class="card-horizontal" style=" display: flex;flex: 1 1 auto;">
|
||||
<div class="img-square-wrapper">
|
||||
|
@ -26,16 +26,16 @@
|
|||
{% for media in status.getMediaAttachments() %}
|
||||
<img class="" width="150" src="{{ media.url }}"
|
||||
style=" border-radius: 5%; margin: 5px;"
|
||||
{% if media.getDescription is not null %}
|
||||
alt="{{ media.getDescription() }}"
|
||||
title="{{ media.getDescription() }}"
|
||||
{% if media.description is defined and media.description is not empty %}
|
||||
alt="{{ media.description }}"
|
||||
title="{{ media.description }}"
|
||||
{% endif %}
|
||||
/>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
<div class="card-footer">
|
||||
<div class="card-footer text-body-secondary">
|
||||
<small class="text-muted">
|
||||
{% if status.visibility == "public" %}
|
||||
<i class="fa fa-globe"></i>
|
||||
|
@ -47,7 +47,7 @@
|
|||
<i class="fa fa-envelope"></i>
|
||||
{% endif %}
|
||||
</small> - {{ status.scheduledAt | date('d/m/y H:i') }}
|
||||
<button class="btn btn-danger small" data-record-id="{{ status.getId() }}" style="position: absolute;right: 5px;bottom: 5px;"
|
||||
<button class="btn btn-danger btn-sm" data-record-id="{{ status.getId() }}" style="position: absolute;right: 5px;bottom: 5px;"
|
||||
|
||||
{% if status.content is not null %}
|
||||
data-record-title="{{ status.content }} - {{ status.scheduledAt | date('d/m/y H:m') }}"
|
||||
|
@ -55,7 +55,7 @@
|
|||
data-record-title="{{ status.scheduledAt | date('d/m/y H:m') }}"
|
||||
{% endif %}
|
||||
|
||||
data-toggle="modal" data-target="#confirm-delete"
|
||||
data-bs-toggle="modal" data-bs-target="#confirm-delete"
|
||||
>X</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -6,27 +6,27 @@
|
|||
{% include 'nav.html.twig' %}
|
||||
<h1>{{ 'common.about'|trans }}</h1>
|
||||
|
||||
<div class="row well">
|
||||
<div class="col-md-8 jumbotron">
|
||||
<div class="row ">
|
||||
<div class="col-8 alert alert-secondary" role="alert">
|
||||
{{ 'page.about.scheduling'|trans |raw}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-8 alert alert-primary" role="alert">
|
||||
<div class="col-8 alert alert-primary" role="alert">
|
||||
{{ 'page.about.data'|trans |raw}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-8 alert alert-success" role="alert">
|
||||
<div class="col-8 alert alert-success" role="alert">
|
||||
{{ 'page.about.issues'|trans |raw}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-8 alert alert-info" role="alert">
|
||||
<div class="col-8 alert alert-info" role="alert">
|
||||
You can help to translate the project into your language with <b>Crowdin</b> at <a title="Crowdin" target="_blank" href="https://crowdin.com/project/fediplan"><img src="https://badges.crowdin.net/fediplan/localized.svg"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -12,13 +12,11 @@
|
|||
{{ form_errors(form) }}
|
||||
{% if flow.getCurrentStepNumber() == 1 %}
|
||||
<div class="row">
|
||||
<div class=" col-md-4">
|
||||
<div class=" col-4">
|
||||
<div class="form-group has-feedback">
|
||||
{{ form_label(form.host) }}
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text" id="basic-addon1"><i class="fa fa-globe"></i></span>
|
||||
</div>
|
||||
<div class="input-group mb-3">
|
||||
<span class="input-group-text" id="basic-addon1"><i class="fa fa-globe"></i></span>
|
||||
{{ form_widget(form.host, {'attr': {'class': 'form-control'}}) }}
|
||||
</div>
|
||||
{% if not form.host.vars.errors is empty %}
|
||||
|
@ -33,21 +31,19 @@
|
|||
</div>
|
||||
{% elseif flow.getCurrentStepNumber() == 2 %}
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class=""col-6">
|
||||
<div class="alert alert-warning">
|
||||
{{ 'messages.login_authorization'|trans }}
|
||||
</div>
|
||||
<a href="{{ urlToMastodon }}" target="_blank" class="btn btn-default"> {{ 'messages.authorization_get'|trans }}</a>
|
||||
<a href="{{ urlToMastodon }}" target="_blank" class="btn btn-secondary"> {{ 'messages.authorization_get'|trans }}</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class=" col-md-4">
|
||||
<div class="form-group has-feedback">
|
||||
{{ form_label(form.code) }}
|
||||
<div class="input-group">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text" id="basic-addon1"><i class="fa fa-key"></i></span>
|
||||
</div>
|
||||
<div class="input-group mb-3">
|
||||
<span class="input-group-text" id="basic-addon1"><i class="fa fa-key"></i></span>
|
||||
{{ form_widget(form.code, {'attr': {'class': 'form-control'}}) }}
|
||||
</div>
|
||||
|
||||
|
@ -66,7 +62,7 @@
|
|||
{% endif %}
|
||||
{{ form_widget(form) }}
|
||||
<div class="row">
|
||||
<div class="col-md-2">
|
||||
<div class=""col-2">
|
||||
<input type="submit" class="btn btn-primary btn-block btn-flat" value="{{ 'common.next'|trans }}"/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
{{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }}
|
||||
<div class="row" style="margin-top: 30px;">
|
||||
<div class="col-md-12">
|
||||
<div class=""col-12">
|
||||
<div class="form-group has-feedback">
|
||||
{{ form_label(form.content_warning) }}
|
||||
{{ form_widget(form.content_warning, {'attr': {'class': 'form-control', 'data-emojiable':'true'}}) }}
|
||||
|
@ -54,7 +54,7 @@
|
|||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-4" style="margin-top: 20px;">
|
||||
<div class=""col-4 col-4" style="margin-top: 20px;">
|
||||
<div class="form-inline has-feedback">
|
||||
<label for="count">{{ 'common.counter'|trans }}</label> <span id="count" >0</span>
|
||||
/{{ instanceConfiguration.statuses.maxCharacters }}
|
||||
|
@ -76,7 +76,7 @@
|
|||
<div class=" col-md-4 col-4" style="margin-top: 20px;">
|
||||
<div class="form-inline has-feedback">
|
||||
{{ form_label(form.sensitive) }}
|
||||
{{ form_widget(form.sensitive, {'attr': {'class': 'form-control','data-toggle':'toggle', 'data-on': 'common.yes'|trans , 'data-off':'common.no'|trans}}) }}
|
||||
{{ form_widget(form.sensitive, {'attr': {'class': 'form-control','data-toggle':'toggle', 'data-onlabel': 'common.yes'|trans , 'data-offlabel':'common.no'|trans}}) }}
|
||||
{% if not form.sensitive.vars.errors is empty %}
|
||||
<span class="badge badge-danger">
|
||||
{% for errorItem in form.sensitive.vars.errors %}
|
||||
|
@ -114,7 +114,7 @@
|
|||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2 col-2">
|
||||
<div class=""col-2 col-2">
|
||||
<label for="count">{{ 'common.poll'|trans }}</label>
|
||||
<span id="poll_switch" class="form-control" style="text-align: center;cursor:pointer;" > <i class="fa fa-tasks fa-fw"></i></span>
|
||||
|
||||
|
@ -140,7 +140,7 @@
|
|||
<div class="row">
|
||||
<div class=" col-md-4">
|
||||
{{ form_label(form.poll_multiple) }}
|
||||
{{ form_widget(form.poll_multiple, {'attr': {'class': 'form-control','data-toggle':'toggle', 'data-on': 'common.yes'|trans , 'data-off':'common.no'|trans}}) }}
|
||||
{{ form_widget(form.poll_multiple, {'attr': {'class': 'form-control','data-toggle':'toggle', 'data-onlabel': 'common.yes'|trans , 'data-offlabel':'common.no'|trans}}) }}
|
||||
{% if not form.poll_multiple.vars.errors is empty %}
|
||||
<span class="badge badge-danger">
|
||||
{% for errorItem in form.poll_multiple.vars.errors %}
|
||||
|
@ -171,7 +171,7 @@
|
|||
|
||||
|
||||
|
||||
<div class="container" style="margin-bottom: 30px;" id="media_container"></div>
|
||||
<div class="container" style="margin-bottom: 30px;margin-top: 50px;" id="media_container"></div>
|
||||
|
||||
|
||||
</div>
|
||||
|
@ -236,11 +236,12 @@
|
|||
<link rel="stylesheet" href="{{ asset('js/jQuery-File-Upload-10.1.0/css/doka.min.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('js/jQuery-File-Upload-10.1.0/css/blueimp-gallery.min.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('js/jQuery-File-Upload-10.1.0/css/jquery.fileupload.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('css/bootstrap4-toggle.min.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('css/bootstrap-toggle.min.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('css/emojionearea.css') }}">
|
||||
{% endblock %}
|
||||
|
||||
{% block javascripts %}
|
||||
{{ parent() }}
|
||||
<!-- The blueimp Gallery widget -->
|
||||
<div
|
||||
id="blueimp-gallery"
|
||||
|
@ -277,7 +278,7 @@
|
|||
<td>
|
||||
{% if (!o.options.autoUpload && o.options.edit && o.options.loadImageFileTypes.test(file.type)) { %}
|
||||
<button class="btn btn-success edit" data-index="{%=i%}" disabled
|
||||
data-toggle="tooltip" data-placement="top" title="{% endverbatim %}{{ 'page.schedule.form.edit_media'|trans }} {% verbatim %}"
|
||||
data-bs-toggle="tooltip" data-placement="top" title="{% endverbatim %}{{ 'page.schedule.form.edit_media'|trans }} {% verbatim %}"
|
||||
>
|
||||
<i class="glyphicon glyphicon-edit"></i>
|
||||
<span>{% endverbatim %}{{ 'common.edit'|trans }} {% verbatim %}</span>
|
||||
|
@ -285,7 +286,7 @@
|
|||
{% } %}
|
||||
{% if (!i && !o.options.autoUpload) { %}
|
||||
<button class="btn btn-primary start" disabled
|
||||
data-toggle="tooltip" data-placement="top" title="{% endverbatim %}{{ 'page.schedule.form.upload_media'|trans }} {% verbatim %}"
|
||||
data-bs-toggle="tooltip" data-placement="top" title="{% endverbatim %}{{ 'page.schedule.form.upload_media'|trans }} {% verbatim %}"
|
||||
>
|
||||
<i class="glyphicon glyphicon-upload"></i>
|
||||
<span> {% endverbatim %} {{ 'common.start'|trans }} {% verbatim %} </span>
|
||||
|
@ -344,14 +345,12 @@
|
|||
</script>
|
||||
{% endverbatim %}
|
||||
<span id="data_api" data-token="{{ token }}" data-instance="{{ instance }}"></span>
|
||||
<script src="{{ asset('js/jquery.min.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/vendor/jquery.ui.widget.js') }}"></script>
|
||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/tmpl.min.js') }}"></script>
|
||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/load-image.all.min.js') }}"></script>
|
||||
<script src="{{ asset('js/jQuery-File-Upload-10.1.0/js/canvas-to-blob.min.js') }}"></script>
|
||||
<script src="{{ asset('js/bootstrap4-toggle.min.js') }}"></script>
|
||||
<script src="{{ asset('js/bootstrap.min.js') }}"></script>
|
||||
<script src="{{ asset('js/bootstrap-toggle.min.js') }}"></script>
|
||||
|
||||
|
||||
|
||||
|
@ -419,14 +418,14 @@
|
|||
var message = "{{ 'common.delete'|trans }}";
|
||||
var content;
|
||||
content = ' <div class="row" id="media_container_'+data.id+'">\n' +
|
||||
' <div class="col-md-4">\n' +
|
||||
' <div class=""col-4">\n' +
|
||||
' <img src="'+data.preview_url+'" style="width:100%;max-width:200px;" id="media_preview_'+data.id+'"/>\n' +
|
||||
' </div>\n' +
|
||||
' <div class="col-md-6">\n' +
|
||||
' <div class=""col-6">\n' +
|
||||
' <textarea name="media_description_'+data.id+'" class="form-control"></textarea>\n' +
|
||||
' </div>\n' +
|
||||
' <input type="hidden" name="media_id_'+data.id+'" value="'+data.id+'"/>\n' +
|
||||
' <div class="col-md-2">\n' +
|
||||
' <div class=""col-2">\n' +
|
||||
' <button type="button" class="btn btn-danger delete_media" data-id="'+data.id+'">\n' +
|
||||
' <i class="glyphicon glyphicon-trash"></i>\n' +
|
||||
' <span>'+message+'</span>\n' +
|
||||
|
|
|
@ -9,31 +9,30 @@
|
|||
|
||||
|
||||
<div class="row container">
|
||||
<div class="col-md-12" id="content"></div>
|
||||
<div class=""col-12" id="content"></div>
|
||||
</div>
|
||||
<div class="row container hide" id="loader" style="text-align: center;margin-top: 50px;"><div class="lds-ring"><div></div><div></div><div></div><div></div></div></div>
|
||||
<div class="row hide" id="no_content" style="margin-top: 50px;">
|
||||
<div class="col-md-offset-3 col-md-6">
|
||||
<div class=""col-offset-3 col-md-6">
|
||||
<div class="alert alert-warning" style="font-size: 1.5em;text-align: center;">{{ 'common.no_results_found'|trans }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
||||
<div class="modal fade" id="confirm-delete" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
|
||||
<h4 class="modal-title" id="myModalLabel">{{ 'common.confirm_delete'|trans }}</h4>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h1 class="modal-title fs-5" id="myModalLabel">{{ 'common.confirm_delete'|trans }}</h1>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p>{{ 'common.delete_message'|trans }} <b><i class="title"></i></b></p>
|
||||
<p>{{ 'common.proceed_confirm'|trans }}</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">{{ 'common.cancel'|trans }}</button>
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">{{ 'common.cancel'|trans }}</button>
|
||||
<button type="button" class="btn btn-danger btn-ok">{{ 'common.delete'|trans }}</button>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -76,7 +75,6 @@
|
|||
$('#loader').addClass("d-none");
|
||||
})
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
@ -87,6 +85,7 @@
|
|||
.done(function(data) {
|
||||
$("#message_container_"+id).remove();
|
||||
$('#confirm-delete').modal('hide');
|
||||
$('.modal-backdrop').remove();
|
||||
$modalDiv.modal('hide').removeClass('loading');
|
||||
})
|
||||
.fail(function() {
|
||||
|
|
|
@ -1,62 +1,79 @@
|
|||
{% trans_default_domain 'fediplan' %}
|
||||
<header>
|
||||
<!-- Fixed navbar -->
|
||||
<nav class="navbar navbar-expand-md navbar-light fixed-top bg-light">
|
||||
<a class="navbar-brand" href="#">FediPlan</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
{% if not is_granted('ROLE_USER') %}
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'index' %} active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('index') }}">{{ 'common.login'|trans }} <span class="sr-only">(current)</span></a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if is_granted('ROLE_USER') %}
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'schedule' %}active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('schedule') }}">{{ 'common.schedule'|trans }}</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'scheduled' %} active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('scheduled') }}">{{ 'common.scheduled'|trans }}</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ path('logout') }}" tabindex="-1" >{{ 'common.logout'|trans }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'about' %} active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('about') }}" tabindex="-1" >{{ 'common.about'|trans }}</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://fedilab.app/page/donations/" tabindex="-1" >{{ 'common.support_my_work'|trans }}</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
|
||||
{{ getLanguage(app.request.locale) }}
|
||||
</a>
|
||||
<div class="dropdown-menu scrollable-menu">
|
||||
{% set route = app.request.attributes.get('_route') %}
|
||||
{% if route == "app_fediplan_about" %}
|
||||
{% set route = "about" %}
|
||||
<nav class="navbar fixed-top navbar-expand-lg bg-body-tertiary">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="#">
|
||||
<img src="{{ asset('img/FediPlan.png') }}" alt="Logo" width="24" height="24" class="d-inline-block align-text-top"/>
|
||||
FediPlan
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="offcanvas offcanvas-end" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel">
|
||||
<div class="offcanvas-header">
|
||||
<h5 class="offcanvas-title" id="offcanvasNavbarLabel">
|
||||
<img src="{{ asset('img/FediPlan.png') }}" alt="Logo" width="24" height="24" class="d-inline-block align-text-top"/>
|
||||
FediPlan
|
||||
</h5>
|
||||
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
|
||||
</div>
|
||||
<div class="offcanvas-body">
|
||||
<ul class="navbar-nav flex-grow-1 pe-3">
|
||||
{% if not is_granted('ROLE_USER') %}
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'index' %} active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('index') }}">{{ 'common.login'|trans }} <span class="sr-only">(current)</span></a>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if route | length < 5 %}
|
||||
{% set route = "index" %}
|
||||
{% if is_granted('ROLE_USER') %}
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'schedule' %}active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('schedule') }}">{{ 'common.schedule'|trans }}</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'scheduled' %} active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('scheduled') }}">{{ 'common.scheduled'|trans }}</a>
|
||||
</li>
|
||||
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ path('logout') }}" tabindex="-1" >{{ 'common.logout'|trans }}</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'en' }) }}">English</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'fr' }) }}">Français</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'de' }) }}">Deutsch</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'nl' }) }}">Nederlands</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'ar' }) }}">العربية</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'it' }) }}">Italiano</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'pt-PT' }) }}">Português</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'pt-BR' }) }}">Brasil</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'ca' }) }}">Català</a>
|
||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'ja' }) }}">日本語</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<li class="nav-item {% if app.request.attributes.get('_route') == 'about' %} active {% endif %}">
|
||||
<a class="nav-link" href="{{ path('about') }}" tabindex="-1" >{{ 'common.about'|trans }}</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="https://fedilab.app/page/donations/" tabindex="-1" >{{ 'common.support_my_work'|trans }}</a>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
{{ getLanguage(app.request.locale) }}
|
||||
</a>
|
||||
<ul class="dropdown-menu scrollable-menu">
|
||||
{% set route = app.request.attributes.get('_route') %}
|
||||
{% if route == "app_fediplan_about" %}
|
||||
{% set route = "about" %}
|
||||
{% endif %}
|
||||
{% if route | length < 5 %}
|
||||
{% set route = "index" %}
|
||||
{% endif %}
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'en' }) }}">English</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'fr' }) }}">Français</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'de' }) }}">Deutsch</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'nl' }) }}">Nederlands</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'ar' }) }}">العربية</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'it' }) }}">Italiano</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'pt-PT' }) }}">Português</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'pt-BR' }) }}">Brasil</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'ca' }) }}">Català</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'ja' }) }}">日本語</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'pl' }) }}">Polski</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'ru' }) }}">Русский</a></li>
|
||||
<li><a class="dropdown-item" href="{{ path(route, {'_locale':'uk' }) }}">Украïна</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
|
@ -48,15 +48,15 @@ error:
|
|||
mastodon_account_already_used: This account is already managed by someone else!
|
||||
page:
|
||||
index:
|
||||
about: FediPlan is an open source application (<a href="https://framagit.org/tom79/fediplan" target="_blank">source code</a>) built for scheduling your messages with <a href="https://joinmastodon.org/" target="_blank">Mastodon</a> or <a href="https://pleroma.social/" target="_blank">Pleroma</a> (2.7+).
|
||||
about: FediPlan is an open source application (<a href="https://framagit.org/tom79/fediplan" target="_blank">source code</a>) built for scheduling your messages with <a href="https://joinmastodon.org/" target="_blank">Mastodon</a> or <a href="https://pleroma.social/" target="_blank">Pleroma</a> (2.0.7+).
|
||||
data: It <b>does not store any data</b> (token or messages), that is why you need to create a new Token when your session expired.
|
||||
form:
|
||||
code: Your authorization code
|
||||
instance: Your instance
|
||||
about:
|
||||
scheduling: FediPlan allows users to schedule messages for Mastodon and Pleroma (with media attachments).<br/> The scheduled date must be at least 5 minutes into the future. At most, 300 messages can be scheduled at the same time. Only 50 messages can be scheduled for any given day.
|
||||
data: 'FediPlan does not store your scheduled messages nor your credentials. It only uses the Mastodon API for <a href="https://docs.joinmastodon.org/api/rest/statuses/#scheduled-status" target="_blank">scheduling messages</a>'
|
||||
issues: You can report issues or ask improvements on <a href="https://github.com/stom79/FediPlan/issues" target="_blank">Github</a> or <a href="https://framagit.org/tom79/fediplan/issues" target="_blank">Framagit</a>.
|
||||
data: 'FediPlan does not store your scheduled messages nor your credentials. It only uses the Mastodon API for <a href="https://docs.joinmastodon.org/methods/scheduled_statuses/" target="_blank">scheduling messages</a>'
|
||||
issues: You can report issues or ask improvements on <a href="https://framagit.org/tom79/fediplan/issues" target="_blank">Framagit</a>.
|
||||
schedule:
|
||||
form:
|
||||
content_warning: Content warning
|
||||
|
|
|
@ -17,7 +17,6 @@ common:
|
|||
cancel: Avbryt
|
||||
delete: Ta bort
|
||||
edit: Redigera
|
||||
start: Start
|
||||
proceed_confirm: Vill du fortsätta?
|
||||
schedule_success: Meddelandet har ändrats
|
||||
start_upload: Starta uppladdning
|
||||
|
|
|
@ -41,7 +41,7 @@ error:
|
|||
mastodon_account_already_used: This account is already managed by someone else!
|
||||
page:
|
||||
index:
|
||||
about: FediPlan is an open source application (<a href="https://framagit.org/tom79/fediplan" target="_blank">source code</a>) built for scheduling your messages with <a href="https://joinmastodon.org/" target="_blank">Mastodon</a> or <a href="https://pleroma.social/" target="_blank">Pleroma</a> (2.7+).
|
||||
about: FediPlan is an open source application (<a href="https://framagit.org/tom79/fediplan" target="_blank">source code</a>) built for scheduling your messages with <a href="https://joinmastodon.org/" target="_blank">Mastodon</a> or <a href="https://pleroma.social/" target="_blank">Pleroma</a> (2.0.7+).
|
||||
data: It <b>does not store any data</b> (token or messages), that is why you need to create a new Token when your session expired.
|
||||
form:
|
||||
code: Your authorization code
|
||||
|
|
Loading…
Add table
Reference in a new issue