aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinteck <minteck@phoenixnet.tech>2021-11-20 18:17:35 +0100
committerMinteck <minteck@phoenixnet.tech>2021-11-20 18:17:35 +0100
commitf22cc700109a77d0d157661c4db7cc5014b9c9a0 (patch)
treeeefcf6cb2ef0b6b7ea9c826c8aee52aae4cf6023
parentc018ded3bd1029410fae4316e7e1a7178ae894b5 (diff)
downloadcore-f22cc700109a77d0d157661c4db7cc5014b9c9a0.tar.gz
core-f22cc700109a77d0d157661c4db7cc5014b9c9a0.tar.bz2
core-f22cc700109a77d0d157661c4db7cc5014b9c9a0.zip
first commit
-rw-r--r--app/genealogy/.gitignore1
-rw-r--r--app/genealogy/README.md8
-rw-r--r--app/genealogy/index.php49
-rw-r--r--icns/familine-camera-wrapper.pngbin0 -> 1598 bytes
-rw-r--r--icns/familine-camera-wrapper.svg23
-rw-r--r--icns/familine-camera.pngbin0 -> 906 bytes
-rw-r--r--icns/familine-docs.pngbin0 -> 21215 bytes
-rw-r--r--icns/familine-help.pngbin0 -> 24615 bytes
-rw-r--r--icns/familine-money.pngbin0 -> 26639 bytes
-rw-r--r--icns/familine-movies.pngbin0 -> 17297 bytes
-rw-r--r--icns/familine-photos.pngbin0 -> 57920 bytes
-rw-r--r--icns/familine-recall.pngbin0 -> 549 bytes
-rw-r--r--icns/familine-recall.svg11
-rw-r--r--icns/familine-review.pngbin0 -> 447 bytes
-rw-r--r--icns/familine-share.pngbin0 -> 22580 bytes
-rw-r--r--icns/familine-you.pngbin0 -> 35746 bytes
-rw-r--r--icns/familine.pngbin0 -> 47232 bytes
17 files changed, 92 insertions, 0 deletions
diff --git a/app/genealogy/.gitignore b/app/genealogy/.gitignore
new file mode 100644
index 0000000..c8c6761
--- /dev/null
+++ b/app/genealogy/.gitignore
@@ -0,0 +1 @@
+private \ No newline at end of file
diff --git a/app/genealogy/README.md b/app/genealogy/README.md
new file mode 100644
index 0000000..ccb30fc
--- /dev/null
+++ b/app/genealogy/README.md
@@ -0,0 +1,8 @@
+# Familine Recall
+
+* Chemin d'installation attendu : `/mnt/familine/app/genealogy`
+
+## Installation
+1. Copiez les fichiers dans le dossier `/mnt/familine/app/genealogy`
+3. Configurez votre serveur Web pour pointer le sous-domaine `genealogy.` vers Familine Recall
+4. C'est prêt ! \ No newline at end of file
diff --git a/app/genealogy/index.php b/app/genealogy/index.php
new file mode 100644
index 0000000..f944d59
--- /dev/null
+++ b/app/genealogy/index.php
@@ -0,0 +1,49 @@
+<?php
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/../session.php";
+
+/** @var string $_FULLNAME
+ * @var string $_USER
+ * @var string $_SUID
+ * @var array $_PROFILE
+ */
+
+?>
+
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>Familine Help</title>
+ <link rel="icon" href="https://familine.minteck.org/icns/familine-help.svg">
+ <link rel="stylesheet" href="https://familine.minteck.org/styles.css">
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
+</head>
+<body>
+ <div class="container" style="margin-top:30px;">
+ <h1>Centre d'aide de Familine</h1>
+ <p>Obtenez de l'aide avec Familine, rapidement et simplement. Pour commencer, choisissez la catégorie correspondante à votre question.</p>
+ <div class="list-group">
+ <a href="/account" class="list-group-item list-group-item-action">Compte Familine</a>
+ <a href="/media" class="list-group-item list-group-item-action">Service en ligne multimédia (Familine Movies et Photos)</a>
+ <a href="/money" class="list-group-item list-group-item-action">Comptes bancaires Familine Money (Faminey)</a>
+ <a href="/review" class="list-group-item list-group-item-action">Stockage en réseau (Familine Review)</a>
+ <a href="/share" class="list-group-item list-group-item-action">Partager des fichiers avec Familine Share</a>
+ <a href="/wiki" class="list-group-item list-group-item-action">Accéder à la nouvelle version de Famiwiki (Familine Docs)</a>
+ <a href="/legal" class="list-group-item list-group-item-action">Mentions légales</a>
+ </div>
+ </div>
+ <script>
+ console.log("Injecting Familine header")
+ document.body.innerHTML = document.body.innerHTML + "<iframe style=\"position:fixed;left:0;right:0;top:0;border: none;width: 100%;height:32px;\" src=\"https://<?= /** @var array $_CONFIG */
+ $_CONFIG["Global"]["domain"] ?>/statusbar.php\"></iframe>";
+ document.getElementsByTagName("html")[0].style.marginTop = "32px";
+ document.getElementsByTagName("html")[0].style.height = "calc(100vh - 32px)";
+ </script>
+</body>
+</html> \ No newline at end of file
diff --git a/icns/familine-camera-wrapper.png b/icns/familine-camera-wrapper.png
new file mode 100644
index 0000000..86e0c3f
--- /dev/null
+++ b/icns/familine-camera-wrapper.png
Binary files differ
diff --git a/icns/familine-camera-wrapper.svg b/icns/familine-camera-wrapper.svg
new file mode 100644
index 0000000..7bcee6b
--- /dev/null
+++ b/icns/familine-camera-wrapper.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 25.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#808080;}
+ .st1{fill:none;}
+ .st2{fill:#FFFFFF;}
+</style>
+<path class="st0" d="M18,10.5V6c0-1.1-0.9-2-2-2H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-4.5l4,4v-11L18,10.5z
+ M16,9.7V18H4V6h12V9.7z"/>
+<circle class="st0" cx="10" cy="10" r="2"/>
+<path class="st0" d="M14,15.4c0-0.8-0.5-1.5-1.2-1.9C11.9,13.2,11,13,10,13s-1.9,0.2-2.8,0.6c-0.7,0.3-1.2,1-1.2,1.9V16h8V15.4z"/>
+<g>
+ <rect class="st1" width="24" height="24"/>
+</g>
+<circle class="st2" cx="17.1" cy="19.3" r="4.7"/>
+<g>
+ <path class="st1" d="M13.2,15.5H21v7.8h-7.8V15.5z"/>
+ <path d="M20.5,21.6l-2.9-2.9c0.3-0.7,0.1-1.6-0.5-2.2c-0.6-0.6-1.6-0.8-2.4-0.4l1.4,1.4l-1,1L13.7,17c-0.4,0.8-0.2,1.8,0.4,2.4
+ c0.6,0.6,1.5,0.8,2.2,0.5l2.9,2.9c0.1,0.1,0.3,0.1,0.5,0l0.7-0.7C20.7,21.9,20.7,21.7,20.5,21.6z"/>
+</g>
+</svg>
diff --git a/icns/familine-camera.png b/icns/familine-camera.png
new file mode 100644
index 0000000..85dd681
--- /dev/null
+++ b/icns/familine-camera.png
Binary files differ
diff --git a/icns/familine-docs.png b/icns/familine-docs.png
new file mode 100644
index 0000000..f038943
--- /dev/null
+++ b/icns/familine-docs.png
Binary files differ
diff --git a/icns/familine-help.png b/icns/familine-help.png
new file mode 100644
index 0000000..a376e97
--- /dev/null
+++ b/icns/familine-help.png
Binary files differ
diff --git a/icns/familine-money.png b/icns/familine-money.png
new file mode 100644
index 0000000..d89846e
--- /dev/null
+++ b/icns/familine-money.png
Binary files differ
diff --git a/icns/familine-movies.png b/icns/familine-movies.png
new file mode 100644
index 0000000..4c71f0a
--- /dev/null
+++ b/icns/familine-movies.png
Binary files differ
diff --git a/icns/familine-photos.png b/icns/familine-photos.png
new file mode 100644
index 0000000..9a9b8b1
--- /dev/null
+++ b/icns/familine-photos.png
Binary files differ
diff --git a/icns/familine-recall.png b/icns/familine-recall.png
new file mode 100644
index 0000000..9e55364
--- /dev/null
+++ b/icns/familine-recall.png
Binary files differ
diff --git a/icns/familine-recall.svg b/icns/familine-recall.svg
new file mode 100644
index 0000000..dd35ccd
--- /dev/null
+++ b/icns/familine-recall.svg
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 26.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:none;}
+ .st1{fill:#35B7FF;}
+</style>
+<path class="st0" d="M0,0h24v24H0V0z"/>
+<path class="st1" d="M22,11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3H22z"/>
+</svg>
diff --git a/icns/familine-review.png b/icns/familine-review.png
new file mode 100644
index 0000000..af4940d
--- /dev/null
+++ b/icns/familine-review.png
Binary files differ
diff --git a/icns/familine-share.png b/icns/familine-share.png
new file mode 100644
index 0000000..ddc3920
--- /dev/null
+++ b/icns/familine-share.png
Binary files differ
diff --git a/icns/familine-you.png b/icns/familine-you.png
new file mode 100644
index 0000000..8b17628
--- /dev/null
+++ b/icns/familine-you.png
Binary files differ
diff --git a/icns/familine.png b/icns/familine.png
new file mode 100644
index 0000000..86960a5
--- /dev/null
+++ b/icns/familine.png
Binary files differ