Skip to content
Snippets Groups Projects
Commit ee79477f authored by Cédric Krier's avatar Cédric Krier :atom:
Browse files

Use https for url when available

parent 46dd32b0
No related branches found
No related tags found
No related merge requests found
Showing
with 107 additions and 107 deletions
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
<p>The Tryton Project strongly recommends the following guidelines.</p> <p>The Tryton Project strongly recommends the following guidelines.</p>
<h3 id="code-style">Code Style</h3> <h3 id="code-style">Code Style</h3>
<h4>Python</h4> <h4>Python</h4>
<p>Code style, in general, follows <a href="http://www.python.org/dev/peps/pep-0008/">PEP 8</a>:</p> <p>Code style, in general, follows <a href="https://www.python.org/dev/peps/pep-0008/">PEP 8</a>:</p>
<ul> <ul>
<li>Use 4 spaces for indentation.</li> <li>Use 4 spaces for indentation.</li>
<li>Avoid the usage of <span class="text-monospace">from M import *</span>.</li> <li>Avoid the usage of <span class="text-monospace">from M import *</span>.</li>
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
<ul> <ul>
<li>Use 4 spaces for indentation.</li> <li>Use 4 spaces for indentation.</li>
<li>Avoid the usage of <span class="text-monospace">from M import *</span>.</li> <li>Avoid the usage of <span class="text-monospace">from M import *</span>.</li>
<li>If unsure about PEP 8 conformity use <a href="http://pypi.python.org/pypi/pep8">pep8</a> to check the code (with option <span class="text-monospace">ignore=E123,E124,E126,E128</span>).</li> <li>If unsure about PEP 8 conformity use <a href="https://pypi.python.org/pypi/pep8">pep8</a> to check the code (with option <span class="text-monospace">ignore=E123,E124,E126,E128</span>).</li>
<li>Breaking lines: <li>Breaking lines:
<ul> <ul>
<li>Use 4 spaces per bracket pair.</li> <li>Use 4 spaces per bracket pair.</li>
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
</ul> </ul>
</li> </li>
<li>For modules and method names use an underscore to separate the parts of name.</li> <li>For modules and method names use an underscore to separate the parts of name.</li>
<li>For naming classes use <a href="http://en.wikipedia.org/wiki/CamelCase">CamelCase</a>.</li> <li>For naming classes use <a href="https://en.wikipedia.org/wiki/CamelCase">CamelCase</a>.</li>
</ul> </ul>
</div> </div>
<div class="subsection"> <div class="subsection">
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
<p class="bg-info rounded p-2">This part is only for core developers</p> <p class="bg-info rounded p-2">This part is only for core developers</p>
<p> <p>
<span class="material-icons">warning</span> <span class="material-icons">warning</span>
Always keep the <a href="http://hg.tryton.org/tryton-env/">environment repository</a> up to date with all the <a href="https://www.mercurial-scm.org/wiki/Subrepository">subrepos</a>: Always keep the <a href="https://hg.tryton.org/tryton-env/">environment repository</a> up to date with all the <a href="https://www.mercurial-scm.org/wiki/Subrepository">subrepos</a>:
</p> </p>
<pre><code class="console">$ hg commit -S --cwd tryton-env</code></pre> <pre><code class="console">$ hg commit -S --cwd tryton-env</code></pre>
<p>Push to the remote server:</p> <p>Push to the remote server:</p>
......
...@@ -138,5 +138,5 @@ ...@@ -138,5 +138,5 @@
</section> </section>
<section class="subsection"> <section class="subsection">
<h2 id="packages">Packages</h2> <h2 id="packages">Packages</h2>
<p>All the packages are also published on the <a href="http://pypi.python.org/pypi?:action=browse&show=all&c=551">Python Package Index</a>. <p>All the packages are also published on the <a href="https://pypi.python.org/pypi?:action=browse&show=all&c=551">Python Package Index</a>.
Tryton modules from third parties can also be found there.<br/> Tryton modules from third parties can also be found there.<br/>
...@@ -142,5 +142,5 @@ ...@@ -142,5 +142,5 @@
Tryton modules from third parties can also be found there.<br/> Tryton modules from third parties can also be found there.<br/>
You can install them using the <a href="http://www.pip-installer.org/">pip</a> command-line tool:</p> You can install them using the <a href="https://www.pip-installer.org/">pip</a> command-line tool:</p>
<pre><code class="console">$ pip install trytond # server <pre><code class="console">$ pip install trytond # server
$ pip install tryton # client $ pip install tryton # client
$ pip install trytond_sale # sale module</code></pre> $ pip install trytond_sale # sale module</code></pre>
...@@ -152,7 +152,7 @@ ...@@ -152,7 +152,7 @@
<p>Tryton is also packaged and distributed by third-party volunteers. <p>Tryton is also packaged and distributed by third-party volunteers.
These generally provide better integration with the operating system, but often there is a delay before new versions make it into their distributions.</p> These generally provide better integration with the operating system, but often there is a delay before new versions make it into their distributions.</p>
<ul> <ul>
<li id="archlinux"><a href="http://aur.archlinux.org/packages.php?K=tryton"> <li id="archlinux"><a href="https://aur.archlinux.org/packages.php?K=tryton">
<i class="icon icon-arch-linux"></i> Arch Linux <i class="icon icon-arch-linux"></i> Arch Linux
</a></li> </a></li>
<li id="debian"><a href="https://tryton-team.pages.debian.net/"> <li id="debian"><a href="https://tryton-team.pages.debian.net/">
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
</section> </section>
<section class="subsection"> <section class="subsection">
<h2 id="third-party-modules">Third Party Modules</h2> <h2 id="third-party-modules">Third Party Modules</h2>
<p>Tryton has a <a href="http://pypi.python.org/pypi?:action=browse&show=all&c=551">large ecosystem of modules</a>.<br/> <p>Tryton has a <a href="https://pypi.python.org/pypi?:action=browse&show=all&c=551">large ecosystem of modules</a>.<br/>
To ease your choice, we maintain a curated list of <a href="https://discuss.tryton.org/c/third-party-modules">third party modules</a>.</p> To ease your choice, we maintain a curated list of <a href="https://discuss.tryton.org/c/third-party-modules">third party modules</a>.</p>
</section> </section>
{% endblock main %} {% endblock main %}
...@@ -113,7 +113,7 @@ ...@@ -113,7 +113,7 @@
</ul> </ul>
</li> </li>
</ul> </ul>
<p>Inside Marseille, we recommend to use the <a href="http://www.rtm.fr/">public transport</a> which has 2 metro lines and many bus lines.</p> <p>Inside Marseille, we recommend to use the <a href="https://www.rtm.fr/">public transport</a> which has 2 metro lines and many bus lines.</p>
{% endblock %} {% endblock %}
{% block accommodations %} {% block accommodations %}
......
...@@ -51,8 +51,8 @@ ...@@ -51,8 +51,8 @@
<li class="list-group-item"> <li class="list-group-item">
English: English:
<a href="irc://irc.freenode.net/tryton">#tryton</a> <a href="irc://irc.freenode.net/tryton">#tryton</a>
(<a href="http://www.tryton.org/~irclog/">archive</a>) (<a href="//www.tryton.org/~irclog/">archive</a>)
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
Deutsch: Deutsch:
<a href="irc://irc.freenode.net/tryton.de">#tryton.de</a> <a href="irc://irc.freenode.net/tryton.de">#tryton.de</a>
...@@ -55,9 +55,9 @@ ...@@ -55,9 +55,9 @@
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
Deutsch: Deutsch:
<a href="irc://irc.freenode.net/tryton.de">#tryton.de</a> <a href="irc://irc.freenode.net/tryton.de">#tryton.de</a>
(<a href="http://www.tryton.org/~irclog/de/">archive</a>) (<a href="//www.tryton.org/~irclog/de/">archive</a>)
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
Español: Español:
<a href="irc://irc.freenode.net/tryton-es">#tryton-es</a> <a href="irc://irc.freenode.net/tryton-es">#tryton-es</a>
...@@ -60,9 +60,9 @@ ...@@ -60,9 +60,9 @@
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
Español: Español:
<a href="irc://irc.freenode.net/tryton-es">#tryton-es</a> <a href="irc://irc.freenode.net/tryton-es">#tryton-es</a>
(<a href="http://www.tryton.org/~irclog/es/">archive</a>) (<a href="//www.tryton.org/~irclog/es/">archive</a>)
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
Français: Français:
<a href="irc://irc.freenode.net/tryton-fr">#tryton-fr</a> <a href="irc://irc.freenode.net/tryton-fr">#tryton-fr</a>
...@@ -65,9 +65,9 @@ ...@@ -65,9 +65,9 @@
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
Français: Français:
<a href="irc://irc.freenode.net/tryton-fr">#tryton-fr</a> <a href="irc://irc.freenode.net/tryton-fr">#tryton-fr</a>
(<a href="http://www.tryton.org/~irclog/fr/">archive</a>) (<a href="//www.tryton.org/~irclog/fr/">archive</a>)
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
РУССКИЙ: РУССКИЙ:
<a href="irc://irc.freenode.net/tryton-ru">#tryton-ru</a> <a href="irc://irc.freenode.net/tryton-ru">#tryton-ru</a>
...@@ -70,8 +70,8 @@ ...@@ -70,8 +70,8 @@
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
РУССКИЙ: РУССКИЙ:
<a href="irc://irc.freenode.net/tryton-ru">#tryton-ru</a> <a href="irc://irc.freenode.net/tryton-ru">#tryton-ru</a>
(<a href="http://www.tryton.org/~irclog/ru/">archive</a>) (<a href="//www.tryton.org/~irclog/ru/">archive</a>)
</li> </li>
<li class="list-group-item"> <li class="list-group-item">
commits: commits:
......
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
<li>Cédric Krier from Belgium as Administration Delegate,</li> <li>Cédric Krier from Belgium as Administration Delegate,</li>
<li>Nicolas Évrard from Belgium as Managing Director.</li> <li>Nicolas Évrard from Belgium as Managing Director.</li>
</ul> </ul>
<p>The <a href="http://www.ejustice.just.fgov.be/tsv_pdf/2012/11/29/12193839.pdf">complete statutes of the Tryton Foundation</a> are available electronically.</p> <p>The <a href="https://www.ejustice.just.fgov.be/tsv_pdf/2012/11/29/12193839.pdf">complete statutes of the Tryton Foundation</a> are available electronically.</p>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -158,8 +158,8 @@ ...@@ -158,8 +158,8 @@
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/new_features_42.pdf">New features in 4.2</a>, <a href="//downloads-cdn.tryton.org/TUB2016/new_features_42.pdf">New features in 4.2</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tub2016/new_features_in_42.html">Video</a> <a href="//videos.tryton.org/tub2016/new_features_in_42.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/billiard_balls_manufacture.pdf">Implementing Tryton in a billiard balls manufacture</a>, <a href="//downloads-cdn.tryton.org/TUB2016/billiard_balls_manufacture.pdf">Implementing Tryton in a billiard balls manufacture</a>,
<em>Maxime Richez &amp; Thierry Bruyere</em>, <em>Maxime Richez &amp; Thierry Bruyere</em>,
...@@ -162,9 +162,9 @@ ...@@ -162,9 +162,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/billiard_balls_manufacture.pdf">Implementing Tryton in a billiard balls manufacture</a>, <a href="//downloads-cdn.tryton.org/TUB2016/billiard_balls_manufacture.pdf">Implementing Tryton in a billiard balls manufacture</a>,
<em>Maxime Richez &amp; Thierry Bruyere</em>, <em>Maxime Richez &amp; Thierry Bruyere</em>,
<a href="http://videos.tryton.org/tub2016/billiard_balls_manufacture.html">Video</a> <a href="//videos.tryton.org/tub2016/billiard_balls_manufacture.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part1)</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part1)</a>,
<em>Romain Séon &amp; Frédéric Langevin</em>, <em>Romain Séon &amp; Frédéric Langevin</em>,
...@@ -167,9 +167,9 @@ ...@@ -167,9 +167,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part1)</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part1)</a>,
<em>Romain Séon &amp; Frédéric Langevin</em>, <em>Romain Séon &amp; Frédéric Langevin</em>,
<a href="http://videos.tryton.org/tub2016/insurance_erp_1.html">Video</a> <a href="//videos.tryton.org/tub2016/insurance_erp_1.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part 2)</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part 2)</a>,
<em>Romain Séon &amp; Frédéric Langevin</em>, <em>Romain Séon &amp; Frédéric Langevin</em>,
...@@ -172,9 +172,9 @@ ...@@ -172,9 +172,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part 2)</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-bus.pdf">How we used tryton to build an Insurance ERP (part 2)</a>,
<em>Romain Séon &amp; Frédéric Langevin</em>, <em>Romain Séon &amp; Frédéric Langevin</em>,
<a href="http://videos.tryton.org/tub2016/insurance_erp_2.html">Video</a> <a href="//videos.tryton.org/tub2016/insurance_erp_2.html">Video</a>
</li> </li>
<li> <li>
Advocate Tax, Advocate Tax,
<em>Jonathan Levy</em>, <em>Jonathan Levy</em>,
...@@ -177,9 +177,9 @@ ...@@ -177,9 +177,9 @@
</li> </li>
<li> <li>
Advocate Tax, Advocate Tax,
<em>Jonathan Levy</em>, <em>Jonathan Levy</em>,
<a href="http://videos.tryton.org/tub2016/advocate_tax.html">Video</a> <a href="//videos.tryton.org/tub2016/advocate_tax.html">Video</a>
</li> </li>
<li> <li>
Adore, Adore,
<em>Udo Spallek</em>, <em>Udo Spallek</em>,
...@@ -182,9 +182,9 @@ ...@@ -182,9 +182,9 @@
</li> </li>
<li> <li>
Adore, Adore,
<em>Udo Spallek</em>, <em>Udo Spallek</em>,
<a href="http://videos.tryton.org/tub2016/adore.html">Video</a> <a href="//videos.tryton.org/tub2016/adore.html">Video</a>
</li> </li>
<li> <li>
SISalp, SISalp,
<em>Dominique Chabord</em>, <em>Dominique Chabord</em>,
...@@ -187,9 +187,9 @@ ...@@ -187,9 +187,9 @@
</li> </li>
<li> <li>
SISalp, SISalp,
<em>Dominique Chabord</em>, <em>Dominique Chabord</em>,
<a href="http://videos.tryton.org/tub2016/sisalp.html">Video</a> <a href="//videos.tryton.org/tub2016/sisalp.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/distributed.pdf">Distributed Transactions</a>, <a href="//downloads-cdn.tryton.org/TUB2016/distributed.pdf">Distributed Transactions</a>,
<em>Nicolas Évrard</em>, <em>Nicolas Évrard</em>,
...@@ -192,9 +192,9 @@ ...@@ -192,9 +192,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/distributed.pdf">Distributed Transactions</a>, <a href="//downloads-cdn.tryton.org/TUB2016/distributed.pdf">Distributed Transactions</a>,
<em>Nicolas Évrard</em>, <em>Nicolas Évrard</em>,
<a href="http://videos.tryton.org/tub2016/distributed_transactions.html">Video</a> <a href="//videos.tryton.org/tub2016/distributed_transactions.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/user_application.pdf">User Application</a>, <a href="//downloads-cdn.tryton.org/TUB2016/user_application.pdf">User Application</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
...@@ -197,9 +197,9 @@ ...@@ -197,9 +197,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/user_application.pdf">User Application</a>, <a href="//downloads-cdn.tryton.org/TUB2016/user_application.pdf">User Application</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tub2016/user_application.html">Video</a> <a href="//videos.tryton.org/tub2016/user_application.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-tech.pdf">How Tryton is customized to empower Coog</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-tech.pdf">How Tryton is customized to empower Coog</a>,
<em>Jean Cavallo &amp; Ali Kefia</em>, <em>Jean Cavallo &amp; Ali Kefia</em>,
...@@ -202,9 +202,9 @@ ...@@ -202,9 +202,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-tech.pdf">How Tryton is customized to empower Coog</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tub-2016-prez-tech.pdf">How Tryton is customized to empower Coog</a>,
<em>Jean Cavallo &amp; Ali Kefia</em>, <em>Jean Cavallo &amp; Ali Kefia</em>,
<a href="http://videos.tryton.org/tub2016/how_trton_is_customized_to_empower_coog.html">Video</a> <a href="//videos.tryton.org/tub2016/how_trton_is_customized_to_empower_coog.html">Video</a>
</li> </li>
<li> <li>
Application Performance Monitoring, Application Performance Monitoring,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
...@@ -207,9 +207,9 @@ ...@@ -207,9 +207,9 @@
</li> </li>
<li> <li>
Application Performance Monitoring, Application Performance Monitoring,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
<a href="http://videos.tryton.org/tub2016/application_performance_monitoring.html">Video</a> <a href="//videos.tryton.org/tub2016/application_performance_monitoring.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/who_are_you.pdf">Tryton Authentication</a>, <a href="//downloads-cdn.tryton.org/TUB2016/who_are_you.pdf">Tryton Authentication</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
...@@ -212,9 +212,9 @@ ...@@ -212,9 +212,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/who_are_you.pdf">Tryton Authentication</a>, <a href="//downloads-cdn.tryton.org/TUB2016/who_are_you.pdf">Tryton Authentication</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tub2016/tryton_authentification.html">Video</a> <a href="//videos.tryton.org/tub2016/tryton_authentification.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tryton-integration-drupal.pdf">Tryton integrates with Drupal</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tryton-integration-drupal.pdf">Tryton integrates with Drupal</a>,
<em>Lucho Rossi</em>, <em>Lucho Rossi</em>,
...@@ -217,9 +217,9 @@ ...@@ -217,9 +217,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/tryton-integration-drupal.pdf">Tryton integrates with Drupal</a>, <a href="//downloads-cdn.tryton.org/TUB2016/tryton-integration-drupal.pdf">Tryton integrates with Drupal</a>,
<em>Lucho Rossi</em>, <em>Lucho Rossi</em>,
<a href="http://videos.tryton.org/tub2016/tryton_with_drupal.html">Video</a> <a href="//videos.tryton.org/tub2016/tryton_with_drupal.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/developing-on-trunk">Why you should develop on trunk?</a>, <a href="//downloads-cdn.tryton.org/TUB2016/developing-on-trunk">Why you should develop on trunk?</a>,
<em>Sergi Almacellas Abellana</em>, <em>Sergi Almacellas Abellana</em>,
...@@ -222,9 +222,9 @@ ...@@ -222,9 +222,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/developing-on-trunk">Why you should develop on trunk?</a>, <a href="//downloads-cdn.tryton.org/TUB2016/developing-on-trunk">Why you should develop on trunk?</a>,
<em>Sergi Almacellas Abellana</em>, <em>Sergi Almacellas Abellana</em>,
<a href="http://videos.tryton.org/tub2016/why_you_should_develop_on_trunk.html">Video</a> <a href="//videos.tryton.org/tub2016/why_you_should_develop_on_trunk.html">Video</a>
</li> </li>
<li> <li>
Universal Business Language, Universal Business Language,
<em>Dominique Chabord</em>, <em>Dominique Chabord</em>,
...@@ -227,9 +227,9 @@ ...@@ -227,9 +227,9 @@
</li> </li>
<li> <li>
Universal Business Language, Universal Business Language,
<em>Dominique Chabord</em>, <em>Dominique Chabord</em>,
<a href="http://videos.tryton.org/tub2016/support_UBL.html">Video</a> <a href="//videos.tryton.org/tub2016/support_UBL.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/postgresql.pdf">PostgreSQL: present and near future</a>, <a href="//downloads-cdn.tryton.org/TUB2016/postgresql.pdf">PostgreSQL: present and near future</a>,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
...@@ -232,9 +232,9 @@ ...@@ -232,9 +232,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2016/postgresql.pdf">PostgreSQL: present and near future</a>, <a href="//downloads-cdn.tryton.org/TUB2016/postgresql.pdf">PostgreSQL: present and near future</a>,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
<a href="http://videos.tryton.org/tub2016/postgresql.html">Video</a> <a href="//videos.tryton.org/tub2016/postgresql.html">Video</a>
</li> </li>
<li> <li>
A Raft of Tryton Modules, A Raft of Tryton Modules,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
...@@ -237,8 +237,8 @@ ...@@ -237,8 +237,8 @@
</li> </li>
<li> <li>
A Raft of Tryton Modules, A Raft of Tryton Modules,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
<a href="http://videos.tryton.org/tub2016/a_raft_of_tryton_modules.html">Video</a> <a href="//videos.tryton.org/tub2016/a_raft_of_tryton_modules.html">Video</a>
</li> </li>
</ul> </ul>
</section> </section>
...@@ -257,8 +257,8 @@ ...@@ -257,8 +257,8 @@
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/tryton-project.pdf">Tryton History from the very beginning</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/tryton-project.pdf">Tryton History from the very beginning</a>,
<em>Nicolas Évrard</em>, <em>Nicolas Évrard</em>,
<a href="http://videos.tryton.org/tuba2015/NicolasEvrard-TrytonHistoryFromTheVeryBeginning.html">Video</a> <a href="//videos.tryton.org/tuba2015/NicolasEvrard-TrytonHistoryFromTheVeryBeginning.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/silex_why_we_have_chosen_tryton.pdf">Why we have chosen Tryton - from homemade proprietary ERPs to free software</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/silex_why_we_have_chosen_tryton.pdf">Why we have chosen Tryton - from homemade proprietary ERPs to free software</a>,
<em>Roberto Novaes</em>, <em>Roberto Novaes</em>,
...@@ -261,8 +261,8 @@ ...@@ -261,8 +261,8 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/silex_why_we_have_chosen_tryton.pdf">Why we have chosen Tryton - from homemade proprietary ERPs to free software</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/silex_why_we_have_chosen_tryton.pdf">Why we have chosen Tryton - from homemade proprietary ERPs to free software</a>,
<em>Roberto Novaes</em>, <em>Roberto Novaes</em>,
<a href="http://videos.tryton.org/tuba2015/RobertoNovaes-WhyWeHaveChosenTryton.html">Video</a> <a href="//videos.tryton.org/tuba2015/RobertoNovaes-WhyWeHaveChosenTryton.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/gcoop_tryton_in_argentina.pdf">Tryton in Argentina, our localization and use</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/gcoop_tryton_in_argentina.pdf">Tryton in Argentina, our localization and use</a>,
...@@ -271,8 +271,8 @@ ...@@ -271,8 +271,8 @@
<li> <li>
sao, Tryton in your browser, sao, Tryton in your browser,
<em>Cédric Krier and Nicolas Évrard</em>, <em>Cédric Krier and Nicolas Évrard</em>,
<a href="http://videos.tryton.org/tuba2015/CedricKrier-NicolasEvrard-SAO-TrytonInYourBrowser.html">Video</a> <a href="//videos.tryton.org/tuba2015/CedricKrier-NicolasEvrard-SAO-TrytonInYourBrowser.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/gnusolidario_gnuhealth_new_features.pdf">New features in GNU Health 3.0</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/gnusolidario_gnuhealth_new_features.pdf">New features in GNU Health 3.0</a>,
<em>Luis Falcón</em>, <em>Luis Falcón</em>,
...@@ -275,9 +275,9 @@ ...@@ -275,9 +275,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/gnusolidario_gnuhealth_new_features.pdf">New features in GNU Health 3.0</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/gnusolidario_gnuhealth_new_features.pdf">New features in GNU Health 3.0</a>,
<em>Luis Falcón</em>, <em>Luis Falcón</em>,
<a href="http://videos.tryton.org/tuba2015/LuisFalcon-NewFeaturesInGNUHealth3.0.html">Video</a> <a href="//videos.tryton.org/tuba2015/LuisFalcon-NewFeaturesInGNUHealth3.0.html">Video</a>
</li> </li>
<li> <li>
Tryton Implementations, our experience without programmers, Tryton Implementations, our experience without programmers,
<em>Agustin Montagna</em>, <em>Agustin Montagna</em>,
...@@ -280,9 +280,9 @@ ...@@ -280,9 +280,9 @@
</li> </li>
<li> <li>
Tryton Implementations, our experience without programmers, Tryton Implementations, our experience without programmers,
<em>Agustin Montagna</em>, <em>Agustin Montagna</em>,
<a href="http://videos.tryton.org/tuba2015/AgustinMontagna-TrytonImplementations-OurExperienceWithoutProgrammers.html">Video</a> <a href="//videos.tryton.org/tuba2015/AgustinMontagna-TrytonImplementations-OurExperienceWithoutProgrammers.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_packages_for_tryton.pdf">Building packages for Tryton</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_packages_for_tryton.pdf">Building packages for Tryton</a>,
<em>Axel Braun</em>, <em>Axel Braun</em>,
...@@ -285,9 +285,9 @@ ...@@ -285,9 +285,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_packages_for_tryton.pdf">Building packages for Tryton</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_packages_for_tryton.pdf">Building packages for Tryton</a>,
<em>Axel Braun</em>, <em>Axel Braun</em>,
<a href="http://videos.tryton.org/tuba2015/AxelBraun-BuildingPackagesForTryton.html">Video</a> <a href="//videos.tryton.org/tuba2015/AxelBraun-BuildingPackagesForTryton.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/mr_robot/">Mr Robot</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/mr_robot/">Mr Robot</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
...@@ -290,9 +290,9 @@ ...@@ -290,9 +290,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/mr_robot/">Mr Robot</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/mr_robot/">Mr Robot</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tuba2015/CedricKrier-MrRobot.html">Video</a> <a href="//videos.tryton.org/tuba2015/CedricKrier-MrRobot.html">Video</a>
</li> </li>
<li> <li>
A newbie introduction to proteus, A newbie introduction to proteus,
<em>Nicolas Évrard</em>, <em>Nicolas Évrard</em>,
...@@ -295,9 +295,9 @@ ...@@ -295,9 +295,9 @@
</li> </li>
<li> <li>
A newbie introduction to proteus, A newbie introduction to proteus,
<em>Nicolas Évrard</em>, <em>Nicolas Évrard</em>,
<a href="http://videos.tryton.org/tuba2015/NicolasEvrard-ANewbieIntroductionToProteus.html">Video</a> <a href="//videos.tryton.org/tuba2015/NicolasEvrard-ANewbieIntroductionToProteus.html">Video</a>
</li> </li>
<li> <li>
typi: The Tryton Package Index, typi: The Tryton Package Index,
<em>Nicolas Èvrard</em>, <em>Nicolas Èvrard</em>,
...@@ -300,9 +300,9 @@ ...@@ -300,9 +300,9 @@
</li> </li>
<li> <li>
typi: The Tryton Package Index, typi: The Tryton Package Index,
<em>Nicolas Èvrard</em>, <em>Nicolas Èvrard</em>,
<a href="http://videos.tryton.org/tuba2015/NicolasEvrard-TypiTheTrytonPackageIndex.html">Video</a> <a href="//videos.tryton.org/tuba2015/NicolasEvrard-TypiTheTrytonPackageIndex.html">Video</a>
</li> </li>
<li> <li>
Nahual Inclusion Technology, Nahual Inclusion Technology,
<em>Cesar Tynik</em>, <em>Cesar Tynik</em>,
...@@ -305,9 +305,9 @@ ...@@ -305,9 +305,9 @@
</li> </li>
<li> <li>
Nahual Inclusion Technology, Nahual Inclusion Technology,
<em>Cesar Tynik</em>, <em>Cesar Tynik</em>,
<a href="http://videos.tryton.org/tuba2015/CesarTynik-NahualInclusionTechnology.html">Video</a> <a href="//videos.tryton.org/tuba2015/CesarTynik-NahualInclusionTechnology.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_live_cd_for_tryton.pdf">Running Tryton from a CD - and how to adapt a live system</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_live_cd_for_tryton.pdf">Running Tryton from a CD - and how to adapt a live system</a>,
<em>Axel Braun</em>, <em>Axel Braun</em>,
...@@ -310,9 +310,9 @@ ...@@ -310,9 +310,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_live_cd_for_tryton.pdf">Running Tryton from a CD - and how to adapt a live system</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/axel_braun_building_live_cd_for_tryton.pdf">Running Tryton from a CD - and how to adapt a live system</a>,
<em>Axel Braun</em>, <em>Axel Braun</em>,
<a href="http://videos.tryton.org/tuba2015/AxelBraun-RunningTrytonFromACD-andHowToAdaptALiveSystem.html">Video</a> <a href="//videos.tryton.org/tuba2015/AxelBraun-RunningTrytonFromACD-andHowToAdaptALiveSystem.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/design_pattern/">Design Patterns in Tryton</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/design_pattern/">Design Patterns in Tryton</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
...@@ -315,9 +315,9 @@ ...@@ -315,9 +315,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/design_pattern/">Design Patterns in Tryton</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/design_pattern/">Design Patterns in Tryton</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tuba2015/CedricKrier-DesignPatternsInTryton.html">Video</a> <a href="//videos.tryton.org/tuba2015/CedricKrier-DesignPatternsInTryton.html">Video</a>
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/thymbra_occhiolino.pdf">Integrating Tryton + Occhiolino in Food Testing Laboratory</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/thymbra_occhiolino.pdf">Integrating Tryton + Occhiolino in Food Testing Laboratory</a>,
<em>Sebastián Marró and Favio Dutria</em>, <em>Sebastián Marró and Favio Dutria</em>,
...@@ -320,8 +320,8 @@ ...@@ -320,8 +320,8 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUBA2015/thymbra_occhiolino.pdf">Integrating Tryton + Occhiolino in Food Testing Laboratory</a>, <a href="//downloads-cdn.tryton.org/TUBA2015/thymbra_occhiolino.pdf">Integrating Tryton + Occhiolino in Food Testing Laboratory</a>,
<em>Sebastián Marró and Favio Dutria</em>, <em>Sebastián Marró and Favio Dutria</em>,
<a href="http://videos.tryton.org/tuba2015/SebastianMarro-FavioDutria-IntegratingTryton+OcchiolinoInFoodTestingLaboratory.html">Video</a> <a href="//videos.tryton.org/tuba2015/SebastianMarro-FavioDutria-IntegratingTryton+OcchiolinoInFoodTestingLaboratory.html">Video</a>
</li> </li>
</ul> </ul>
</section> </section>
...@@ -384,9 +384,9 @@ ...@@ -384,9 +384,9 @@
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/no_localization/">Why you should not do localization modules?</a>, <a href="//downloads-cdn.tryton.org/TUB2013/no_localization/">Why you should not do localization modules?</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tub2013/WhyYouShouldNotDoLocalizationModules.html">Video</a> <a href="//videos.tryton.org/tub2013/WhyYouShouldNotDoLocalizationModules.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/WhyYouShouldNotDoLocalizationModules_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/WhyYouShouldNotDoLocalizationModules_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/release_module/">How to release module</a>, <a href="//downloads-cdn.tryton.org/TUB2013/release_module/">How to release module</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
...@@ -389,9 +389,9 @@ ...@@ -389,9 +389,9 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/release_module/">How to release module</a>, <a href="//downloads-cdn.tryton.org/TUB2013/release_module/">How to release module</a>,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tub2013/HowToReleaseModule.html">Video</a> <a href="//videos.tryton.org/tub2013/HowToReleaseModule.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/HowToReleaseModule_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/HowToReleaseModule_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/TeleTryton_for_dumbs.pdf">TéléTryton</a>, <a href="//downloads-cdn.tryton.org/TUB2013/TeleTryton_for_dumbs.pdf">TéléTryton</a>,
...@@ -400,9 +400,9 @@ ...@@ -400,9 +400,9 @@
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/cooperatives-and-free-software.pdf">Cooperatives and Free Software, Our experience with Tryton</a>, <a href="//downloads-cdn.tryton.org/TUB2013/cooperatives-and-free-software.pdf">Cooperatives and Free Software, Our experience with Tryton</a>,
<em>Pablo Vannini</em>, <em>Pablo Vannini</em>,
<a href="http://videos.tryton.org/tub2013/CooperativesAndFreeSoftware_OurExperienceWithTryton.html">Video</a> <a href="//videos.tryton.org/tub2013/CooperativesAndFreeSoftware_OurExperienceWithTryton.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/CooperativesAndFreeSoftware_OurExperienceWithTryton_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/CooperativesAndFreeSoftware_OurExperienceWithTryton_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/pos.pdf">Point of Sale</a>, <a href="//downloads-cdn.tryton.org/TUB2013/pos.pdf">Point of Sale</a>,
<em>Jordi Esteve</em>, <em>Jordi Esteve</em>,
...@@ -405,10 +405,10 @@ ...@@ -405,10 +405,10 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/pos.pdf">Point of Sale</a>, <a href="//downloads-cdn.tryton.org/TUB2013/pos.pdf">Point of Sale</a>,
<em>Jordi Esteve</em>, <em>Jordi Esteve</em>,
<a href="http://videos.tryton.org/tub2013/TrytonPointOfSale.html">Video</a> <a href="//videos.tryton.org/tub2013/TrytonPointOfSale.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/TrytonPointOfSale_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/TrytonPointOfSale_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/proteus.pdf">A newbie introduction to proteus</a>, <a href="//downloads-cdn.tryton.org/TUB2013/proteus.pdf">A newbie introduction to proteus</a>,
<em>Nicolas Évrard</em>, <em>Nicolas Évrard</em>,
...@@ -411,10 +411,10 @@ ...@@ -411,10 +411,10 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/proteus.pdf">A newbie introduction to proteus</a>, <a href="//downloads-cdn.tryton.org/TUB2013/proteus.pdf">A newbie introduction to proteus</a>,
<em>Nicolas Évrard</em>, <em>Nicolas Évrard</em>,
<a href="http://videos.tryton.org/tub2013/aNewbieIntroductionToProteus.html">Video</a> <a href="//videos.tryton.org/tub2013/aNewbieIntroductionToProteus.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/aNewbieIntroductionToProteus_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/aNewbieIntroductionToProteus_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/tryton-and-insurance.odp">Tryton and Insurance</a>, <a href="//downloads-cdn.tryton.org/TUB2013/tryton-and-insurance.odp">Tryton and Insurance</a>,
<em>Jean Cavallo</em>, <em>Jean Cavallo</em>,
...@@ -417,10 +417,10 @@ ...@@ -417,10 +417,10 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/tryton-and-insurance.odp">Tryton and Insurance</a>, <a href="//downloads-cdn.tryton.org/TUB2013/tryton-and-insurance.odp">Tryton and Insurance</a>,
<em>Jean Cavallo</em>, <em>Jean Cavallo</em>,
<a href="http://videos.tryton.org/tub2013/TrytonAndInsuranceCoopengo.html">Video</a> <a href="//videos.tryton.org/tub2013/TrytonAndInsuranceCoopengo.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/TrytonAndInsuranceCoopengo_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/TrytonAndInsuranceCoopengo_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/tryton-from-user-perspective.odp">Tryton from a User-Perspective</a>, <a href="//downloads-cdn.tryton.org/TUB2013/tryton-from-user-perspective.odp">Tryton from a User-Perspective</a>,
<em>Axel Braun</em>, <em>Axel Braun</em>,
...@@ -423,10 +423,10 @@ ...@@ -423,10 +423,10 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/tryton-from-user-perspective.odp">Tryton from a User-Perspective</a>, <a href="//downloads-cdn.tryton.org/TUB2013/tryton-from-user-perspective.odp">Tryton from a User-Perspective</a>,
<em>Axel Braun</em>, <em>Axel Braun</em>,
<a href="http://videos.tryton.org/tub2013/TrytonFromAUserPerspective.html">Video</a> <a href="//videos.tryton.org/tub2013/TrytonFromAUserPerspective.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/TrytonFromAUserPerspective_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/TrytonFromAUserPerspective_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/tryton-user-doc.pdf">Tryton User Documentation</a>, <a href="//downloads-cdn.tryton.org/TUB2013/tryton-user-doc.pdf">Tryton User Documentation</a>,
<em>Guillem Barba Domingo</em>, <em>Guillem Barba Domingo</em>,
...@@ -429,10 +429,10 @@ ...@@ -429,10 +429,10 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/tryton-user-doc.pdf">Tryton User Documentation</a>, <a href="//downloads-cdn.tryton.org/TUB2013/tryton-user-doc.pdf">Tryton User Documentation</a>,
<em>Guillem Barba Domingo</em>, <em>Guillem Barba Domingo</em>,
<a href="http://videos.tryton.org/tub2013/TrytonUserDocumentation.html">Video</a> <a href="//videos.tryton.org/tub2013/TrytonUserDocumentation.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/TrytonUserDocumentation_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/TrytonUserDocumentation_small.html">small size</a>)
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/gnu-health.pdf">GNU Health: Current status and next steps</a>, <a href="//downloads-cdn.tryton.org/TUB2013/gnu-health.pdf">GNU Health: Current status and next steps</a>,
<em>Luis Falcón</em>, <em>Luis Falcón</em>,
...@@ -435,10 +435,10 @@ ...@@ -435,10 +435,10 @@
</li> </li>
<li> <li>
<a href="//downloads-cdn.tryton.org/TUB2013/gnu-health.pdf">GNU Health: Current status and next steps</a>, <a href="//downloads-cdn.tryton.org/TUB2013/gnu-health.pdf">GNU Health: Current status and next steps</a>,
<em>Luis Falcón</em>, <em>Luis Falcón</em>,
<a href="http://videos.tryton.org/tub2013/GNUHealth_CurrentStatus_NextSteps.html">Video</a> <a href="//videos.tryton.org/tub2013/GNUHealth_CurrentStatus_NextSteps.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/GNUHealth_CurrentStatus_NextSteps_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/GNUHealth_CurrentStatus_NextSteps_small.html">small size</a>)
</li> </li>
<li> <li>
Business Intelligence: Presentation of BABI, Business Intelligence: Presentation of BABI,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
...@@ -441,10 +441,10 @@ ...@@ -441,10 +441,10 @@
</li> </li>
<li> <li>
Business Intelligence: Presentation of BABI, Business Intelligence: Presentation of BABI,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
<a href="http://videos.tryton.org/tub2013/BABI.html">Video</a> <a href="//videos.tryton.org/tub2013/BABI.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/BABI_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/BABI_small.html">small size</a>)
</li> </li>
<li> <li>
Showcase Of SAO, Showcase Of SAO,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
...@@ -447,10 +447,10 @@ ...@@ -447,10 +447,10 @@
</li> </li>
<li> <li>
Showcase Of SAO, Showcase Of SAO,
<em>Cédric Krier</em>, <em>Cédric Krier</em>,
<a href="http://videos.tryton.org/tub2013/ShowcaseOfSAO.html">Video</a> <a href="//videos.tryton.org/tub2013/ShowcaseOfSAO.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/ShowcaseOfSAO_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/ShowcaseOfSAO_small.html">small size</a>)
</li> </li>
<li> <li>
SAO patch from NaN, SAO patch from NaN,
<em>Guillem Barba Domingo</em>, <em>Guillem Barba Domingo</em>,
...@@ -453,9 +453,9 @@ ...@@ -453,9 +453,9 @@
</li> </li>
<li> <li>
SAO patch from NaN, SAO patch from NaN,
<em>Guillem Barba Domingo</em>, <em>Guillem Barba Domingo</em>,
<a href="http://videos.tryton.org/tub2013/SAO_NaN.html">Video</a> <a href="//videos.tryton.org/tub2013/SAO_NaN.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/SAO_NaN_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/SAO_NaN_small.html">small size</a>)
</li> </li>
<li> <li>
Roundtable About The Future Development, Roundtable About The Future Development,
...@@ -459,8 +459,8 @@ ...@@ -459,8 +459,8 @@
</li> </li>
<li> <li>
Roundtable About The Future Development, Roundtable About The Future Development,
<a href="http://videos.tryton.org/tub2013/merged/9_RoundtableAboutTheFutureDevelopment.ogg">Audio</a> <a href="//videos.tryton.org/tub2013/merged/9_RoundtableAboutTheFutureDevelopment.ogg">Audio</a>
</li> </li>
<li> <li>
iOS client, iOS client,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
...@@ -463,10 +463,10 @@ ...@@ -463,10 +463,10 @@
</li> </li>
<li> <li>
iOS client, iOS client,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
<a href="http://videos.tryton.org/tub2013/iOS_client.html">Video</a> <a href="//videos.tryton.org/tub2013/iOS_client.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/iOS_client_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/iOS_client_small.html">small size</a>)
</li> </li>
<li> <li>
Nereid Workshop, Nereid Workshop,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
...@@ -469,10 +469,10 @@ ...@@ -469,10 +469,10 @@
</li> </li>
<li> <li>
Nereid Workshop, Nereid Workshop,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
<a href="http://videos.tryton.org/tub2013/NereidWorkshop.html">Video</a> <a href="//videos.tryton.org/tub2013/NereidWorkshop.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/NereidWorkshop_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/NereidWorkshop_small.html">small size</a>)
</li> </li>
<li> <li>
Working In Distributed Environments, Synchronizing Instances And Models, Working In Distributed Environments, Synchronizing Instances And Models,
<em>Sebastián Marró</em>, <em>Sebastián Marró</em>,
...@@ -475,9 +475,9 @@ ...@@ -475,9 +475,9 @@
</li> </li>
<li> <li>
Working In Distributed Environments, Synchronizing Instances And Models, Working In Distributed Environments, Synchronizing Instances And Models,
<em>Sebastián Marró</em>, <em>Sebastián Marró</em>,
<a href="http://videos.tryton.org/tub2013/WorkingInDistributedEnvironments_SynchronizingInstancesAndModels.html">Video</a> <a href="//videos.tryton.org/tub2013/WorkingInDistributedEnvironments_SynchronizingInstancesAndModels.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/WorkingInDistributedEnvironments_SynchronizingInstancesAndModels_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/WorkingInDistributedEnvironments_SynchronizingInstancesAndModels_small.html">small size</a>)
</li> </li>
<li> <li>
Tryton Private Foundation Treasury, Tryton Private Foundation Treasury,
...@@ -481,9 +481,9 @@ ...@@ -481,9 +481,9 @@
</li> </li>
<li> <li>
Tryton Private Foundation Treasury, Tryton Private Foundation Treasury,
<a href="http://videos.tryton.org/tub2013/TrytonPrivateFoundationTreasury.html">Video</a> <a href="//videos.tryton.org/tub2013/TrytonPrivateFoundationTreasury.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/TrytonPrivateFoundationTreasury_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/TrytonPrivateFoundationTreasury_small.html">small size</a>)
</li> </li>
<li> <li>
Workshop summaries: BABI, Workshop summaries: BABI,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
...@@ -486,9 +486,9 @@ ...@@ -486,9 +486,9 @@
</li> </li>
<li> <li>
Workshop summaries: BABI, Workshop summaries: BABI,
<em>Albert Cervera i Areny</em>, <em>Albert Cervera i Areny</em>,
<a href="http://videos.tryton.org/tub2013/WorkshopSummaryBABI.html">Video</a> <a href="//videos.tryton.org/tub2013/WorkshopSummaryBABI.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/WorkshopSummaryBABI_small.html">small size</a>)</li> (<a href="//videos.tryton.org/tub2013/WorkshopSummaryBABI_small.html">small size</a>)</li>
<li> <li>
Workshop summaries: Tryton Documentation, Workshop summaries: Tryton Documentation,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
...@@ -492,8 +492,8 @@ ...@@ -492,8 +492,8 @@
<li> <li>
Workshop summaries: Tryton Documentation, Workshop summaries: Tryton Documentation,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
<a href="http://videos.tryton.org/tub2013/WorkshopSummaryTrytonDocumentation.html">Video</a> <a href="//videos.tryton.org/tub2013/WorkshopSummaryTrytonDocumentation.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/WorkshopSummaryTrytonDocumentation_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/WorkshopSummaryTrytonDocumentation_small.html">small size</a>)
</li> </li>
<li> <li>
Tryton Magento, Tryton Magento,
...@@ -497,9 +497,9 @@ ...@@ -497,9 +497,9 @@
</li> </li>
<li> <li>
Tryton Magento, Tryton Magento,
<a href="http://videos.tryton.org/tub2013/TrytonMagento.html">Video</a> <a href="//videos.tryton.org/tub2013/TrytonMagento.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/TrytonMagento_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/TrytonMagento_small.html">small size</a>)
</li> </li>
<li> <li>
Nereid Extra Features, Nereid Extra Features,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
...@@ -502,9 +502,9 @@ ...@@ -502,9 +502,9 @@
</li> </li>
<li> <li>
Nereid Extra Features, Nereid Extra Features,
<em>Sharoon Thomas</em>, <em>Sharoon Thomas</em>,
<a href="http://videos.tryton.org/tub2013/NereidExtraFeatures.html">Video</a> <a href="//videos.tryton.org/tub2013/NereidExtraFeatures.html">Video</a>
(<a href="http://videos.tryton.org/tub2013/NereidExtraFeatures_small.html">small size</a>) (<a href="//videos.tryton.org/tub2013/NereidExtraFeatures_small.html">small size</a>)
</li> </li>
</ul> </ul>
</section> </section>
......
{% set img = url_for('static', filename='images/service-providers/b2ck.jpg') %} {% set img = url_for('static', filename='images/service-providers/b2ck.jpg') %}
{% set website = 'http://www.b2ck.com/' %} {% set website = 'https://www.b2ck.com/' %}
{% set email = 'info@b2ck.com' %} {% set email = 'info@b2ck.com' %}
{% set phone = '+32472544659' %} {% set phone = '+32472544659' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
......
{% set img = url_for('static', filename='images/service-providers/coopengo.jpg') %} {% set img = url_for('static', filename='images/service-providers/coopengo.jpg') %}
{% set website = 'http://www.coopengo.com/' %} {% set website = 'https://www.coopengo.com/' %}
{% set email = 'info@coopengo.com' %} {% set email = 'info@coopengo.com' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
{% block description %} {% block description %}
......
{% set website = 'http://gcoop.coop/' %} {% set website = 'https://www.gcoop.coop/' %}
{% set email = 'info@gcoop.coop' %} {% set email = 'info@gcoop.coop' %}
{% set phone = '+541152547755' %} {% set phone = '+541152547755' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
......
{% set img = url_for('static', filename='images/service-providers/m-ds.jpg') %} {% set img = url_for('static', filename='images/service-providers/m-ds.jpg') %}
{% set website = 'http://www.m-ds.de/' %} {% set website = 'https://www.m-ds.de/' %}
{% set email = 'service@m-ds.de' %} {% set email = 'service@m-ds.de' %}
{% set phone = '+493328308801' %} {% set phone = '+493328308801' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
......
{% set img = url_for('static', filename='images/service-providers/nan-tic.jpg') %} {% set img = url_for('static', filename='images/service-providers/nan-tic.jpg') %}
{% set website = 'http://www.nan-tic.com/' %} {% set website = 'https://www.nan-tic.com/' %}
{% set email = 'info@nan-tic.com' %} {% set email = 'info@nan-tic.com' %}
{% set phone = '+34935531803' %} {% set phone = '+34935531803' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
......
{% set img = url_for('static', filename='images/service-providers/power-solutions.jpg') %} {% set img = url_for('static', filename='images/service-providers/power-solutions.jpg') %}
{% set website = 'http://www.powersolutions.ch/' %} {% set website = 'https://www.powersolutions.ch/' %}
{% set email = 'contact@powersolutions.ch' %} {% set email = 'contact@powersolutions.ch' %}
{% set phone = '+41412111222' %} {% set phone = '+41412111222' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
{% block description %} {% block description %}
Since 2012 we have offered Tryton cloud servers that you can easily rent (SAAS). Since 2012 we have offered Tryton cloud servers that you can easily rent (SAAS).
We offer consulting, integration, extension and support for Tryton solutions. We offer consulting, integration, extension and support for Tryton solutions.
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
{% set email = 'contact@powersolutions.ch' %} {% set email = 'contact@powersolutions.ch' %}
{% set phone = '+41412111222' %} {% set phone = '+41412111222' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
{% block description %} {% block description %}
Since 2012 we have offered Tryton cloud servers that you can easily rent (SAAS). Since 2012 we have offered Tryton cloud servers that you can easily rent (SAAS).
We offer consulting, integration, extension and support for Tryton solutions. We offer consulting, integration, extension and support for Tryton solutions.
Also check out <a href="http://www.tryton.cloud/">tryton.cloud</a>. Also check out <a href="https://www.tryton.cloud/">tryton.cloud</a>.
{% endblock description %} {% endblock description %}
{% block location %}Lucerne, Switzerland{% endblock %} {% block location %}Lucerne, Switzerland{% endblock %}
{% set img = url_for('static', filename='images/service-providers/sisalp.jpg') %} {% set img = url_for('static', filename='images/service-providers/sisalp.jpg') %}
{% set website = 'http://sisalp.fr/' %} {% set website = 'https://sisalp.fr/' %}
{% set email = 'contact@sisalp.fr' %} {% set email = 'contact@sisalp.fr' %}
{% set phone = '+33950274960' %} {% set phone = '+33950274960' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
......
{% set img = url_for('static', filename='images/service-providers/virtual-things.jpg') %} {% set img = url_for('static', filename='images/service-providers/virtual-things.jpg') %}
{% set website = 'http://www.virtual-things.biz/' %} {% set website = 'https://www.virtual-things.biz/' %}
{% set email = 'info@virtual-things.biz' %} {% set email = 'info@virtual-things.biz' %}
{% set phone = '+498971048155' %} {% set phone = '+498971048155' %}
{% extends "service_providers/layout.html" %} {% extends "service_providers/layout.html" %}
......
...@@ -45,5 +45,5 @@ ...@@ -45,5 +45,5 @@
{% endblock %} {% endblock %}
{% block provider %} {% block provider %}
{{ super() }} {{ super() }}
<p><a href="http://www.powersolutions.ch/">power solutions</a></p> <p><a href="https://www.powersolutions.ch/">power solutions</a></p>
{% endblock %} {% endblock %}
...@@ -50,5 +50,5 @@ ...@@ -50,5 +50,5 @@
{% endblock %} {% endblock %}
{% block provider %} {% block provider %}
{{ super() }} {{ super() }}
<p><a href="http://www.gcoop.coop/">gcoop</a> provided its development experience with Tryton and web development with Drupal</p> <p><a href="https://www.gcoop.coop/">gcoop</a> provided its development experience with Tryton and web development with Drupal</p>
{% endblock %} {% endblock %}
...@@ -51,5 +51,5 @@ ...@@ -51,5 +51,5 @@
{% endblock %} {% endblock %}
{% block provider %} {% block provider %}
{{ super() }} {{ super() }}
<p><a href="http://www.powersolutions.ch/">power solutions</a></p> <p><a href="https://www.powersolutions.ch/">power solutions</a></p>
{% endblock %} {% endblock %}
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<noscript class="loading-lazy"> <noscript class="loading-lazy">
<img src="{{ url_for('static', filename='images/success-stories/camir/warehouse1.jpg') }}" class="mx-auto my-4 d-block mx-md-4 my-md-0 float-md-left" alt="Zone C of CAMIR's warehouse" loading="lazy"> <img src="{{ url_for('static', filename='images/success-stories/camir/warehouse1.jpg') }}" class="mx-auto my-4 d-block mx-md-4 my-md-0 float-md-left" alt="Zone C of CAMIR's warehouse" loading="lazy">
</noscript> </noscript>
<a href="http://www.camirperu.com/">CAMIR</a>, is a company whose main activities are the commercialization of industrial products and the manufacture of metal parts at the business to business level, one of its main clients is the largest brewery factory in Peru.</p> <a href="https://www.camirperu.com/">CAMIR</a>, is a company whose main activities are the commercialization of industrial products and the manufacture of metal parts at the business to business level, one of its main clients is the largest brewery factory in Peru.</p>
<p>It started operations in 1991 and is located in the JR. HELIO NRO. 5624 URB. INDUSTRIAL INFANTAS - LOS OLIVOS - LIMA - PERU.</p> <p>It started operations in 1991 and is located in the JR. HELIO NRO. 5624 URB. INDUSTRIAL INFANTAS - LOS OLIVOS - LIMA - PERU.</p>
<p>It has <a href="https://www.iso.org/standard/62085.html">ISO 9001-2015</a> certification since April-2018, a process initiated in parallel with the implementation of Tryton as its ERP in 2017.</p> <p>It has <a href="https://www.iso.org/standard/62085.html">ISO 9001-2015</a> certification since April-2018, a process initiated in parallel with the implementation of Tryton as its ERP in 2017.</p>
{% endblock %} {% endblock %}
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
{% endblock customer %} {% endblock customer %}
{% block challenge %} {% block challenge %}
{{ super() }} {{ super() }}
<p>Expertise-Vision was running an old version of <a href="http://www.odoo.com/">Odoo</a> (named OpenERP at that time). <p>Expertise-Vision was running an old version of <a href="https://www.odoo.com/">Odoo</a> (named OpenERP at that time).
They wanted to upgrade to a system with the same features but which could be updated smoothly. They wanted to upgrade to a system with the same features but which could be updated smoothly.
The perimeter of the ERP at that time was narrowed to the following functionalities:</p> The perimeter of the ERP at that time was narrowed to the following functionalities:</p>
<ul> <ul>
...@@ -34,11 +34,11 @@ ...@@ -34,11 +34,11 @@
{% block implementation %} {% block implementation %}
{{ super() }} {{ super() }}
<p>We designed a <a href="https://hg.b2ck.com/openerp2tryton/">migration script</a> to import into an unmodified Tryton system the data from the OpenERP instance. <p>We designed a <a href="https://hg.b2ck.com/openerp2tryton/">migration script</a> to import into an unmodified Tryton system the data from the OpenERP instance.
The leads and opportunities were transferred to use the <a href="http://docs.tryton.org/projects/modules-sale-opportunity">Sale Opportunity module</a>.</p> The leads and opportunities were transferred to use the <a href="//docs.tryton.org/projects/modules-sale-opportunity">Sale Opportunity module</a>.</p>
<p>From the initial list of functionalities the usage of <a href="http://radicale.org/">Radical</a> with an <a href="http://hg.b2ck.com/radicale_tryton_auth/">authentication plugin</a> for calendar management and the <a href="http://docs.tryton.org/projects/modules-party-relationship">Party Relationship module</a> were added to the list of requirements. <p>From the initial list of functionalities the usage of <a href="https://radicale.org/">Radical</a> with an <a href="http://hg.b2ck.com/radicale_tryton_auth/">authentication plugin</a> for calendar management and the <a href="//docs.tryton.org/projects/modules-party-relationship">Party Relationship module</a> were added to the list of requirements.
The supplier invoices and payments are also handled by the system now.</p> The supplier invoices and payments are also handled by the system now.</p>
{% endblock implementation %} {% endblock implementation %}
{% block results %} {% block results %}
{{ super() }} {{ super() }}
<p>The migration from OpenERP to Tryton has been a success and was implemented very quickly. <p>The migration from OpenERP to Tryton has been a success and was implemented very quickly.
Tryton has also demonstrated that it can be used without much customization in order to successfully run a business from the quotation phase through to the payment of invoices.</p> Tryton has also demonstrated that it can be used without much customization in order to successfully run a business from the quotation phase through to the payment of invoices.</p>
...@@ -39,11 +39,11 @@ ...@@ -39,11 +39,11 @@
The supplier invoices and payments are also handled by the system now.</p> The supplier invoices and payments are also handled by the system now.</p>
{% endblock implementation %} {% endblock implementation %}
{% block results %} {% block results %}
{{ super() }} {{ super() }}
<p>The migration from OpenERP to Tryton has been a success and was implemented very quickly. <p>The migration from OpenERP to Tryton has been a success and was implemented very quickly.
Tryton has also demonstrated that it can be used without much customization in order to successfully run a business from the quotation phase through to the payment of invoices.</p> Tryton has also demonstrated that it can be used without much customization in order to successfully run a business from the quotation phase through to the payment of invoices.</p>
<p>The implementation of the <a href="http://docs.tryton.org/projects/modules-purchase">Purchase</a> and <a href="http://docs.tryton.org/projects/modules-stock">Stock</a> modules has structured the purchasing process and significantly improved the invoice control. <p>The implementation of the <a href="//docs.tryton.org/projects/modules-purchase">Purchase</a> and <a href="//docs.tryton.org/projects/modules-stock">Stock</a> modules has structured the purchasing process and significantly improved the invoice control.
Expertise-Vision can now easily view outstanding supplier and customer bills.</p> Expertise-Vision can now easily view outstanding supplier and customer bills.</p>
{% endblock %} {% endblock %}
{% block provider %} {% block provider %}
{{ super() }} {{ super() }}
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
Expertise-Vision can now easily view outstanding supplier and customer bills.</p> Expertise-Vision can now easily view outstanding supplier and customer bills.</p>
{% endblock %} {% endblock %}
{% block provider %} {% block provider %}
{{ super() }} {{ super() }}
<p><a href="http://www.b2ck.com/">B2CK</a> provided its development experience with Tryton (and OpenERP)</p> <p><a href="https://www.b2ck.com/">B2CK</a> provided its development experience with Tryton (and OpenERP)</p>
<p><a href="http://sisalp.fr/">SISalp</a> provided its hosting experience in matters of deployment and backup infrastructure.</p> <p><a href="https://sisalp.fr/">SISalp</a> provided its hosting experience in matters of deployment and backup infrastructure.</p>
{% endblock %} {% endblock %}
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
{% endblock challenge %} {% endblock challenge %}
{% block solution %} {% block solution %}
{{ super() }} {{ super() }}
<p><a href="http://www.tryton.cloud/">Tryton.cloud</a> was chosen as it delivers a fast and easy to integrate SaaS solution based on the excellent Tryton framework. <p><a href="https://www.tryton.cloud/">Tryton.cloud</a> was chosen as it delivers a fast and easy to integrate SaaS solution based on the excellent Tryton framework.
Custom modules were not needed as Tryton.cloud already incorporates all the features a company like Felber needs.</p> Custom modules were not needed as Tryton.cloud already incorporates all the features a company like Felber needs.</p>
{% endblock solution %} {% endblock solution %}
{% block implementation %} {% block implementation %}
...@@ -48,5 +48,5 @@ ...@@ -48,5 +48,5 @@
{% endblock %} {% endblock %}
{% block provider %} {% block provider %}
{{ super() }} {{ super() }}
<p><a href="http://www.powersolutions.ch/">power solutions</a></p> <p><a href="https://www.powersolutions.ch/">power solutions</a></p>
{% endblock %} {% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment