source: products/quintagroup.quills.extras/branches/wald/quintagroup/quills/extras/browser/weblogentry_view.pt @ 1423

Last change on this file since 1423 was 1225, checked in by mylan, 15 years ago

Merged revisions 2250-2256,2258 via svnmerge from
http://svn.quintagroup.com/products/quintagroup.quills.extras/branches/no_webresults

........

r2250 | mylan | 2009-08-05 17:50:46 +0300 (Wed, 05 Aug 2009) | 2 lines


moved webresults site cusomizations into elaw.quills.webresults package (#37)

........

r2251 | mylan | 2009-08-05 21:25:35 +0300 (Wed, 05 Aug 2009) | 1 line


Bind off from 4webresults theme skin: rebind resources to IQuillsExtrasLayer (browser layer), change QuillsLinks? portlet registration

........

r2252 | mylan | 2009-08-05 22:28:15 +0300 (Wed, 05 Aug 2009) | 1 line


Fix bug with quills_header_macros

........

r2253 | mylan | 2009-08-06 17:45:39 +0300 (Thu, 06 Aug 2009) | 1 line


Added tests for quills

........

r2254 | mylan | 2009-08-06 17:48:25 +0300 (Thu, 06 Aug 2009) | 1 line


Added support of both qPloneComments or quintagroup.plonecomments products

........

r2255 | mylan | 2009-08-06 19:26:31 +0300 (Thu, 06 Aug 2009) | 1 line


Move entry & weblog macroses from skins to /browser (acording to quills.app v.1.7.3)

........

r2256 | mylan | 2009-08-06 20:18:07 +0300 (Thu, 06 Aug 2009) | 1 line


Debug macroses refactoring, #37

........

r2258 | mylan | 2009-08-07 15:15:54 +0300 (Fri, 07 Aug 2009) | 1 line


Update tests because of integration quills with quintagroup.plonecomments (#37)

........

File size: 2.0 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"
4      lang="en-US"
5      metal:use-macro="context/main_template/macros/master"
6      i18n:domain="quills.app">
7
8  <body>
9    <metal:feed fill-slot="head_slot">
10      <metal:block metal:use-macro="context/quills_header_macros/feed-links"></metal:block>
11
12    </metal:feed>
13    <div metal:fill-slot="main"
14         tal:define="entry_content nocall:context;
15                     entry view/getWeblogEntry;
16                     weblog_content python:view.getWeblogContentObject();
17                     weblog python:view.getWeblog();
18                     wvconfig view/getConfig;">
19
20      <div tal:replace="structure provider:plone.abovecontenttitle" />
21      <h1 class="documentFirstHeading">
22        <metal:field use-macro="python:here.widget('title', mode='view')">
23          Title
24        </metal:field>
25      </h1>
26      <!-- Commented out for now, we don't want the global keywords, we
27           want our own system.
28           <div tal:replace="structure provider:plone.belowcontenttitle" />
29      -->
30      <metal:macro use-macro="context/quills_entry_macros/short-byline" />
31      <metal:macro use-macro="context/quills_entry_macros/filed-under" />
32      <metal:macro use-macro="context/quills_entry_macros/topic-images" />
33      <p class="documentDescription">
34        <metal:field use-macro="python:here.widget('description', mode='view')">
35          Description
36        </metal:field>
37      </p>
38      <div tal:replace="structure provider:plone.abovecontentbody" />
39      <div>
40        <metal:field use-macro="python:here.widget('text', mode='view')">
41          Main text
42        </metal:field>
43      </div>
44      <metal:sub>
45        <metal:macro use-macro="context/quills_entry_macros/relatedItems" />
46      </metal:sub>
47<!--       <div tal:replace="structure provider:quills.actionbox" /> -->
48      <div tal:replace="structure provider:plone.belowcontentbody" />
49
50    </div>
51  </body>
52</html>
Note: See TracBrowser for help on using the repository browser.