mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 09:53:15 +00:00
Use url generator everywhere
This commit is contained in:
@@ -97,15 +97,15 @@
|
||||
}
|
||||
</style>
|
||||
|
||||
<link type="text/css" rel="stylesheet" href="{{app['phraseanet.registry'].get('GV_STATIC_URL')}}/include/minify/?f=include/jslibs/jquery.contextmenu.css,include/jslibs/colorpicker/css/colorpicker.css,include/jslibs/jquery-treeview/jquery.treeview.css,skins/common/main.css,skins/geonames/geonames.css,include/jquery.image_enhancer.css,include/jslibs/jquery-ui-1.8.17/css/dark-hive/jquery-ui-1.8.17.custom.css" >
|
||||
<link id="skinCss" type="text/css" rel="stylesheet" href="{{app['phraseanet.registry'].get('GV_STATIC_URL')}}/include/minify/?f=skins/prod/{{cssfile}}/prodcolor.css" >
|
||||
<link type="text/css" rel="stylesheet" href="{{app['phraseanet.registry'].get('GV_STATIC_URL')}}/include/minify/?f=assets/humane-js/themes/libnotify.css,skins/prod/Prod.css,skins/prod/Basket.css,skins/prod/Push.css" >
|
||||
<link type="text/css" rel="stylesheet" href="{{ path('minifier', { 'f' : 'include/jslibs/jquery.contextmenu.css,include/jslibs/colorpicker/css/colorpicker.css,include/jslibs/jquery-treeview/jquery.treeview.css,skins/common/main.css,skins/geonames/geonames.css,include/jquery.image_enhancer.css,include/jslibs/jquery-ui-1.8.17/css/dark-hive/jquery-ui-1.8.17.custom.css' }) }}" >
|
||||
<link id="skinCss" type="text/css" rel="stylesheet" href="{{ path('minifier', { 'f' : 'skins/prod/' ~ cssfile ~ '/prodcolor.css' }) }}" >
|
||||
<link type="text/css" rel="stylesheet" href="{{ path('minifier', { 'f' : 'assets/humane-js/themes/libnotify.css,skins/prod/Prod.css,skins/prod/Basket.css,skins/prod/Push.css' }) }}" >
|
||||
|
||||
<!--[if IE 7]>
|
||||
<link type="text/css" rel="stylesheet" href="/include/minify/?f=skins/prod/ie7.css" >
|
||||
<link type="text/css" rel="stylesheet" href="{{ path('minifier', { 'f' : 'skins/prod/ie7.css' }) }}" >
|
||||
<![endif]-->
|
||||
<!--[if IE 8]>
|
||||
<link type="text/css" rel="stylesheet" href="/include/minify/?f=skins/prod/ie8.css" >
|
||||
<link type="text/css" rel="stylesheet" href="{{ path('minifier', { 'f' : 'skins/prod/ie8.css' }) }}" >
|
||||
<![endif]-->
|
||||
|
||||
<style title="color_selection" type="text/css">
|
||||
@@ -253,19 +253,19 @@
|
||||
<ul style="list-style-type:none;margin:0;padding:0">
|
||||
<li class="context-menu-item">
|
||||
<div class="context-menu-item-inner"@>
|
||||
<a title="{% trans 'action:: nouveau panier' %}" class="dialog small-dialog" href="/prod/baskets/create/">
|
||||
<a title="{% trans 'action:: nouveau panier' %}" class="dialog small-dialog" href="{{ path('prod_baskets_create') }}">
|
||||
<img style="cursor:pointer;" src="/skins/icons/mtadd_0.gif" title="{% trans 'action:: nouveau panier' %}" />
|
||||
{% trans 'action:: nouveau panier' %}
|
||||
</a>
|
||||
</div>
|
||||
<div class="context-menu-item-inner"@>
|
||||
<a title="{% trans 'Browse Baskets' %}" class="dialog" href="/prod/WorkZone/Browse/">
|
||||
<a title="{% trans 'Browse Baskets' %}" class="dialog" href="{{ path('prod_workzone_browse') }}">
|
||||
{% trans 'Browse Baskets' %}
|
||||
</a>
|
||||
</div>
|
||||
{% if app['phraseanet.registry'].get('GV_multiAndReport') %}
|
||||
<div class="context-menu-item-inner"@>
|
||||
<a title="{% trans 'action:: nouveau reportage' %}" class="dialog small-dialog" href="/prod/story/create/">
|
||||
<a title="{% trans 'action:: nouveau reportage' %}" class="dialog small-dialog" href="{{ path('prod_stories_create') }}">
|
||||
<img style="cursor:pointer;" src="/skins/icons/mtadd_0.gif" title="{% trans 'action:: nouveau reportage' %}" />
|
||||
{% trans 'action:: nouveau reportage' %}
|
||||
</a>
|
||||
@@ -296,7 +296,7 @@
|
||||
<div class="PNB" id="rightFrame" style="left:auto; width:{{w2}}%;">
|
||||
<div id="headBlock" class="PNB" style="height: 90px; bottom: auto;">
|
||||
<div style="margin: 15px auto; line-height: 30px; width: 580px;">
|
||||
<form id="searchForm" action="/prod/query/" name="phrasea_query" class="phrasea_query">
|
||||
<form id="searchForm" action="{{ path('prod_query') }}" name="phrasea_query" class="phrasea_query">
|
||||
<input autocomplete="off" class="search query" id="EDIT_query" name="qry" type="text" name="qry" value="{{app['authentication'].getUser().getPrefs('start_page_query')}}">
|
||||
<a href="#" class="adv_trigger adv_search_button">
|
||||
<img src="/skins/icons/settings.png" title="{% trans 'Advanced Search' %}"/>
|
||||
@@ -1010,19 +1010,13 @@
|
||||
<div id="dialog_publicator" title="{% trans 'action : bridge' %}" style="display:none;"></div>
|
||||
|
||||
<div id="modal_feed" title="{% trans 'action : publier' %}" style="display:none;"></div>
|
||||
<form id="push_form" style="display:none;" method="post" target="download" action="/prod/pushdoc.php">
|
||||
<input name="lst" value="" />
|
||||
<input name="ACT" value="LOAD" />
|
||||
<input name="SSTTID" value="LOAD" />
|
||||
</form>
|
||||
|
||||
<div id="dialog_dwnl" title="{% trans 'action : exporter' %}" style="display:none;"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
{% include "prod/thesaurus.js" %}
|
||||
</script>
|
||||
<script type="text/javascript" src="{{app['phraseanet.registry'].get('GV_STATIC_URL')}}/include/minify/?g=prod"></script>
|
||||
<script type="text/javascript" src="{{app['phraseanet.registry'].get('GV_STATIC_URL')}}/include/jslibs/jquery-ui-1.8.17/js/jquery-ui-1.8.17.custom.min.js"></script>
|
||||
<script type="text/javascript" src="{{ path('minifier', { 'g' : 'prod' }) }}"></script>
|
||||
<script type="text/javascript" src="{{ path('minifier', { 'f' : 'include/jslibs/jquery-ui-1.8.17/js/jquery-ui-1.8.17.custom.min.js' }) }}"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
p4.reg_delete="{% if app['authentication'].getUser().getPrefs("warning_on_delete_story") %}true{% else %}false{% endif %}";
|
||||
|
Reference in New Issue
Block a user