import v2.0.0.0_RC3 | 2012-07-01
https://github.com/lucanos/CommunityID -> http://www.itadmins.net/archives/357
This commit is contained in:
22
modules/default/views/scripts/about/index-it.phtml
Normal file
22
modules/default/views/scripts/about/index-it.phtml
Normal file
@ -0,0 +1,22 @@
|
||||
<p>
|
||||
Community-ID è un servizio fornito da Keyboard Monkeys Ltd., Community as a Service ™.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Keyboard Monkeys Ltd. si concentra sul fornire soluzioni open source e prodotti mirati a rendere più forti le community su Internet. Forniamo inoltre consulenza, con un ampio supporto per le tecnologie open source, sopratutto soluzioni e prodotti per le community.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Questi sono i nostri prodotti e servizi attualmente forniti o in corso di sviluppo:
|
||||
<ul>
|
||||
<li>
|
||||
<b><a href="http://sourceforge.net/projects/sciret">Sciret</a></b> - Enterprise Knowledge Base System
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="http://sourceforge.net/projects/textroller">TextRoller</a></b> - Piattaforma per blog
|
||||
</li>
|
||||
<li>
|
||||
<b>Community Solutions</b> - Open Source Project Collaboration (Attualmente in sviluppo)
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
23
modules/default/views/scripts/about/index-ja.phtml
Normal file
23
modules/default/views/scripts/about/index-ja.phtml
Normal file
@ -0,0 +1,23 @@
|
||||
<p>
|
||||
Community-IDは、Keyboard Monkeys Ltd., Community as a Service ™によって提供されるサービスです。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Keyboard Monkeys Ltd. は、インターネットのコミュニティに対して貢献できるオープンソースのソリューションや製品を提供することに力を注いでおります。 私どもは個別のコンサルティングに加え幅広いオープンソース技術に関するサポートを行っております。なかでもコミュニティを基本としたソリューションや製品を得意としています。
|
||||
</p>
|
||||
|
||||
<p>
|
||||
その他のサービスや製品(計画中を含みます)には以下の様なものがあります:
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<b><a href="http://sourceforge.net/projects/sciret">Sciret</a></b> - Enterprise Knowledge Base System
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="http://sourceforge.net/projects/textroller">TextRoller</a></b> - Blogging platform
|
||||
</li>
|
||||
<li>
|
||||
<b>Community Solutions</b> - Open Source Project Collaboration (Currently under initial development stages)
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
0
modules/default/views/scripts/error/error.phtml
Executable file → Normal file
0
modules/default/views/scripts/error/error.phtml
Executable file → Normal file
0
modules/default/views/scripts/history/index.phtml
Executable file → Normal file
0
modules/default/views/scripts/history/index.phtml
Executable file → Normal file
@ -33,7 +33,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<?php endforech ?>
|
||||
<?php endforeach ?>
|
||||
<?php if (count($this->news) == 0): ?>
|
||||
<div>
|
||||
<?php echo $this->translate('There are no news articles yet') ?>
|
||||
|
59
modules/default/views/scripts/index/index-it.phtml
Normal file
59
modules/default/views/scripts/index/index-it.phtml
Normal file
@ -0,0 +1,59 @@
|
||||
<div id="home">
|
||||
<h2>
|
||||
Community ID: Autenticazione OpenID gratuita<br />
|
||||
Completamente basato su tecnologie Open Source
|
||||
</h2>
|
||||
<div class="yui-g">
|
||||
<div class="yui-u first">
|
||||
<p>
|
||||
Sin dalla fase di progettazione, Community-ID è stato costruito con la massima attenzione alla sicurezza. Ogni elemento della nostra piattaforma è stato scelto considerando la sua storia di sicurezza e, più importante, tutto è Open Source.
|
||||
</p>
|
||||
<p>
|
||||
Questo vuol dire che siamo aperti ai controlli di chiunque nel mondo. E' un dato provato che "security by obscurity" non funziona, e quando si usa un prodotto o servizio il cui meccanismo di funzionamento è tenuto segreto, si espone sè stessi e i propri dati ad un grande rischio.
|
||||
</p>
|
||||
<p style="font-weight: bold; text-align:center">
|
||||
Perchè aspettare ancora?<br />
|
||||
Semplifica la tua vita e riduci il rischio.<br /><br />
|
||||
<a href="<?php echo $this->base ?>/users/register">APRI UN ACCOUNT ADESSO</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<div id="homeNews">
|
||||
<h3>Latest News</h3>
|
||||
<ul>
|
||||
<?php foreach ($this->news as $item): ?>
|
||||
<li>
|
||||
<div>
|
||||
<a href="<?php echo $this->base . '/news/' . $item->id ?>"><?php echo $item->title ?></a>
|
||||
</div>
|
||||
<div class="newsExcerpt">
|
||||
<?php echo $item->excerpt ?>
|
||||
<div>
|
||||
<a class="readMore" href="<?php echo $this->base . '/news/' . $item->id ?>"><?php echo $this->translate('Read More') ?></a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<?php endforeach ?>
|
||||
<?php if (count($this->news) == 0): ?>
|
||||
<div>
|
||||
<?php echo $this->translate('There are no news articles yet') ?>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
</ul> <!-- FF bug -->
|
||||
<div style="position:relative">
|
||||
<div class="linksTopRight">
|
||||
<?php if (count($this->news) > 0): ?>
|
||||
<a href="<?php echo $this->base ?>/news"><?php echo $this->translate('View All') ?></a>
|
||||
<?php endif ?>
|
||||
<?php if ($this->user->role == Users_Model_User::ROLE_ADMIN): ?>
|
||||
|
|
||||
<a href="<?php echo $this->base ?>/news/edit/add"><?php echo $this->translate('Add New Article') ?></a>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="borderFadingLeft">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
59
modules/default/views/scripts/index/index-ja.phtml
Normal file
59
modules/default/views/scripts/index/index-ja.phtml
Normal file
@ -0,0 +1,59 @@
|
||||
<div id="home">
|
||||
<h2>
|
||||
Community ID: 無料のOpenID認証<br />
|
||||
100%オープンソース技術で構築
|
||||
</h2>
|
||||
<div class="yui-g">
|
||||
<div class="yui-u first">
|
||||
<p>
|
||||
Community-IDは、開発当初からセキュリティを最も重要な事項と位置づけて開発されてきました。技術要素の選定にあたっては、そのセキュリティ関係の問題がこれまでどうなのかを十分に吟味し、すべてオープンソースであることを重要視してきました。
|
||||
</p>
|
||||
<p>
|
||||
つまり我々の技術はどなたでも精査していただいて構わないということです。 内容が不明なセキュリティというものは使い物にならないことはよく知られています。もし内容がブラックボックスのままの製品やサービスを使うということは、あなたのデータ(そしてあなた自身を)危険にさらしてしまうことにつながります。
|
||||
</p>
|
||||
<p style="font-weight: bold; text-align:center">
|
||||
さあ今すぐに簡単にリスクを軽減する方法をとりましょう。<br />
|
||||
<br />
|
||||
<a href="<?php echo $this->base ?>/users/register">アカウントを登録</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="yui-u">
|
||||
<div id="homeNews">
|
||||
<h3>最新ニュース</h3>
|
||||
<ul>
|
||||
<?php foreach ($this->news as $item): ?>
|
||||
<li>
|
||||
<div>
|
||||
<a href="<?php echo $this->base . '/news/' . $item->id ?>"><?php echo $item->title ?></a>
|
||||
</div>
|
||||
<div class="newsExcerpt">
|
||||
<?php echo $item->excerpt ?>
|
||||
<div>
|
||||
<a class="readMore" href="<?php echo $this->base . '/news/' . $item->id ?>"><?php echo $this->translate('Read More') ?></a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<?php endforeach ?>
|
||||
<?php if (count($this->news) == 0): ?>
|
||||
<div>
|
||||
<?php echo $this->translate('There are no news articles yet') ?>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
</ul> <!-- FF bug -->
|
||||
<div style="position:relative">
|
||||
<div class="linksTopRight">
|
||||
<?php if (count($this->news) > 0): ?>
|
||||
<a href="<?php echo $this->base ?>/news"><?php echo $this->translate('View All') ?></a>
|
||||
<?php endif ?>
|
||||
<?php if ($this->user->role == Users_Model_User::ROLE_ADMIN): ?>
|
||||
|
|
||||
<a href="<?php echo $this->base ?>/news/edit/add"><?php echo $this->translate('Add New Article') ?></a>
|
||||
<?php endif ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="borderFadingLeft">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
0
modules/default/views/scripts/index/subheader-de.phtml
Executable file → Normal file
0
modules/default/views/scripts/index/subheader-de.phtml
Executable file → Normal file
0
modules/default/views/scripts/index/subheader-en.phtml
Executable file → Normal file
0
modules/default/views/scripts/index/subheader-en.phtml
Executable file → Normal file
0
modules/default/views/scripts/index/subheader-es.phtml
Executable file → Normal file
0
modules/default/views/scripts/index/subheader-es.phtml
Executable file → Normal file
1
modules/default/views/scripts/index/subheader-it.phtml
Normal file
1
modules/default/views/scripts/index/subheader-it.phtml
Normal file
@ -0,0 +1 @@
|
||||
<!-- placeholder for home subheader -->
|
1
modules/default/views/scripts/index/subheader-ja.phtml
Normal file
1
modules/default/views/scripts/index/subheader-ja.phtml
Normal file
@ -0,0 +1 @@
|
||||
<!-- placeholder for home subheader -->
|
0
modules/default/views/scripts/index/subheader-sv.phtml
Executable file → Normal file
0
modules/default/views/scripts/index/subheader-sv.phtml
Executable file → Normal file
@ -1,16 +1,50 @@
|
||||
<form action="authenticate<?php echo $this->queryString ?>" method="post" class="formGrid">
|
||||
<?php echo $this->form->openIdIdentity ?>
|
||||
<?php echo $this->form->password ?>
|
||||
<?php if ($this->useCaptcha): ?>
|
||||
<?php echo $this->form->captcha ?>
|
||||
<?php endif ?>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<input type="submit" id="login" value="<?php echo $this->translate('Login') ?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("login");
|
||||
</script>
|
||||
<div style="position:relative">
|
||||
<? if ($this->form->getErrorMessages()): ?>
|
||||
<div class="messages" style="margin-bottom:20px">
|
||||
<?= implode('<br />', $this->form->getErrorMessages()) ?>
|
||||
</div>
|
||||
<div class="yui-u"> </div>
|
||||
</div>
|
||||
</form>
|
||||
<? endif ?>
|
||||
<form name="openidAuthenticate" action="authenticate<?php echo $this->queryString ?>" method="post" class="formGrid">
|
||||
<? if ($this->identity): ?>
|
||||
<div class="yui-gf" style="padding:10px 0">
|
||||
<div class="yui first"><?= $this->translate('OpenID URL') ?>:</div>
|
||||
<div class="yui-u"><?= $this->escape($this->identity) ?></div>
|
||||
</div>
|
||||
<? else: ?>
|
||||
<?= $this->form->openIdIdentity ?>
|
||||
<? endif ?>
|
||||
<? if ($this->yubikey->enabled && $this->yubikey->force): ?>
|
||||
<?= $this->form->yubikey ?>
|
||||
<? else: ?>
|
||||
<?= $this->form->password ?>
|
||||
<? endif ?>
|
||||
<?php if ($this->useCaptcha): ?>
|
||||
<?php echo $this->form->captcha ?>
|
||||
<?php endif ?>
|
||||
<div class="yui-gf">
|
||||
<div class="yui-u first">
|
||||
<input type="submit" id="login" value="<?php echo $this->translate('Login') ?>" />
|
||||
<script type="text/javascript">
|
||||
var oButton = new YAHOO.widget.Button("login");
|
||||
</script>
|
||||
</div>
|
||||
<div class="yui-u"> </div>
|
||||
</div>
|
||||
</form>
|
||||
<? if ($this->image): ?>
|
||||
<div style="position:absolute; right:-100px; top:-40px">
|
||||
<img src="<?= $this->base ?>/users/signinimage/image/id/<?= $this->image->cookie ?>"
|
||||
width="<?= $this->image->getWidth() ?>"
|
||||
height="<?= $this->image->getHeight() ?>"
|
||||
title="<?= $this->translate('This is the image that identifies your account in this computer') ?>"
|
||||
alt="<?= $this->translate('This is the image that identifies your account in this computer') ?>" />
|
||||
</div>
|
||||
<? endif ?>
|
||||
<script>
|
||||
try {
|
||||
document.openidAuthenticate.password.focus();
|
||||
document.openidAuthenticate.yubikey.focus();
|
||||
} catch(e) {
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
|
@ -4,21 +4,20 @@
|
||||
</div>
|
||||
<form method="post" action="proceed<?php echo $this->queryString ?>" class="formGrid">
|
||||
<input type="hidden" name="action" value="proceed">
|
||||
<?php if ($this->fields): ?>
|
||||
<? if ($this->showProfileForm): ?>
|
||||
<br />
|
||||
<?php echo $this->translate('It also requests this additional information about you:') ?><br /><br />
|
||||
<?php echo $this->translate('Fields are automatically filled according to the personal info stored in your community-id account.') ?><br />
|
||||
<?php echo $this->translate('Fields marked with * are required.') ?>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<?php foreach ($this->fields as $field): ?>
|
||||
<?php echo $field ?>
|
||||
<?php endforeach ?>
|
||||
<?php if ($this->policyUrl): ?>
|
||||
<?php echo $this->translate('The private policy can be found at %s',
|
||||
'<a href="'.$this->policyUrl.'">'.$this->policyUrl.'</a>'); ?><br /><br />
|
||||
<?php endif ?>
|
||||
<div id="profileForm">
|
||||
<? if ($this->showProfileForm): ?>
|
||||
<div style="text-align:center; margin:20px 0; font-weight:bold">
|
||||
<?= $this->translate('Please wait') ?>
|
||||
<img src="<?= $this->base ?>/images/progress.gif" style="margin-left:15px" />
|
||||
</div>
|
||||
<? endif ?>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
<div style="margin-top:20px">
|
||||
<input type="checkbox" name="forever" style="top:0" /> <?php echo $this->translate('Forever') ?>
|
||||
@ -29,6 +28,11 @@
|
||||
<script type="text/javascript">
|
||||
var oButton1 = new YAHOO.widget.Button("allow");
|
||||
var oButton2 = new YAHOO.widget.Button("deny");
|
||||
<? if ($this->showProfileForm): ?>
|
||||
YAHOO.util.Event.onDOMReady(function() {
|
||||
COMMID.profileForm.fetch("<?= $this->queryString ?>", 0);
|
||||
});
|
||||
<? endif ?>
|
||||
</script>
|
||||
</div>
|
||||
</form>
|
||||
|
18
modules/default/views/scripts/privacy/index-de.phtml
Normal file
18
modules/default/views/scripts/privacy/index-de.phtml
Normal file
@ -0,0 +1,18 @@
|
||||
<h2>Datenschutzrichtlinie</h2>
|
||||
<div>
|
||||
<h3>Einleitung</h3>
|
||||
<p>Community-ID.org respektiert jedermann Recht bezüglich des Eigentums seiner privaten Daten. Erfasste und gesammelte Daten durch dieser Webseite werden nur verwendet wie in dieser Erklärung beschreiben. Diese Erklärung gilt ausschließlich für Informationen welche erfasst wurden durch die Community-ID.org Webseite. </p>
|
||||
|
||||
|
||||
<h3>Erfassen von Daten</h3>
|
||||
<p>Community-ID.org erfasst Informationen über diese Webseite um den Benutzern einen besseren Service anbieten zu können. Erfasst werden die persönlichen Daten, einschließlich E-Mail-Adressen von registrierten Nutzern. Gespeichert wird auch die IP-Adresse und die Aktivität von Benutzern. Diese Informationen werden verwendet zur Diagnose oder zum Debuggen unserer Systeme oder zum verbessern unserer Dienstleistungen. Es können zusätzliche Nutzungsdaten gespeichert werden inklusive von Verweisen, Zugriffszeiten oder die Art der besuchten Plattform welche durch Benutzer verbreitet werden während des Besuchs der Seite. </p>
|
||||
|
||||
<p>Community-ID.org benutzt Cookies. Ein Cookie ist eine kleine Textdatei, welche der Webserver auf der Festplatte des Computer eines Benutzers speichert zum Zwecke einer eindeutigen Kennung. Cookies ermöglichen Community-ID.org ein Nutzungsmuster zu erstellen und maßgeschneiderte Inhalte für die Nutzer bereitzustellen. Unsere Cookies haben ein Ablaufdatum, und sammeln keine persönlich identifizierbaren Informationen.</p>
|
||||
|
||||
|
||||
<h3>Verwendung von Informationen</h3>
|
||||
<p>Wir werden Ihre persönlichen Daten nicht verkaufen oder vermieten oder an Dritte weitergegeben. Wir werden persönliche Daten nur weitergeben in folgenden Fällen: 1) Geschaftsübergabe: Wenn Community-ID.org übernommen wird durch dritte, können persönliche Informationen übertragen werden im Einklang mit den Vereinbarungen der Übernahme. 2) Rechtssicherheit: Falls eine gesetzliche Verpflichtung vorliegt diese Informationen weiterzugeben wurde Community-ID.org diesen Folge leisten.</p>
|
||||
|
||||
<h3>Kontroller und Speichern von Informationen</h3>
|
||||
<p>Wenn ein Benutzer sein Benutzerkonto in Community-ID.org löscht, werden alle im System gespeicherten Informationen entfernt. Natürlich können unsere Backups altere Kopien Ihrer Informationen enthalten, jedoch werden diese Backups regelmäßig gelöscht. Wir glauben, das Sie die Kontrolle über Ihre Informationen haben sollen und wir respektieren dies. </p>
|
||||
</div>
|
16
modules/default/views/scripts/privacy/index-en.phtml
Normal file
16
modules/default/views/scripts/privacy/index-en.phtml
Normal file
@ -0,0 +1,16 @@
|
||||
<h2>Privacy Policy</h2>
|
||||
<div>
|
||||
<h3>Introduction</h3>
|
||||
<p>Community-ID.org respects each individual's right to personal privacy. We will collect and use information through our Web site only in the ways disclosed in this statement. This statement applies solely to information collected at Community-ID.org's Web site.</p>
|
||||
|
||||
<h3>Information Collection</h3>
|
||||
<p>Community-ID.org collects information through our Web site in order to provide users an efficient experience. We collect the personal information, including email addresses, of registered users. We also collect the IP address and use activity of visitors to our website, in order to diagnose and debug our systems and services. We may also collect ancillary usage information, including referrals, access times and platform type, which our users divulge through visiting the site.</p>
|
||||
|
||||
<p>Community-ID.org employs cookies. A cookie is a small text file that our Web server places on a user's computer hard drive to be a unique identifier. Cookies enable Community-ID.org to track usage patterns and deliver customized content to users. Our cookies have an expiration date, and do not collect personally identifiable information.</p>
|
||||
|
||||
<h3>Information Usage</h3>
|
||||
<p>We will not rent or sell your personal information to third parties. We will share personal information only in the following cases: 1) Business Transfer: If Community-ID.org were acquired, personal information would be transferred forward in accordance with acquisition agreements. 2) Legal Compliance: If compelled by law to share information, Community-ID.org would be required to do so.</p>
|
||||
|
||||
<h3>Information Storage and Control</h3>
|
||||
<p>When a user deletes their account from Community-ID.org, all of their information is expunged from our systems. Of course, our backups may contain older copies of the information, but we expunge backups regularly. We believe that you control your information, and we absolutely respect that.</p>
|
||||
</div>
|
17
modules/default/views/scripts/privacy/index-es.phtml
Normal file
17
modules/default/views/scripts/privacy/index-es.phtml
Normal file
@ -0,0 +1,17 @@
|
||||
<h2>Política de Privacidad</h2>
|
||||
<div>
|
||||
<h3>Introducción</h3>
|
||||
<p>Community-ID.org respeta el derecho individual a la privacidad. Recuperaremos y usaremos información a través de nuestro sitio Web solamente como se describe en este documento. Este documento solo aplica a la información recolectada a través del sitio Web Community-ID.org.</p>
|
||||
|
||||
<h3>Recolección de Información</h3>
|
||||
<p>Community-ID.org recolecta información a través de nuestro sitio Web con el fin de proveer a nuestros usuarios una experiencia eficiente. Recolectamos la información, incluyendo direcciones de correo electrónico, de los usuarios registrados. También recolectamos las direcciones IP y la actividad de uso de los visitantes a nuestro sitio, con el fin de diagnosticar y depurar nuestros sistemas y servicios. Podremos también recolectar alguna información extra, tal como remisiones, tiempos de acceso y tipo de plataforma, que nuestros usuarios divulgan cuando visitan el sitio.</p>
|
||||
|
||||
<p>Community-ID.org utiliza cookies. Una cookie es un pequeño archivo de texto que nuestro servidor Web coloca en el disco duro del computador del usuario. Las cookies permiten a Community-ID.org llevar un registro de los patrones de uso y entregar contenido personalizado a los usuarios. Nuestras cookies tienen una fecha de expiración, y no recolectan información personal identificable.</p>
|
||||
|
||||
|
||||
<h3>Uso de la Información</h3>
|
||||
<p>No rentamos ni vendemos información personal de nuestros usuarios a terceros. Solamente entregaremos información personal en los siguientes casos: 1) Transferencia patrimonial: Si Community-ID.org fuera adquirido, la información personal sería transferida de acuerdo con el contrato de adquisición. 2) Cumplimiento legal: Si obligados por ley a revelar información, Community-ID.org estará obligada a entregarla.</p>
|
||||
|
||||
<h3>Almacenamiento y Control de la Información</h3>
|
||||
<p>Cuando un usuario borra su cuenta de Community-ID.org, toda su información es borrada de nuestros sistemas. Por supuesto, nuestras copias de respaldo pueden contener copias antiguas de dicha información, pero rotamos estas copias regularmente. Creemos que nuestros usuarios son dueños de su información, y respetamos eso.</p>
|
||||
</div>
|
17
modules/default/views/scripts/privacy/index-ja.phtml
Normal file
17
modules/default/views/scripts/privacy/index-ja.phtml
Normal file
@ -0,0 +1,17 @@
|
||||
<h2>Privacy Policy</h2>
|
||||
<div>
|
||||
<h3>Introduction</h3>
|
||||
<p>Community-ID.org respects each individual's right to personal privacy. We will collect and use information through our Web site only in the ways disclosed in this statement. This statement applies solely to information collected at Community-ID.org's Web site.</p>
|
||||
|
||||
<h3>Information Collection</h3>
|
||||
<p>Community-ID.org collects information through our Web site in order to provide users an efficient experience. We collect the personal information, including email addresses, of registered users. We also collect the IP address and use activity of visitors to our website, in order to diagnose and debug our systems and services. We may also collect ancillary usage information, including referrals, access times and platform type, which our users divulge through visiting the site.</p>
|
||||
|
||||
<p>Community-ID.org employs cookies. A cookie is a small text file that our Web server places on a user's computer hard drive to be a unique identifier. Cookies enable Community-ID.org to track usage patterns and deliver customized content to users. Our cookies have an expiration date, and do not collect personally identifiable information.</p>
|
||||
|
||||
<h3>Information Usage</h3>
|
||||
<p>We will not rent or sell your personal information to third parties. We will share personal information only in the following cases: 1) Business Transfer: If Community-ID.org were acquired, personal information would be transferred forward in accordance with acquisition agreements. 2) Legal Compliance: If compelled by law to share information, Community-ID.org would be required to do so.</p>
|
||||
|
||||
<h3>Information Storage and Control</h3>
|
||||
<p>When a user deletes their account from Community-ID.org, all of their information is expunged from our systems. Of course, our backups may contain older copies of the information, but we expunge backups regularly. We believe that you control your information, and we absolutely respect that.</p>
|
||||
</div>
|
||||
|
17
modules/default/views/scripts/privacy/index-nl.phtml
Normal file
17
modules/default/views/scripts/privacy/index-nl.phtml
Normal file
@ -0,0 +1,17 @@
|
||||
<h2>Privacy Policy</h2>
|
||||
<div>
|
||||
<h3>Introduction</h3>
|
||||
<p>Community-ID.org respects each individual's right to personal privacy. We will collect and use information through our Web site only in the ways disclosed in this statement. This statement applies solely to information collected at Community-ID.org's Web site.</p>
|
||||
|
||||
<h3>Information Collection</h3>
|
||||
<p>Community-ID.org collects information through our Web site in order to provide users an efficient experience. We collect the personal information, including email addresses, of registered users. We also collect the IP address and use activity of visitors to our website, in order to diagnose and debug our systems and services. We may also collect ancillary usage information, including referrals, access times and platform type, which our users divulge through visiting the site.</p>
|
||||
|
||||
<p>Community-ID.org employs cookies. A cookie is a small text file that our Web server places on a user's computer hard drive to be a unique identifier. Cookies enable Community-ID.org to track usage patterns and deliver customized content to users. Our cookies have an expiration date, and do not collect personally identifiable information.</p>
|
||||
|
||||
<h3>Information Usage</h3>
|
||||
<p>We will not rent or sell your personal information to third parties. We will share personal information only in the following cases: 1) Business Transfer: If Community-ID.org were acquired, personal information would be transferred forward in accordance with acquisition agreements. 2) Legal Compliance: If compelled by law to share information, Community-ID.org would be required to do so.</p>
|
||||
|
||||
<h3>Information Storage and Control</h3>
|
||||
<p>When a user deletes their account from Community-ID.org, all of their information is expunged from our systems. Of course, our backups may contain older copies of the information, but we expunge backups regularly. We believe that you control your information, and we absolutely respect that.</p>
|
||||
</div>
|
||||
|
17
modules/default/views/scripts/privacy/index-pl.phtml
Normal file
17
modules/default/views/scripts/privacy/index-pl.phtml
Normal file
@ -0,0 +1,17 @@
|
||||
<h2>Privacy Policy</h2>
|
||||
<div>
|
||||
<h3>Introduction</h3>
|
||||
<p>Community-ID.org respects each individual's right to personal privacy. We will collect and use information through our Web site only in the ways disclosed in this statement. This statement applies solely to information collected at Community-ID.org's Web site.</p>
|
||||
|
||||
<h3>Information Collection</h3>
|
||||
<p>Community-ID.org collects information through our Web site in order to provide users an efficient experience. We collect the personal information, including email addresses, of registered users. We also collect the IP address and use activity of visitors to our website, in order to diagnose and debug our systems and services. We may also collect ancillary usage information, including referrals, access times and platform type, which our users divulge through visiting the site.</p>
|
||||
|
||||
<p>Community-ID.org employs cookies. A cookie is a small text file that our Web server places on a user's computer hard drive to be a unique identifier. Cookies enable Community-ID.org to track usage patterns and deliver customized content to users. Our cookies have an expiration date, and do not collect personally identifiable information.</p>
|
||||
|
||||
<h3>Information Usage</h3>
|
||||
<p>We will not rent or sell your personal information to third parties. We will share personal information only in the following cases: 1) Business Transfer: If Community-ID.org were acquired, personal information would be transferred forward in accordance with acquisition agreements. 2) Legal Compliance: If compelled by law to share information, Community-ID.org would be required to do so.</p>
|
||||
|
||||
<h3>Information Storage and Control</h3>
|
||||
<p>When a user deletes their account from Community-ID.org, all of their information is expunged from our systems. Of course, our backups may contain older copies of the information, but we expunge backups regularly. We believe that you control your information, and we absolutely respect that.</p>
|
||||
</div>
|
||||
|
18
modules/default/views/scripts/privacy/index-sv.phtml
Normal file
18
modules/default/views/scripts/privacy/index-sv.phtml
Normal file
@ -0,0 +1,18 @@
|
||||
<h2>Policy för personlig integritet</h2>
|
||||
<div>
|
||||
<h3>Introduktion</h3>
|
||||
<p>Community-ID.org respekterar varje individs rätt till personlig integritet. Vi samlar och använder därför bara den information som anges i denna policy. Policyn gäller all information på Community-ID.org's webbplats.</p>
|
||||
|
||||
<h3>Informationsinsamling</h3>
|
||||
<p>Community-ID.org samlar information via webbplatsen för att kunna ge användarna en effektiv upplevelse. Vi samlar personlig information, inklusive e-postadresser, från registrerade användare. Vi samlar även in IP-addresser och hur besökarna använder vår webbplats, för att kunna felsöka och förbättra vårt system och våra tjänster. We may also collect ancillary usage information, including referrals, access times and platform type, which our users divulge through visiting the site.</p>
|
||||
|
||||
<h3>Cookies</h3>
|
||||
<p>Community-ID.org använder cookies. En cookie är en liten textfile som vår webbserver lägger i användarens dator för unik identifiering. Cookies gör det möjligt för Community-ID.org att spåra användningsmönster och leverera anpassat innehåll till användaren. Våra cookies har ett bäst-före-datum och används inte för att samla personrelaterad information.</p>
|
||||
<p>Vill du inte acceptera cookies kan din webbläsare ställas in så att du automatiskt nekar till lagring av cookies eller informeras varje gång en webbplats begär att få lagra en cookie. Genom webbläsaren kan också tidigare lagrade cookies raderas. Se webbläsarens hjälpsidor för mer information.</p>
|
||||
|
||||
<h3>Informationsanvändning</h3>
|
||||
<p>Vi kommer inte att hyra ut eller sälja din personliga information till tredje part. Vi kommer endast att dela med oss av personlig information i följande fall: 1) Affärstransaktioner: Om Community-ID.org blir uppköpt kommer den personliga informationen följa med om det framgår i kontraktet. 2) Lagkrav: Om det enligt lag krävs att information ska lämnas ut, så kommer Community-ID.org att göra det.</p>
|
||||
|
||||
<h3>Informationsförvaring och - Kontroll</h3>
|
||||
<p>När en användare raderar sitt konto från Community-ID.org, kommer all deras information raderas fullständigt. Naturligtvis kan det finnas kvar äldre säkerhetskopior av informationen, men dessa raderas regelbundet. Vi anser att du ska kontrollera din egen information och respekterar det fullt ut.</p>
|
||||
</div>
|
@ -1,4 +0,0 @@
|
||||
<h2><?php echo $this->translate('Privacy Policy') ?></h2>
|
||||
<div>
|
||||
<?php echo $this->privacyPolicy ?>
|
||||
</div>
|
22
modules/default/views/scripts/profile/index.phtml
Normal file
22
modules/default/views/scripts/profile/index.phtml
Normal file
@ -0,0 +1,22 @@
|
||||
<br />
|
||||
<br />
|
||||
<? if (count($this->profiles) > 0): ?>
|
||||
<div style="margin-bottom:20px">
|
||||
<?= $this->translate('Please select the profile you want to use:') ?>
|
||||
<select onchange="COMMID.profileForm.fetch('<?= $this->queryString ?>', this.value, true)"
|
||||
<?= $this->profileId == $profile->id? 'selected="true"' : '' ?>>
|
||||
<? foreach ($this->profiles as $profile): ?>
|
||||
<option value="<?= $profile->id ?>"><?= $profile->name ?></option>
|
||||
<? endforeach ?>
|
||||
</select>
|
||||
<img id="loadingPersonalInfo" src="<?= $this->base ?>/images/progress.gif" style="visibility:hidden"/>
|
||||
</div>
|
||||
<? endif ?>
|
||||
<input type="hidden" name="profileId" value="<?= $this->profileId ?>" />
|
||||
<? foreach ($this->fields as $field): ?>
|
||||
<? echo $field ?>
|
||||
<? endforeach ?>
|
||||
<? if ($this->policyUrl): ?>
|
||||
<? echo $this->translate('The privacy policy can be found at %s',
|
||||
'<a href="'.$this->policyUrl.'">'.$this->policyUrl.'</a>'); ?><br /><br />
|
||||
<? endif ?>
|
Reference in New Issue
Block a user