Hi;

I am using SO/Kid with TG 1.0.1 but have 1 page that is returning really 
slowly.  I know it is not my SQL layer that is slow, so I'm assuming 
that it is Kid.  Because of this, I'm trying to get the page to display 
using Genshi.  I've got it installed and working and have successfully 
quickstarted a new project.  Back under my old project I'm specifying my 
Genshi template and it seems to be working, but I'm getting the 
following in my output instead of the actual html.

<Element u'span' at 025109E0>
<Element u'span' at 0252E3F8>     
<Element u'form' at 025218C0>
<Element u'div' at 025109E0>

I'm assuming there is something obvious to the trained eye that I'm 
doing wrong.  I'm using the default master.html template and have the 
following template being called:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";
      xmlns:py="http://genshi.edgewall.org/";
      xmlns:xi="http://www.w3.org/2001/XInclude";>
<xi:include href="master.html" />

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" 
py:replace="''"/>
<title>${title}</title>
</head>
<body>

  <div id="mainContent">
      <div style="font-size: large;">${heading}&nbsp;<a py:if="addHref" 
style="font-size: 10px" href="${addHref}" name="anchorAdd">add</a></div>
    <table width="100%" cellpadding="0" cellspacing="0">
          <tr width="100%">
              <td width="15%" style="font-size: 
large;">${paginateWidget.display()}</td>
            <td width="85%" 
align="right">${searchWidget.display(value=searchValues, 
options=formParams['options'])}</td>
          </tr>
      </table>
      ${listWidget.display(value=values)}
  </div>
</body>
</html>

    -Jim

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/turbogears?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to