Add SHAARLI support to view template
0
CONTRIBUTING.md
Normal file → Executable file
0
INSTALL.md
Normal file → Executable file
0
composer.json
Normal file → Executable file
0
composer.lock
generated
Normal file → Executable file
0
inc/3rdparty/Encoding.php
vendored
Normal file → Executable file
0
inc/3rdparty/JSLikeHTMLElement.php
vendored
Normal file → Executable file
0
inc/3rdparty/Readability.php
vendored
Normal file → Executable file
0
inc/3rdparty/Session.class.php
vendored
Normal file → Executable file
0
inc/3rdparty/paginator.php
vendored
Normal file → Executable file
0
inc/3rdparty/simple_html_dom.php
vendored
Normal file → Executable file
0
inc/poche/Database.class.php
Normal file → Executable file
0
inc/poche/Poche.class.php
Normal file → Executable file
0
inc/poche/Tools.class.php
Normal file → Executable file
0
inc/poche/Url.class.php
Normal file → Executable file
0
inc/poche/User.class.php
Normal file → Executable file
0
inc/poche/pochePictures.php
Normal file → Executable file
0
install/mysql.sql
Normal file → Executable file
0
install/postgres.sql
Normal file → Executable file
0
install/update.php
Normal file → Executable file
0
install/update_sqlite_from_0_to_1.php
Normal file → Executable file
0
locale/de_DE.utf8/LC_MESSAGES/de_DE.utf8.mo
Normal file → Executable file
0
locale/de_DE.utf8/LC_MESSAGES/de_DE.utf8.po
Normal file → Executable file
0
locale/es_ES.utf8/LC_MESSAGES/es_ES.utf8.mo
Normal file → Executable file
0
locale/es_ES.utf8/LC_MESSAGES/es_ES.utf8.po
Normal file → Executable file
0
locale/fr_FR.utf8/LC_MESSAGES/fr_FR.utf8.mo
Normal file → Executable file
0
locale/fr_FR.utf8/LC_MESSAGES/fr_FR.utf8.po
Normal file → Executable file
0
phpunit.xml.dist
Normal file → Executable file
0
robots.txt
Normal file → Executable file
0
tpl/_bookmarklet.twig
Normal file → Executable file
0
tpl/_footer.twig
Normal file → Executable file
0
tpl/_head.twig
Normal file → Executable file
0
tpl/_menu.twig
Normal file → Executable file
0
tpl/_messages.twig
Normal file → Executable file
0
tpl/_top.twig
Normal file → Executable file
0
tpl/config.twig
Normal file → Executable file
0
tpl/css/knacss.css
Normal file → Executable file
0
tpl/css/print.css
Normal file → Executable file
0
tpl/css/style-light.css
Normal file → Executable file
0
tpl/css/style.css
Normal file → Executable file
0
tpl/error.twig
Normal file → Executable file
0
tpl/export.twig
Normal file → Executable file
0
tpl/home.twig
Normal file → Executable file
0
tpl/img/apple-touch-icon-144x144-precomposed.png
Normal file → Executable file
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
0
tpl/img/apple-touch-icon-72x72-precomposed.png
Normal file → Executable file
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 6.0 KiB |
0
tpl/img/apple-touch-icon.png
Normal file → Executable file
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
0
tpl/img/favicon.ico
Normal file → Executable file
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 346 B |
0
tpl/img/light/checkmark-off.png
Normal file → Executable file
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 277 B |
0
tpl/img/light/checkmark-on.png
Normal file → Executable file
Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 235 B |
0
tpl/img/light/down.png
Normal file → Executable file
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 216 B |
0
tpl/img/light/remove.png
Normal file → Executable file
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 252 B |
0
tpl/img/light/shaarli.png
Normal file → Executable file
Before Width: | Height: | Size: 729 B After Width: | Height: | Size: 729 B |
0
tpl/img/light/star-off.png
Normal file → Executable file
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 314 B |
0
tpl/img/light/star-on.png
Normal file → Executable file
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 281 B |
0
tpl/img/logo.png
Normal file → Executable file
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
0
tpl/install.twig
Normal file → Executable file
0
tpl/js/jquery-2.0.3.min.js
vendored
Normal file → Executable file
0
tpl/layout.twig
Normal file → Executable file
0
tpl/login.twig
Normal file → Executable file
2
tpl/view.twig
Normal file → Executable file
@ -10,6 +10,7 @@
|
||||
<li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span>{% trans "delete" %}</span></a></li>
|
||||
{% if constant('SHARE_TWITTER') == 1 %}<li><a href="https://twitter.com/home?status={{entry.title|url_encode}}%20{{ entry.url|url_encode }}%20via%20@getpoche" target="_blank" class="tool twitter" title="{% trans "tweet" %}"><span>{% trans "tweet" %}</span></a></li>{% endif %}
|
||||
{% if constant('SHARE_MAIL') == 1 %}<li><a href="mailto:?subject={{ entry.title|url_encode }}&body={{ entry.url|url_encode }}%20via%20@getpoche" class="tool email" title="{% trans "email" %}"><span>{% trans "email" %}</span></a></li>{% endif %}
|
||||
{% if constant('SHARE_SHAARLI') == 1 %}<li><a href="{{ constant('SHAARLI_URL') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|e }}" target="_blank" class="tool shaarli" title="{% trans "shaarli" %}"><span>{% trans "shaarli" %}</span></a></li>{% endif %}
|
||||
</ul>
|
||||
</div>
|
||||
<header class="mbm">
|
||||
@ -29,6 +30,7 @@
|
||||
<li><a title="{% trans "delete" %}" class="tool delete" href="./?action=delete&id={{ entry.id|e }}"><span>{% trans "delete" %}</span></a></li>
|
||||
{% if constant('SHARE_TWITTER') == 1 %}<li><a href="https://twitter.com/home?status={{entry.title|url_encode}}%20{{ entry.url|url_encode }}%20via%20@getpoche" target="_blank" class="tool twitter" title="{% trans "tweet" %}"><span>{% trans "tweet" %}</span></a></li>{% endif %}
|
||||
{% if constant('SHARE_MAIL') == 1 %}<li><a href="mailto:?subject={{ entry.title|url_encode }}&body={{ entry.url|url_encode }}%20via%20@getpoche" class="tool email" title="{% trans "email" %}"><span>{% trans "email" %}</span></a></li>{% endif %}
|
||||
{% if constant('SHARE_SHAARLI') == 1 %}<li><a href="{{ constant('SHAARLI_URL') }}/index.php?post={{ entry.url|url_encode }}&title={{ entry.title|url_encode }}" target="_blank" class="tool shaarli" title="{% trans "shaarli" %}"><span>{% trans "shaarli" %}</span></a></li>{% endif %}
|
||||
</ul>
|
||||
<p>{% trans "this article appears wrong?" %} <a href="https://github.com/inthepoche/poche/issues/new">{% trans "create an issue" %}</a> {% trans "or" %} <a href="mailto:support@inthepoche.com?subject=Wrong%20display%20in%20poche&body={{ entry.url|url_encode }}">{% trans "contact us by mail" %}</a></p>
|
||||
</div>
|
||||
|