Merge branch 'master' of https://github.com/RedMatrixCanada/red into RedMatrixCanada-master
This commit is contained in:
commit
e7d401f387
14
.htaccess
14
.htaccess
@ -1,7 +1,7 @@
|
|||||||
Options -Indexes
|
Options -Indexes
|
||||||
AddType application/x-java-archive .jar
|
AddType application/x-java-archive .jar
|
||||||
AddType audio/ogg .oga
|
AddType audio/ogg .oga
|
||||||
#SSLCipherSuite HIGH:AES256-SHA:AES128-SHA:RC4:!aNULL:!eNULL:!EDH
|
SSLCipherSuite HIGH:AES256-SHA:AES128-SHA:RC4:!aNULL:!eNULL:!EDH
|
||||||
|
|
||||||
# don't allow any web access to logfiles, even after rotation/compression
|
# don't allow any web access to logfiles, even after rotation/compression
|
||||||
<FilesMatch "\.(out|log|gz)$">
|
<FilesMatch "\.(out|log|gz)$">
|
||||||
@ -25,3 +25,15 @@ Deny from all
|
|||||||
|
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
|
# Set Apache compression
|
||||||
|
# compress text, html, javascript, css, xml:
|
||||||
|
AddOutputFilterByType DEFLATE text/plain
|
||||||
|
AddOutputFilterByType DEFLATE text/html
|
||||||
|
AddOutputFilterByType DEFLATE text/xml
|
||||||
|
AddOutputFilterByType DEFLATE text/css
|
||||||
|
AddOutputFilterByType DEFLATE application/xml
|
||||||
|
AddOutputFilterByType DEFLATE application/xhtml+xml
|
||||||
|
AddOutputFilterByType DEFLATE application/rss+xml
|
||||||
|
AddOutputFilterByType DEFLATE application/javascript
|
||||||
|
AddOutputFilterByType DEFLATE application/x-javascript
|
||||||
|
|
||||||
|
277
assets/home.html
277
assets/home.html
@ -36,58 +36,54 @@ body::after {
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
var terms = new Array("Internet-scale Privacy",
|
||||||
var terms = new Array(
|
"Social Networking",
|
||||||
"Internet-scale Privacy",
|
"Single Sign-On",
|
||||||
"Social Networking",
|
"Photo Albums",
|
||||||
"Single Sign-On",
|
"Decentralised",
|
||||||
"Photo Albums",
|
"Cloud Storage",
|
||||||
"Decentralised",
|
"Own Your Content",
|
||||||
"Cloud Storage",
|
"Blogging",
|
||||||
"Own Your Content",
|
"End-to-end Encryption",
|
||||||
"Blogging",
|
"Chatrooms",
|
||||||
"End-to-end Encryption",
|
"Shareable Apps",
|
||||||
"Chatrooms",
|
"Cross-Site Access Control",
|
||||||
"Shareable Apps",
|
"Unsend Private Mail",
|
||||||
"Cross-Site Access Control",
|
"Webpage Creation",
|
||||||
"Unsend Private Mail",
|
"Content Management",
|
||||||
"Webpage Creation",
|
"Message Expiration",
|
||||||
"Content Management",
|
"Games and Utilities",
|
||||||
"Message Expiration",
|
"Unincorporated",
|
||||||
"Games and Utilities",
|
"Forums",
|
||||||
"Unincorporated",
|
"Like + Dislike",
|
||||||
"Forums",
|
"Share Anything Digital",
|
||||||
"Like + Dislike",
|
"Communications",
|
||||||
"Share Anything Digital",
|
"Identity-Aware Content",
|
||||||
"Communications",
|
"Pseudonyms",
|
||||||
"Identity-Aware Content",
|
"Multiple Identities",
|
||||||
"Pseudonyms",
|
"No Advertising",
|
||||||
"Multiple Identities",
|
"Rich Text Post/Comment",
|
||||||
"No Advertising",
|
"Event Calendar",
|
||||||
"Rich Text Post/Comment",
|
"Bookmarking",
|
||||||
"Event Calendar",
|
"Community Tagging",
|
||||||
"Bookmarking",
|
"Mirrored Directory",
|
||||||
"Community Tagging",
|
"Nomadic Identity",
|
||||||
"Mirrored Directory",
|
"Derivative Channels",
|
||||||
"Nomadic Identity",
|
"Customised Encryption",
|
||||||
"Derivative Channels",
|
"Multiple Profiles",
|
||||||
"Customised Encryption",
|
"Privacy Groups",
|
||||||
"Multiple Profiles",
|
"File Sharing",
|
||||||
"Privacy Groups",
|
"MIT license",
|
||||||
"File Sharing",
|
"Autonomy",
|
||||||
"MIT license",
|
"Affinity Filtering",
|
||||||
"Autonomy",
|
"Friend Suggestions",
|
||||||
"Affinity Filtering",
|
"Cross-Site Auth",
|
||||||
"Friend Suggestions",
|
"Themes",
|
||||||
"Cross-Site Auth",
|
"Plugins",
|
||||||
"Themes",
|
"External API",
|
||||||
"Plugins",
|
"3rd Party Apps",
|
||||||
"External API",
|
"Open Source",
|
||||||
"3rd Party Apps",
|
null);
|
||||||
"Open Source",
|
|
||||||
null
|
|
||||||
);
|
|
||||||
|
|
||||||
var r = 0;
|
var r = 0;
|
||||||
var g = 0;
|
var g = 0;
|
||||||
var b = 0;
|
var b = 0;
|
||||||
@ -104,23 +100,6 @@ var nindex = 0;
|
|||||||
var firstTime = 1;
|
var firstTime = 1;
|
||||||
var curr = null;
|
var curr = null;
|
||||||
|
|
||||||
function update_element() {
|
|
||||||
|
|
||||||
if(firstTime) {
|
|
||||||
firstTime = 0;
|
|
||||||
fadeout();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
curr = terms[nindex];
|
|
||||||
nindex ++;
|
|
||||||
if(terms[nindex] == null)
|
|
||||||
nindex = 0;
|
|
||||||
|
|
||||||
var id = document.getElementById(element);
|
|
||||||
id.innerHTML = curr;
|
|
||||||
timer = setTimeout('fadein();',3);
|
|
||||||
}
|
|
||||||
|
|
||||||
function fadeout() {
|
function fadeout() {
|
||||||
|
|
||||||
var id = document.getElementById(element);
|
var id = document.getElementById(element);
|
||||||
@ -157,19 +136,110 @@ function fadein() {
|
|||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
timer = setTimeout('update_element();',2000);
|
timer = setTimeout('update_element();',2000);
|
||||||
|
var known = {
|
||||||
|
en: true, // ENGLISH
|
||||||
|
fr: true, // FRENCH
|
||||||
|
nl: true // NETHERLANDS
|
||||||
|
// ADD YOUR LANGUAGE HERE.
|
||||||
|
};
|
||||||
|
// Figure out the language, default to English because that's
|
||||||
|
// what I speak.
|
||||||
|
var lang = (navigator.language || navigator.userLanguage || 'en').substr(0, 2);
|
||||||
|
if(!known[lang])
|
||||||
|
lang = 'en';
|
||||||
|
if(lang=="fr") // FRENCH TRANSLATIONS
|
||||||
|
terms = new Array("Réseau social",
|
||||||
|
"Authentification unique",
|
||||||
|
"Albums Photos",
|
||||||
|
"Decentralisée",
|
||||||
|
"Entreposage dans le nuage",
|
||||||
|
"Vous avez le contrôle sur vos partages",
|
||||||
|
"Blogue",
|
||||||
|
"Encryption des données",
|
||||||
|
"Salle de clavardage",
|
||||||
|
"Partage d’applications",
|
||||||
|
"Permissions actives sur toute la matrice",
|
||||||
|
"Reprise de courrier",
|
||||||
|
"Création de pages web",
|
||||||
|
"Gestion du contenu",
|
||||||
|
"Expiration des messages",
|
||||||
|
"Jeux et Utilitaires",
|
||||||
|
"Non-Incorporé",
|
||||||
|
"Forums",
|
||||||
|
"J’aime + Je Déteste",
|
||||||
|
"Partagez tous types de fichiers",
|
||||||
|
"Plateforme de communications",
|
||||||
|
"Le contenu s’ajuste aux individus",
|
||||||
|
"Pseudonymes",
|
||||||
|
"Identités multiples",
|
||||||
|
"Aucune publicité",
|
||||||
|
"Éditeur de texte enrichi (partages/commentaires)",
|
||||||
|
"Calendrier d’événements",
|
||||||
|
"Favoris",
|
||||||
|
"Suivre des personnes/communautés",
|
||||||
|
"Répertoire d’utilisateurs synchronisé",
|
||||||
|
"Identité nomade",
|
||||||
|
"Canaux d’intérêts",
|
||||||
|
"Encryption du traffic (SSL)",
|
||||||
|
"Profils multiples",
|
||||||
|
"Groupes privés",
|
||||||
|
"Partage de fichiers",
|
||||||
|
"License MIT",
|
||||||
|
"Autonomie",
|
||||||
|
"Filtre selon les affinités",
|
||||||
|
"Suggestions d’amis potentiel",
|
||||||
|
"Authentification sur tous les HUBs de la matrice",
|
||||||
|
"Thèmes",
|
||||||
|
"Plugins",
|
||||||
|
"API externe",
|
||||||
|
"Application Tierce Partie",
|
||||||
|
"Code Source Ouvert",
|
||||||
|
"Gratuit",
|
||||||
|
null);
|
||||||
|
|
||||||
|
// Find all <div>s with a class of "wrapper" and lang attribute equal
|
||||||
|
// to `lang` and make them visibile.
|
||||||
|
$('div.wrapper[lang=' + lang + ']').show();
|
||||||
|
|
||||||
|
// Find all <div>s with a class of "wrapper" and lang attribute not
|
||||||
|
// equal to `lang` and make them invisibile.
|
||||||
|
$('div.wrapper[lang!=' + lang + ']').hide();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function update_element() {
|
||||||
|
|
||||||
|
if(firstTime) {
|
||||||
|
firstTime = 0;
|
||||||
|
fadeout();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
curr = terms[nindex];
|
||||||
|
nindex ++;
|
||||||
|
if(terms[nindex] == null)
|
||||||
|
nindex = 0;
|
||||||
|
|
||||||
|
var id = document.getElementById(element);
|
||||||
|
id.innerHTML = curr;
|
||||||
|
timer = setTimeout('fadein();',3);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<div style="margin-top: 50px;"></div>
|
<div style="margin-top: 50px;"></div>
|
||||||
|
|
||||||
<center>
|
<center>
|
||||||
|
|
||||||
<img style="width: 330px; margin-top: 30px; margin-bottom: 30px;" src="assets/hashlogo.png" >
|
<img style="width: 330px; margin-top: 30px; margin-bottom: 30px;" src="assets/hashlogo.png" >
|
||||||
<div id="word-flasher" style="font-size: 2.5em; font-weight: bold; margin-bottom: 30px;">"The Network"</div>
|
<div id="word-flasher" style="font-size: 2.5em; font-weight: bold; margin-bottom: 30px;">"The Network"</div>
|
||||||
|
|
||||||
|
<!-- TRANSLATIONS START HERE - REMEMBER TO ADD YOUR LANGUAGE IN THE FUNCTION ABOVE($(document).ready(function() ...)
|
||||||
|
|
||||||
|
<!-- ENGLISH FRONTPAGE TRANSLATION STARTS HERE -->
|
||||||
|
|
||||||
|
<div lang="en" class="wrapper">
|
||||||
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
One of the traditional problems with independent publishing on the internet has always been the fact that independent publishers often operate as isolated islands within their own website, and spend most of their resources attracting visitors. The rise of corporate providers and social networking services alleviated many of these problems; however centralisation has led to a situation where your content where is no longer under your direct control. It is shared fully with corporate advertisers and governments, but ironically you are now often asked to pay money to ensure that your friends can see it. What if you could have advantages of scale and connections that centralisation offers whilst maintaining independent control over your own web presence?
|
One of the traditional problems with independent publishing on the internet has always been the fact that independent publishers often operate as isolated islands within their own website, and spend most of their resources attracting visitors. The rise of corporate providers and social networking services alleviated many of these problems; however centralisation has led to a situation where your content where is no longer under your direct control. It is shared fully with corporate advertisers and governments, but ironically you are now often asked to pay money to ensure that your friends can see it. What if you could have advantages of scale and connections that centralisation offers whilst maintaining independent control over your own web presence?
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
@ -185,8 +255,69 @@ The RedMatrix is ideal for social communities of any size, from private individu
|
|||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
<div style="margin-bottom: 15px; color: #808080; font-size: 1.8em;"><strong>RedMatrix - "The Network"</strong></div>
|
<div style="margin-bottom: 15px; color: #808080; font-size: 1.8em;"><strong>RedMatrix - "The Network"</strong></div>
|
||||||
<div style="font-size: 1.4em;"><a href="pubsites" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Sign up now!</a></div>
|
<div style="font-size: 1.4em;">
|
||||||
|
<a href="register" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Sign up now!</a>
|
||||||
|
<a href="donate" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Donate / Sponsor</a>
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Public Sites</a> | <a href="https://redmatrix.me">Project Home</a> | <a href="https://github.com/friendica/red">Code</a> | <a href="https://zothub.com/channel/one">Developers</a></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- FRENCH FRONTPAGE TRANSLATION STARTS HERE -->
|
||||||
|
|
||||||
<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Public Sites</a> | <a href="https://redmatrix.me">Project Home</a> | <a href="https://github.com/friendica/red">Code</a> | <a href="https://zothub.com/channel/one">Developers</a></div></center>
|
<div lang="fr" class="wrapper" style="display: none;">
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
La Matrice <span style="color: #c60032;">Rouge</span> « <span style="color: #c60032;">Red</span>Matrix » est une <strong>application web décentralisée</strong>. La centralisation des données sur des serveurs corporatifs met en jeux votre vie privée et vous assujettit à la volonté d'un tiers. Ainsi vos messages, fichiers, photos ne sont plus sous votre contrôle et sont partagés avec les agences de marketing ainsi que les gouvernements. La Matrice <span style="color: #c60032;">Rouge</span>, c'est un moyen de protéger votre identité ainsi que votre vie privée tout en conservant le plein contrôle sur le partage de vos données avec le monde.
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
La Matrice <span style="color: #c60032;">Rouge</span> est un réseau constitué de serveurs autonomes et indépendants. Ces serveurs, appelés « hubs », assurent la résilience de vos données sur le réseau. Chacun de ces « hubs » garantit des fonctions de communications (Messages privés, clavardage, blogue, forums et toutes les fonctions des réseaux sociaux) ainsi que des fonctions de gestions (photos, calendrier, partage de fichiers, création de pages web, création d'applications) à ses membres. En tout temps, votre vie privée et le choix du partage de votre contenu sont sous votre contrôle exclusif.
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
La Matrice <span style="color: #c60032;">Rouge</span> est unique; elle transporte votre identité à l'aide d'une méthode d'authentification innovatrice appelée « authentification magique » - laquelle est le résultat de la recherche et du développement appliquée au service d'<strong>identité décentralisée</strong>. Aucune autre plateforme n'offre ce type d'identité « nomade ». Ainsi, une fois authentifié, vous avez le loisir de vous « promener » d'un serveur à l'autre sans avoir à reconfirmer votre identité. De plus, la Matrice <span style="color: #c60032;">Rouge</span> vous permet de « cloner » votre identité et de la porter sur un « hub » différent de celui ou vous vous êtes inscrit. Voilà encore un moyen de vous défendre contre toutes formes de censure pour préserver votre identité, vos listes d'amis, vos publications, photos et fichiers advenant le cas ou votre « hub » préféré serait mis hors ligne. (temporairement ou permanemment).
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
La Matrice <span style="color: #c60032;">Rouge</span> est un outil idéal pour toutes les communautés en passant par les particuliers et les familles tout en incluant les forums, sites-web d'affaires ainsi que les organisations. C'est une solution de remplacement, non négligeable, aux réseaux sociaux actuels rendue accessible à tous ceux qui sont soucieux de leur vie privée et qui souhaitent conserver le contrôle de leur présence sur internet.<br />
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div style="margin-bottom: 15px; color: #808080; font-size: 1.8em;"><strong>RedMatrix - "The Network"</strong></div>
|
||||||
|
<div style="font-size: 1.4em;">
|
||||||
|
<a href="register" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">M'inscrire!</a>
|
||||||
|
<a href="donate" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Dons / Sponsors</a>
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Hubs public</a> | <a href="https://redmatrix.me">Le Projet</a> | <a href="https://github.com/friendica/red">Source</a> | <a href="https://zothub.com/channel/one">Developpeurs</a></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- NETHERLANDS TRANSLATIONS STARTS HERE -->
|
||||||
|
|
||||||
|
<div lang="nl" class="wrapper" style="display: none;">
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
De <strong>Red Matrix</strong> (ook bekend als "<span style="color: #c60032;">red</span>") is een opensource webapplicatie dat een volledig systeem biedt voor <em>gedecentraliseerd</em> publiceren, delen en communiceren. Het combineert communicatie (een <em>sociaal netwerk</em>, chat en privécommunicatie) en mediabeheer (foto's, bookmarks, bestanden, webpagina's en apps), met zoveel mogelijkheden dat het je begint te duizelen.
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
Wat de Red Matrix uniek maakt is de zogenaamde “magische authenticatie”. Wat gebaseerd is op ons baanbrekende werk in gedecentraliseerde identificatie. Dit knoopt alle Red Matrix-hubs en -kanalen aan elkaar, waardoor er één groot supernetwerk ontstaat waarin de grenzen tussen verschillende websites zijn vervaagd of niet meer lijken te bestaan. Waar “wie je bent” niets te maken heeft met met “wat voor computerserver je verbonden bent” en waar de inhoud van webpagina's zich kan aanpassen aan wie er naar kijkt.
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
Waarschuwing: Nadat je de “magische authenticatie” en een “nomadische identiteit” ervaren hebt, kan het erg storend zijn en een beetje “primitief” om terug te moeten keren naar het oude internet. Je hoeft geen honderden verschillende wachtwoorden te onthouden om het web te gebruiken... of om volledig geïsoleerd te zijn van je vrienden en familie, omdat een server of router in een ander land "<em>problemen</em>" ondervindt.
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="tr" style="font-size: 1.4em; color: #666; margin-left: 75px; margin-right: 75px;">
|
||||||
|
Voor een gewoon mens is het grootste voordeel van een gedecentraliseerde identiteit dat jij kan beslissen met wie je jouw gegevens deelt. En wanneer iemand niet jouw toestemming heeft, dan krijgt hij/zij het ook niet te zien. Je hebt alles onder controle, gebruik de Red Matrix als een sociaal netwerk óf een bedrijfswebsite óf als persoonlijke cloud-opslag óf om media te publiceren, of voor wat voor toepassing dan ook. Als grens geldt alleen jouw verbeelding.<br />
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div style="margin-bottom: 15px; color: #808080; font-size: 1.8em;"><strong>RedMatrix - "The Network"</strong></div>
|
||||||
|
<div style="font-size: 1.4em;">
|
||||||
|
<a href="register" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">Meld je nu aan!</a>
|
||||||
|
<a href="donate" style="color: white; padding:10px; background-color: #c60032; border-radius: 10px;">schenking</a>
|
||||||
|
</div>
|
||||||
|
<div style="margin-top: 15px; margin-bottom: 15px;"><a href="pubsites">Andere openbare hubs</a> | <a href="https://redmatrix.me">Projectwebsite</a> | <a href="https://github.com/friendica/red">Broncode</a> | <a href="https://zothub.com/channel/one">Ontwikkelaars</a></div>
|
||||||
|
</div>
|
||||||
|
<!-- INSERT NEW TRANSLATIONS HERE -->
|
||||||
|
|
||||||
|
<!-- DO NOT REMOVE THE 2 LINES BELOW -->
|
||||||
|
</div>
|
||||||
|
</center>
|
||||||
|
|
||||||
|
1
error_log
Normal file
1
error_log
Normal file
@ -0,0 +1 @@
|
|||||||
|
[24-Jul-2014 22:00:18 UTC] PHP Warning: file_get_contents(version.inc): failed to open stream: No such file or directory in /home/mycocham/public_html/red/boot.php on line 47
|
35
robots.txt
Normal file
35
robots.txt
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# If the Joomla site is installed within a folder such as at
|
||||||
|
# e.g. www.example.com/joomla/ the robots.txt file MUST be
|
||||||
|
# moved to the site root at e.g. www.example.com/robots.txt
|
||||||
|
# AND the joomla folder name MUST be prefixed to the disallowed
|
||||||
|
# path, e.g. the Disallow rule for the /administrator/ folder
|
||||||
|
# MUST be changed to read Disallow: /joomla/administrator/
|
||||||
|
#
|
||||||
|
# For more information about the robots.txt standard, see:
|
||||||
|
# http://www.robotstxt.org/orig.html
|
||||||
|
#
|
||||||
|
# For syntax checking, see:
|
||||||
|
# http://tool.motoricerca.info/robots-checker.phtml
|
||||||
|
|
||||||
|
User-agent: *
|
||||||
|
Disallow: /.git/
|
||||||
|
Disallow: /store/
|
||||||
|
Disallow: /addon/
|
||||||
|
Disallow: /include/
|
||||||
|
Disallow: /view/
|
||||||
|
Disallow: /vendor/
|
||||||
|
Disallow: /util/
|
||||||
|
Disallow: /tests/
|
||||||
|
Disallow: /mod/
|
||||||
|
Disallow: /library/
|
||||||
|
Disallow: /install/
|
||||||
|
Disallow: /images/
|
||||||
|
Disallow: /doc/
|
||||||
|
Disallow: /assets/
|
||||||
|
Disallow: /app/
|
||||||
|
|
||||||
|
#Begin Attracta SEO Tools Sitemap. Do not remove
|
||||||
|
sitemap: http://cdn.attracta.com/sitemap/3798343.xml.gz
|
||||||
|
#End Attracta SEO Tools Sitemap. Do not remove
|
||||||
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Message de Friendica</title>
|
<title>Message de la Matrice</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
Dear {{$myname}},
|
Cher {{$myname}},
|
||||||
|
|
||||||
You have a new follower at {{$sitename}} - '{{$requestor}}'.
|
Vous avez un nouvel admirateur {{$sitename}} - '{{$requestor}}'.
|
||||||
|
|
||||||
You may visit their profile at {{$url}}.
|
Vous pouvez visiter son profil ici {{$url}}.
|
||||||
|
|
||||||
Please login to your site to approve or ignore/cancel the request.
|
Veuillez vous enregistrer sur votre hub pour approuver ou ignorer/supprimer cette requête.
|
||||||
|
|
||||||
{{$siteurl}}
|
{{$siteurl}}
|
||||||
|
|
||||||
Regards,
|
Bien à vous,
|
||||||
|
|
||||||
{{$sitename}} administrator
|
Administrateur {{$sitename}}
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Dear {{$username}},
|
Cher {{$username}},
|
||||||
|
|
||||||
Great news... '{{$fn}}' at '{{$dfrn_url}}' has accepted
|
Bonne nouvelle... '{{$fn}}' de '{{$dfrn_url}}' a accepté
|
||||||
your connection request at '{{$sitename}}'.
|
votre requête de contact sur '{{$sitename}}'.
|
||||||
|
|
||||||
You are now mutual friends and may exchange status updates, photos, and email
|
Vous entrer maintenant en relation et pouvez échanger vos statuts, photos et courriel
|
||||||
without restriction.
|
sans restrictions.
|
||||||
|
|
||||||
Please visit your 'Connnections' page at {{$sitename}} if you wish to make
|
Visiter la page de vos 'relations' {{$sitename}} pour tout
|
||||||
any changes to this relationship.
|
changements de statut avec cette relation.
|
||||||
|
|
||||||
{{$siteurl}}
|
{{$siteurl}}
|
||||||
|
|
||||||
[For instance, you may create a separate profile with information that is not
|
[Par exemple, vous pouvez créer un profil distinct avec des information qui ne sont pas
|
||||||
available to the general public - and assign viewing rights to '{{$fn}}'].
|
accessible au public en général - et définir les autorisations de '{{$fn}}'].
|
||||||
|
|
||||||
Sincerely,
|
Sincèrement,
|
||||||
|
|
||||||
{{$sitename}} Administrator
|
Administrateur {{$sitename}}
|
||||||
|
|
||||||
|
|
@ -1,7 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Set the following for your MySQL installation
|
// Set the following for your MySQL installation
|
||||||
|
// Utilisez ces informations pour configurer votre instance de BD (MySQL)
|
||||||
// Copy or rename this file to .htconfig.php
|
// Copy or rename this file to .htconfig.php
|
||||||
|
// Copier ou renomer ce fichier .htconfig.php et placer le à la racine de l'installation de la Matrice Rouge.
|
||||||
|
|
||||||
$db_host = '{{$dbhost}}';
|
$db_host = '{{$dbhost}}';
|
||||||
$db_port = '{{$dbport}}';
|
$db_port = '{{$dbport}}';
|
||||||
@ -10,61 +12,60 @@ $db_pass = '{{$dbpass}}';
|
|||||||
$db_data = '{{$dbdata}}';
|
$db_data = '{{$dbdata}}';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Notice: Many of the following settings will be available in the admin panel
|
* Note: Plusieurs de ces réglages seront disponibles via le panneau d'administration
|
||||||
* after a successful site install. Once they are set in the admin panel, they
|
* après l'installation. Lorsque des modifications sont apportés à travers le panneau d'administration
|
||||||
* are stored in the DB - and the DB setting will over-ride any corresponding
|
* elle sont automatiquement enregistrées dans la base de données.
|
||||||
* setting in this file
|
* Les configurations inscrites dans la BD prévalent sur celles de ce fichier de configuration.
|
||||||
*
|
*
|
||||||
* The command-line tool util/config is able to query and set the DB items
|
* En cas de difficultés d'accès au panneau d'administration, nous mettons à votre disposition,
|
||||||
* directly if for some reason the admin panel is not available and a system
|
* un outil en ligne de commande est disponible [util/config] pour rechercher et apporter des modifications
|
||||||
* setting requires modification.
|
* sur les entrées dans la BD.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// Choisissez votre emplacement géographique. Si vous n'êtes pas certain, utilisez "America/Los_Angeles".
|
||||||
// Choose a legal default timezone. If you are unsure, use "America/Los_Angeles".
|
// Vous pourrez le changer plus tard et ce réglage n'affecte que les visiteurs anonymes.
|
||||||
// It can be changed later and only applies to timestamps for anonymous viewers.
|
|
||||||
|
|
||||||
$default_timezone = '{{$timezone}}';
|
$default_timezone = '{{$timezone}}';
|
||||||
|
|
||||||
// What is your site name?
|
// Quel sera le nom de votre site?
|
||||||
|
|
||||||
$a->config['system']['baseurl'] = '{{$siteurl}}';
|
$a->config['system']['baseurl'] = '{{$siteurl}}';
|
||||||
$a->config['system']['sitename'] = "Red Matrix";
|
$a->config['system']['sitename'] = "Matrice Rouge";
|
||||||
$a->config['system']['location_hash'] = '{{$site_id}}';
|
$a->config['system']['location_hash'] = '{{$site_id}}';
|
||||||
|
|
||||||
// Your choices are REGISTER_OPEN, REGISTER_APPROVE, or REGISTER_CLOSED.
|
// Vos choix sont REGISTER_OPEN, REGISTER_APPROVE, ou REGISTER_CLOSED.
|
||||||
// Be certain to create your own personal account before setting
|
// Soyez certains de créer votre compte personnel avant de déclarer
|
||||||
// REGISTER_CLOSED. 'register_text' (if set) will be displayed prominently on
|
// votre site REGISTER_CLOSED. 'register_text' (si vous décider de l'utiliser)
|
||||||
// the registration page. REGISTER_APPROVE requires you set 'admin_email'
|
// renvois son contenu systématiquement sur la page d'enregistrement des nouveaux membres.
|
||||||
// to the email address of an already registered person who can authorise
|
// REGISTER_APPROVE requiert la configuration de 'admin_email' avec l'adresse de courriel
|
||||||
// and/or approve/deny the request.
|
// d'un membre déjà inscrit qui pourra autoriser et/ou approuver/supprimer la demande.
|
||||||
|
|
||||||
$a->config['system']['register_policy'] = REGISTER_OPEN;
|
$a->config['system']['register_policy'] = REGISTER_OPEN;
|
||||||
$a->config['system']['register_text'] = '';
|
$a->config['system']['register_text'] = '';
|
||||||
$a->config['system']['admin_email'] = '{{$adminmail}}';
|
$a->config['system']['admin_email'] = '{{$adminmail}}';
|
||||||
|
|
||||||
// Maximum size of an imported message, 0 is unlimited
|
// taille maximale pour l'importation d'un message, 0 est illimité
|
||||||
|
|
||||||
$a->config['system']['max_import_size'] = 200000;
|
$a->config['system']['max_import_size'] = 200000;
|
||||||
|
|
||||||
// maximum size of uploaded photos
|
// taille maximale pour le téléversement de photos
|
||||||
|
|
||||||
$a->config['system']['maximagesize'] = 800000;
|
$a->config['system']['maximagesize'] = 800000;
|
||||||
|
|
||||||
// Location of PHP command line processor
|
// Lien absolu vers le compilateur PHP
|
||||||
|
|
||||||
$a->config['system']['php_path'] = '{{$phpath}}';
|
$a->config['system']['php_path'] = '{{$phpath}}';
|
||||||
|
|
||||||
// Configure how we communicate with directory servers.
|
// configurez la façon dont votre site communique avec les autres serveurs. [Répertoire des membres inscrits à la Matrice]
|
||||||
// DIRECTORY_MODE_NORMAL = directory client, we will find a directory
|
// DIRECTORY_MODE_NORMAL = client du répertoire de membres, nous vous trouverons un répertoire accessible autre serveur.
|
||||||
// DIRECTORY_MODE_SECONDARY = caching directory or mirror
|
// DIRECTORY_MODE_SECONDARY = copie mirroir du répertoire des membres.
|
||||||
// DIRECTORY_MODE_PRIMARY = main directory server
|
// DIRECTORY_MODE_PRIMARY = répertoire des membres principal.
|
||||||
// DIRECTORY_MODE_STANDALONE = "off the grid" or private directory services
|
// DIRECTORY_MODE_STANDALONE = "autonome/déconnecté" ou répertoire de membres privés
|
||||||
|
|
||||||
$a->config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL;
|
$a->config['system']['directory_mode'] = DIRECTORY_MODE_NORMAL;
|
||||||
|
|
||||||
// default system theme
|
// Thème par défaut
|
||||||
|
|
||||||
$a->config['system']['theme'] = 'redbasic';
|
$a->config['system']['theme'] = 'redbasic';
|
||||||
|
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
|
|
||||||
Dear {{$username}},
|
Cher {{$username}},
|
||||||
|
|
||||||
'{{$fn}}' at '{{$dfrn_url}}' has accepted
|
'{{$fn}}' de '{{$dfrn_url}}' a accepté
|
||||||
your connection request at '{{$sitename}}'.
|
votre requête de relation sur '{{$sitename}}'.
|
||||||
|
|
||||||
'{{$fn}}' has chosen to accept you a "fan", which restricts
|
'{{$fn}}' vous accepte comme un "fan", ceci restreint
|
||||||
some forms of communication - such as private messaging and some profile
|
certaines formes de communications - tel que les messages privés et quelques modes
|
||||||
interactions. If this is a celebrity or community page, these settings were
|
d'intéractions avec le profil. S'il s'agît de la page d'une célébrité ou de la page d'une communauté,
|
||||||
applied automatically.
|
ces réglages ont été appliqués automatiquement.
|
||||||
|
|
||||||
'{{$fn}}' may choose to extend this into a two-way or more permissive
|
'{{$fn}}' peut choisir d'étendre les permissions de cette relation
|
||||||
relationship in the future.
|
dans le futur.
|
||||||
|
|
||||||
You will start receiving public status updates from '{{$fn}}',
|
Vous allez commencer à recevoir les changements de statuts de '{{$fn}}',
|
||||||
which will appear on your 'Matrix' page at
|
ils seront ajoutés à votre fil de nouvelle sur
|
||||||
|
|
||||||
{{$siteurl}}
|
{{$siteurl}}
|
||||||
|
|
||||||
Sincerely,
|
Sincèrement,
|
||||||
|
|
||||||
{{$sitename}} Administrator
|
Administrateur {{$sitename}}
|
@ -1,32 +1,30 @@
|
|||||||
|
|
||||||
Dear {{$username}},
|
Cher {{$username}},
|
||||||
A request was recently received at {{$sitename}} to reset your account
|
Une demande pour réinitialiser votre mot de passe a récemment été reçu de {{$sitename}}
|
||||||
password. In order to confirm this request, please select the verification link
|
Pour confirmer cette requête, veuillez suivre le lien de vérification
|
||||||
below or paste it into your web browser address bar.
|
suivant ou copier-coller le dans la barre d'adresse de votre navigateur.
|
||||||
|
|
||||||
If you did NOT request this change, please DO NOT follow the link
|
Si vous N'AVEZ PAS demander ce changement, NE SUIVEZ PAS ce lien, ignorez simplement et/ou supprimer ce courriel.
|
||||||
provided and ignore and/or delete this email.
|
|
||||||
|
|
||||||
Your password will not be changed unless we can verify that you
|
Votre mot de passe ne sera pas changé à moins que nous puissions vérifier vos intentions.
|
||||||
issued this request.
|
|
||||||
|
|
||||||
Follow this link to verify your identity:
|
Suivez ce lien pour vérifier votre identité:
|
||||||
|
|
||||||
{{$reset_link}}
|
{{$reset_link}}
|
||||||
|
|
||||||
You will then receive a follow-up message containing the new password.
|
Vous recevrez ensuite un second courriel avec votre nouveau mot de passe.
|
||||||
|
|
||||||
You may change that password from your account settings page after logging in.
|
Vous pouvez changez ce mot de passe à partir de la page des configurations de votre profil.
|
||||||
|
|
||||||
The login details are as follows:
|
Voici les détails de connections:
|
||||||
|
|
||||||
Site Location: {{$siteurl}}
|
Emplacement du site:⇥{{$siteurl}}
|
||||||
Login Name: {{$email}}
|
Usager:⇥{{$email}}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Sincerely,
|
Sincèrement,
|
||||||
{{$sitename}} Administrator
|
Administrateur {{$sitename}}
|
||||||
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional //EN">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Message de Friendica</title>
|
<title>Message de la Matrice</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
11894
view/fr/messages.po
11894
view/fr/messages.po
File diff suppressed because it is too large
Load Diff
@ -1,20 +1,19 @@
|
|||||||
|
|
||||||
Dear {{$username}},
|
Cher {{$username}},
|
||||||
Your password has been changed as requested. Please retain this
|
Votre mot de passe a bien été réinitialisé.
|
||||||
information for your records (or change your password immediately to
|
Veuillez conserver cette information (ou changer immédiatement ce mot de passe temporaire).
|
||||||
something that you will remember).
|
|
||||||
|
|
||||||
|
|
||||||
Your login details are as follows:
|
Voici les détails de connections:
|
||||||
|
|
||||||
Site Location: {{$siteurl}}
|
Emplacement du site:⇥{{$siteurl}}
|
||||||
Login Name: {{$email}}
|
Usager:⇥{{$email}}
|
||||||
Password: {{$new_password}}
|
Mot de passe:⇥{{$new_password}}
|
||||||
|
|
||||||
You may change that password from your account settings page after logging in.
|
Vous pouvez changez ce mot de passe à partir des réglages du profil après vous être connecté.
|
||||||
|
|
||||||
|
|
||||||
Sincerely,
|
Sincèrement,
|
||||||
{{$sitename}} Administrator
|
Administrateur {{$sitename}}
|
||||||
|
|
||||||
|
|
@ -1,19 +1,19 @@
|
|||||||
|
|
||||||
An account has been created at {{$sitename}} for this email address.
|
Un compte a été créé sur {{$sitename}} avec cette adresse de courriel.
|
||||||
The login details are as follows:
|
Voici les détails de connections:
|
||||||
|
|
||||||
Site Location: {{$siteurl}}
|
Emplacement du site:⇥{{$siteurl}}
|
||||||
Login: {{$email}}
|
Usager:⇥{{$email}}
|
||||||
Password: (the password which was provided during registration)
|
Mot de passe: (le mot de passe tel qu'il a été spécifier lors de l'enregistrement)
|
||||||
|
|
||||||
If this account was created without your knowledge and is not desired, you may
|
Si ce compte a été créé sans votre accord, vous pouvez
|
||||||
visit this site and reset the password. This will allow you to remove the
|
visiter ce site et réinitialiser le mot de passe.
|
||||||
account from the links on the Settings page, and we
|
Ceci vous permettra de supprimer le compte à partir de la page des réglages du profil.
|
||||||
apologise for any inconvenience.
|
Veuillez accepter nos excuses pour tous les inconvénients que cela a pu engendrer.
|
||||||
|
|
||||||
Thank you and welcome to {{$sitename}}.
|
Merci et Bienvenu sur {{$sitename}}.
|
||||||
|
|
||||||
Sincerely,
|
Sincèrement,
|
||||||
{{$sitename}} Administrator
|
Administrateur {{$sitename}}
|
||||||
|
|
||||||
|
|
@ -1,25 +1,24 @@
|
|||||||
|
|
||||||
A new user registration request was received at {{$sitename}} which requires
|
Une demande d'enregistrement pour un nouvel usager a été reçue de {{$sitename}} laquelle requiert
|
||||||
your approval.
|
votre accord.
|
||||||
|
|
||||||
|
|
||||||
The login details are as follows:
|
Voici les détails de connections:
|
||||||
|
|
||||||
Site Location: {{$siteurl}}
|
Emplacement du site:⇥{{$siteurl}}
|
||||||
Login Name: {{$email}}
|
Usager:⇥{{$email}}
|
||||||
IP Address: {{$details}}
|
Adresse IP: {{$details}}
|
||||||
|
|
||||||
To approve this request please visit the following link:
|
Pour confirmer votre accord, veuillez visiter le lien suivant:
|
||||||
|
|
||||||
|
|
||||||
{{$siteurl}}/regmod/allow/{{$hash}}
|
{{$siteurl}}/regmod/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
To deny the request and remove the account, please visit:
|
Pour supprimer ce compte, veuillez visiter:
|
||||||
|
|
||||||
|
|
||||||
{{$siteurl}}/regmod/deny/{{$hash}}
|
{{$siteurl}}/regmod/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
Thank you.
|
Merci.
|
||||||
|
|
||||||
|
24
view/fr/register_verify_member.tpl
Normal file
24
view/fr/register_verify_member.tpl
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
Merci de vous être enregistré sur {{$sitename}}.
|
||||||
|
|
||||||
|
Voici les détails de connections:
|
||||||
|
|
||||||
|
Emplacement du site:⇥{{$siteurl}}
|
||||||
|
Usager:⇥{{$email}}
|
||||||
|
|
||||||
|
Connectez-vous avec le mot de passe que vous avez choisi au moment de l'enregistrement.
|
||||||
|
|
||||||
|
Nous avons besoin de vérifier votre adresse de courriel avant d’autoriser votre accès sur le réseau.
|
||||||
|
|
||||||
|
Si vous avez enregistré ce compte, veuillez visiter ce lien:
|
||||||
|
|
||||||
|
{{$siteurl}}/regver/allow/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
|
Pour supprimer ce compte, veuillez visiter:
|
||||||
|
|
||||||
|
|
||||||
|
{{$siteurl}}/regver/deny/{{$hash}}
|
||||||
|
|
||||||
|
|
||||||
|
Merci.
|
@ -1,17 +1,17 @@
|
|||||||
|
|
||||||
Dear {{$myname}},
|
Cher {{$myname}},
|
||||||
|
|
||||||
You have just received a connection request at {{$sitename}}
|
Vous venez de recevoir une demande de relation sur {{$sitename}}
|
||||||
|
|
||||||
from '{{$requestor}}'.
|
de '{{$requestor}}'.
|
||||||
|
|
||||||
You may visit their profile at {{$url}}.
|
Vous pouvez visiter son profil ici {{$url}}.
|
||||||
|
|
||||||
Please login to your site to view the complete introduction
|
Veuillez vos connecter pour voir son profil
|
||||||
and approve or ignore/cancel the request.
|
et approuver ou ignorer/supprimer cette requête.
|
||||||
|
|
||||||
{{$siteurl}}
|
{{$siteurl}}
|
||||||
|
|
||||||
Regards,
|
Bien à vous,
|
||||||
|
|
||||||
{{$sitename}} administrator
|
Administrateur {{$sitename}}
|
2516
view/fr/strings.php
2516
view/fr/strings.php
File diff suppressed because it is too large
Load Diff
@ -1,13 +1,16 @@
|
|||||||
Hey,
|
Bonjour,
|
||||||
I'm the web server at {{$sitename}};
|
Je suis le serveur web de {{$sitename}};
|
||||||
|
|
||||||
The Red Matrix developers released update {{$update}} recently,
|
Les développeurs de la Matrice Rouge viennent de lancer une mise-à-jour {{$update}} récemment,
|
||||||
but when I tried to install it, something went terribly wrong.
|
toutefois, lorsque j'ai essayé de l'installer, quelques choses d'inattendu s'est produit.
|
||||||
This needs to be fixed soon and it requires human intervention.
|
|
||||||
Please contact a Red developer if you can not figure out how to
|
Nous devons corriger la situation et cela requiert votre intervention.
|
||||||
fix it on your own. My database might be invalid.
|
|
||||||
|
Veuillez contacter un développeur de la Matrice Rouge si vous avez de la difficulté à déterminer
|
||||||
The error message is '{{$error}}'.
|
la meilleure approche pour résoudre le problème. Ma base de donnée est peut-être corrompue.
|
||||||
|
|
||||||
Apologies for the inconvenience,
|
Le message d'erreur est '{{$error}}'.
|
||||||
your web server at {{$siteurl}}
|
|
||||||
|
Veuillez accepter mes plus humbles excuses pour les inconvénients,
|
||||||
|
|
||||||
|
votre serveur web a {{$siteurl}}
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
Cher(e) $username,
|
Cher(e) $username,
|
||||||
|
|
||||||
« $from » a posté quelque chose sur le mur de votre profil.
|
« $from » a publié quelque chose sur le mur de votre profil.
|
||||||
|
|
||||||
-----
|
-----
|
||||||
$body
|
$body
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
<div id="banner" class="hidden-sm hidden-xs">{{$banner}}</div>
|
<div id="banner" class="hidden-sm hidden-xs">{{$banner}}
|
||||||
|
<!--accept bitcoins through coinbase (https://coinbase.com/)-->
|
||||||
|
<a class="coinbase-button" data-code="7a7dc20e073d84e7d81dcf8f5acb9a4e" data-button-style="donation_small" href="https://coinbase.com/checkouts/7a7dc20e073d84e7d81dcf8f5acb9a4e">CLICK TO DONATE</a><script src="https://coinbase.com/assets/button.js" type="text/javascript"></script>
|
||||||
|
</div>
|
||||||
|
|
||||||
<ul id="nav-notifications-template" style="display:none;" rel="template">
|
<ul id="nav-notifications-template" style="display:none;" rel="template">
|
||||||
<li class="{5}"><a href="{0}" title="{2} {3}"><img data-src="{1}"><span class='contactname'>{2}</span>{3}<br><span class="notif-when">{4}</span></a></li>
|
<li class="{5}"><a href="{0}" title="{2} {3}"><img data-src="{1}"><span class='contactname'>{2}</span>{3}<br><span class="notif-when">{4}</span></a></li>
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
||||||
<base href="{{$baseurl}}/" />
|
<base href="{{$baseurl}}/" />
|
||||||
|
<META NAME="description" CONTENT="The RedMatrix is a super network created from a huge number of smaller independent and autonomous websites - which are linked together...">
|
||||||
|
<META NAME="keywords" CONTENT="network,matrix,social,communications,social networking,content ownership,privacy and content ownership">
|
||||||
|
<META NAME="robot" CONTENT="index,follow">
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=0" />
|
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=0" />
|
||||||
<meta name="generator" content="{{$generator}}" />
|
<meta name="generator" content="{{$generator}}" />
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user