Commit 8c1148ef authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

2007-09-04 Kazuhiko

* use portal_url.getPortalObject().absolute_url_path() instead of portal_url.getPortalPath() for better virtual host support.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@16061 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 679585f8
...@@ -806,7 +806,7 @@ fieldset {\n ...@@ -806,7 +806,7 @@ fieldset {\n
/* listbox */\n /* listbox */\n
\n \n
.ListSummary {\n .ListSummary {\n
background: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/tab_left.png\') top left no-repeat;\n background: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/tab_left.png\') top left no-repeat;\n
color: #000;\n color: #000;\n
background-color: <dtml-var document_background_color>;\n background-color: <dtml-var document_background_color>;\n
padding-left: 10px;\n padding-left: 10px;\n
...@@ -904,43 +904,43 @@ fieldset {\n ...@@ -904,43 +904,43 @@ fieldset {\n
}\n }\n
\n \n
#favourites button .image {\n #favourites button .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/favourite.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/favourite.png\');\n
}\n }\n
\n \n
#modules button .image {\n #modules button .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/appearance.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/appearance.png\');\n
}\n }\n
\n \n
#language button .image {\n #language button .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/language.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/language.png\');\n
}\n }\n
\n \n
#search button .image {\n #search button .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/info.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/info.png\');\n
}\n }\n
\n \n
#actions button .image {\n #actions button .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/exec16.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/exec16.png\');\n
}\n }\n
\n \n
#context_bar .tool_buttons .jump_first .image {\n #context_bar .tool_buttons .jump_first .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/2leftarrowb.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/2leftarrowb.png\');\n
}\n }\n
\n \n
#context_bar .tool_buttons .jump_previous .image {\n #context_bar .tool_buttons .jump_previous .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/1leftarrowb.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/1leftarrowb.png\');\n
}\n }\n
\n \n
#context_bar .tool_buttons .jump_next .image {\n #context_bar .tool_buttons .jump_next .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/1rightarrowb.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/1rightarrowb.png\');\n
}\n }\n
\n \n
#context_bar .tool_buttons .jump_last .image {\n #context_bar .tool_buttons .jump_last .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/2rightarrowb.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/2rightarrowb.png\');\n
}\n }\n
\n \n
#context_bar .tool_buttons .list_mode .image {\n #context_bar .tool_buttons .list_mode .image {\n
background-image: url(\'<dtml-var expr="portal_url.absolute_url_path()">/images/text_block.png\');\n background-image: url(\'<dtml-var expr="portal_url.getPortalObject().absolute_url_path()">/images/text_block.png\');\n
}\n }\n
\n \n
#navigation_bar button .image,\n #navigation_bar button .image,\n
......
...@@ -76,7 +76,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n ...@@ -76,7 +76,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
-->\n -->\n
</tal:block>\n </tal:block>\n
<tal:block tal:define="form_action string:logged_in;\n <tal:block tal:define="form_action string:logged_in;\n
js_list python: [\'%s/login_form.js\' % (here.portal_url.absolute_url_path(), )]">\n js_list python: [\'%s/login_form.js\' % (here.portal_url.getPortalObject().absolute_url_path(), )]">\n
<tal:block metal:use-macro="here/main_template/macros/master">\n <tal:block metal:use-macro="here/main_template/macros/master">\n
<tal:block metal:fill-slot="main">\n <tal:block metal:fill-slot="main">\n
<div class="content login">\n <div class="content login">\n
......
2007-09-04 Kazuhiko 2007-09-04 Kazuhiko
* use absolute_url_path instead of getPortalPath for better virtual host support. * use portal_url.getPortalObject().absolute_url_path() instead of portal_url.getPortalPath() for better virtual host support.
\ No newline at end of file \ No newline at end of file
19 20
\ No newline at end of file \ No newline at end of file
...@@ -51,7 +51,6 @@ ...@@ -51,7 +51,6 @@
<key> <string>_text</string> </key> <key> <string>_text</string> </key>
<value> <string encoding="cdata"><![CDATA[ <value> <string encoding="cdata"><![CDATA[
\n
<html xmlns:tal="http://xml.zope.org/namespaces/tal"\n <html xmlns:tal="http://xml.zope.org/namespaces/tal"\n
xmlns:metal="http://xml.zope.org/namespaces/metal">\n xmlns:metal="http://xml.zope.org/namespaces/metal">\n
<head>\n <head>\n
...@@ -80,7 +79,7 @@ ...@@ -80,7 +79,7 @@
have id "2". This is probably a bit too stupid. -->\n have id "2". This is probably a bit too stupid. -->\n
<tr>\n <tr>\n
<td>assertLocation</td>\n <td>assertLocation</td>\n
<td tal:content="string:${here/portal_url/absolute_url_path}/foo_module/2/view"/>\n <td tal:content="string:${here/portal_url/getPortalObject/absolute_url_path}/foo_module/2/view"/>\n
<td></td>\n <td></td>\n
</tr>\n </tr>\n
<tr>\n <tr>\n
...@@ -101,7 +100,7 @@ have id "2". This is probably a bit too stupid. -->\n ...@@ -101,7 +100,7 @@ have id "2". This is probably a bit too stupid. -->\n
</tr>\n </tr>\n
<tr>\n <tr>\n
<td>assertLocation</td>\n <td>assertLocation</td>\n
<td tal:content="string:${here/portal_url/absolute_url_path}/foo_module/2/1/view"/>\n <td tal:content="string:${here/portal_url/getPortalObject/absolute_url_path}/foo_module/2/1/view"/>\n
<td></td>\n <td></td>\n
</tr>\n </tr>\n
<tr>\n <tr>\n
...@@ -129,7 +128,7 @@ have id "2". This is probably a bit too stupid. -->\n ...@@ -129,7 +128,7 @@ have id "2". This is probably a bit too stupid. -->\n
</tr>\n </tr>\n
<tr>\n <tr>\n
<td>assertLocation</td>\n <td>assertLocation</td>\n
<td tal:content="string:${here/portal_url/absolute_url_path}/foo_module/3/view"/>\n <td tal:content="string:${here/portal_url/getPortalObject/absolute_url_path}/foo_module/3/view"/>\n
<td></td>\n <td></td>\n
</tr>\n </tr>\n
<tr>\n <tr>\n
...@@ -151,7 +150,7 @@ another object of the same type. -->\n ...@@ -151,7 +150,7 @@ another object of the same type. -->\n
</tr>\n </tr>\n
<tr>\n <tr>\n
<td>assertLocation</td>\n <td>assertLocation</td>\n
<td tal:content="string:${here/portal_url/absolute_url_path}/foo_module/4/view"/>\n <td tal:content="string:${here/portal_url/getPortalObject/absolute_url_path}/foo_module/4/view"/>\n
<td></td>\n <td></td>\n
</tr>\n </tr>\n
<tr>\n <tr>\n
......
...@@ -90,7 +90,7 @@ shouldn\'t do anything. -->\n ...@@ -90,7 +90,7 @@ shouldn\'t do anything. -->\n
</tr>\n </tr>\n
<tr>\n <tr>\n
<td>assertLocation</td>\n <td>assertLocation</td>\n
<td tal:content="string: ${here/portal_url/absolute_url_path}/foo_module/1/view">/erp5/foo_module/1/view</td>\n <td tal:content="string: ${here/portal_url/getPortalObject/absolute_url_path}/foo_module/1/view">/erp5/foo_module/1/view</td>\n
<td/>\n <td/>\n
</tr>\n </tr>\n
<tr>\n <tr>\n
...@@ -101,6 +101,7 @@ shouldn\'t do anything. -->\n ...@@ -101,6 +101,7 @@ shouldn\'t do anything. -->\n
</tal:block>\n </tal:block>\n
</body>\n </body>\n
</html>\n </html>\n
\n
]]></string> </value> ]]></string> </value>
......
...@@ -131,7 +131,7 @@ button</td></tr>\n ...@@ -131,7 +131,7 @@ button</td></tr>\n
</tr>\n </tr>\n
<tr>\n <tr>\n
<td>assertLocation</td>\n <td>assertLocation</td>\n
<td tal:content="string: ${here/portal_url/absolute_url_path}/portal_categories/foo_category/a/a1/view"/>\n <td tal:content="string: ${here/portal_url/getPortalObject/absolute_url_path}/portal_categories/foo_category/a/a1/view"/>\n
<td/>\n <td/>\n
</tr>\n </tr>\n
</tbody></table>\n </tbody></table>\n
......
2007-09-04 Kazuhiko 2007-09-04 Kazuhiko
* use absolute_url_path instead of getPortalPath for better virtual host support. * use portal_url.getPortalObject().absolute_url_path() instead of portal_url.getPortalPath() for better virtual host support.
2007-02-13 yo 2007-02-13 yo
* Add datetime_field_zuite. * Add datetime_field_zuite.
......
201 202
\ No newline at end of file \ No newline at end of file
...@@ -83,7 +83,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n ...@@ -83,7 +83,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n
</tal:block>\n </tal:block>\n
<tal:block tal:define="form_action string:logged_in;\n <tal:block tal:define="form_action string:logged_in;\n
global form_id string:login_form;\n global form_id string:login_form;\n
js_list python: [\'%s/login_form.js\' % (here.portal_url.absolute_url_path(), )]">\n js_list python: [\'%s/login_form.js\' % (here.portal_url.getPortalObject().absolute_url_path(), )]">\n
<tal:block metal:use-macro="here/main_template/macros/master">\n <tal:block metal:use-macro="here/main_template/macros/master">\n
<tal:block metal:fill-slot="main">\n <tal:block metal:fill-slot="main">\n
<div class="content login">\n <div class="content login">\n
......
2007-09-04 Kazuhiko 2007-09-04 Kazuhiko
* use absolute_url_path instead of getPortalPath for better virtual host support. * use portal_url.getPortalObject().absolute_url_path() instead of portal_url.getPortalPath() for better virtual host support.
2007-08-29 Yusei 2007-08-29 Yusei
* Add module_view action in context box. * Add module_view action in context box.
......
432 433
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment