On Fri, Sep 5, 2008 at 7:41 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I'm generating some pretty complex pages out of my database. > > I've gone ahead and added a suggestion box at the bottom of each > generated page. The box is a simple text field where the user can > type in a suggestion or problem they are having with the current page. > > If they fill the suggestion box out then the suggestion gets sent to > me and recorded in the database. > > I'd like to be able to see the exact page that they are seeing. > Because of the dynamic nature of the database/application---just > recording the url of the page won't be enough. > > Any suggestions as to how to do this? Can I somehow grab the > generated genshi code and save it to disk? (Purging the pages later > where no one used the suggestion box?) > > Or should I put the important part of the page in a div? And have > jquery grab the div and send it back to me? > I really don't know how complex just pages are but if you store the parameters genshi will behave exactly the same way. One way of solving this will be to store all parameters on the session, now keep in mind this is complex, specially if you are using some kind of update of the page after being render.
But keep in mind that if all variables are the same, genshi will output the same code, if that's not true it's a bug. So how many variables does your genshi templates have? Now if your talking about render issues (browser bugs, different engines,etc.) the only real way to fix this will be with screenshots. > Any suggestions welcome. > > Thanks. > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

