Edgewall Software

Changes between Version 87 and Version 88 of GenshiTutorial


Ignore:
Timestamp:
Sep 6, 2007, 11:26:25 PM (17 years ago)
Author:
cmlenz
Comment:

Add voting suggestion

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v87 v88  
    167167    <title>Geddit</title>
    168168  </head>
    169   <body>
     169  <body class="index">
    170170    <div id="header">
    171171      <h1>Geddit</h1>
     
    314314    <title>Geddit: News</title>
    315315  </head>
    316   <body>
     316  <body class="index">
    317317    <div id="header">
    318318      <h1>News</h1>
     
    382382    <title>Geddit: Submit new link</title>
    383383  </head>
    384   <body>
     384  <body class="submit">
    385385    <div id="header">
    386386      <h1>Submit new link</h1>
     
    486486    <title>Geddit: Submit new link</title>
    487487  </head>
    488   <body>
     488  <body class="submit">
    489489    <div id="header">
    490490      <h1>Submit new link</h1>
     
    765765    <title>News</title>
    766766  </head>
    767   <body>
     767  <body class="index">
    768768    <h1>News</h1>
    769769
     
    792792    <title>Submit new link</title>
    793793  </head>
    794   <body>
     794  <body class="submit">
    795795    <h1>Submit new link</h1>
    796796
     
    856856    <title>News</title>
    857857  </head>
    858   <body>
     858  <body class="index">
    859859    <h1>News</h1>
    860860
     
    905905    <title>${link.title}</title>
    906906  </head>
    907   <body>
     907  <body class="info">
    908908    <h1>${link.title}</h1>
    909909    <a href="${link.url}">${link.url}</a><br />
     
    964964    <title>Comment on “${link.title}”</title>
    965965  </head>
    966   <body>
     966  <body class="comment">
    967967    <h1>Comment on “${link.title}”</h1>
    968968    <p py:if="comment">
     
    11601160    <title>Comment on “${link.title}”</title>
    11611161  </head>
    1162   <body>
     1162  <body class="comment">
    11631163    <h1>Comment on “${link.title}”</h1>
    11641164    <p py:if="comment">
     
    14771477
    14781478 * [wiki:GenshiTutorial/Authentication Add authentication], preferably based on [http://openid.net/ OpenID] ([http://openidenabled.com/python-openid/ Python libraries for OpenID] are available.)
    1479  * [wiki:GenshiTutorial/CommentThreading Add comment threading], so that people can reply to comments, and comments and replies are displayed in a hierarchical manner.
    14801479 * [wiki:GenshiTutorial/Internationalization Internationalize the application], using Genshi's builtin [wiki:Documentation/i18n.html I18n support] and [http://babel.edgewall.org/ Babel].
    14811480 * [wiki:GenshiTutorial/CsrfProtection Add protection against cross-site request forgery (CSRF) attacks], using the [wiki:Documentation/filters.html#transformer Transformer] filter to inject form tokens in HTML forms.
     1481 * [wiki:GenshiTutorial/Voting Add voting on links]. See the [http://developer.yahoo.com/ypatterns/pattern.php?pattern=votetopromote Vote to Promote] pattern in Yahoo's “Design Pattern Library” for some inspiration.
     1482 * [wiki:GenshiTutorial/CommentThreading Add comment threading], so that people can reply to comments, and comments and replies are displayed in a hierarchical manner.
    14821483 * [wiki:GenshiTutorial/AtomPublishing Add support for the Atom Publishing Protocol]. See http://bitworking.org/projects/atom/
    14831484 * (your idea here)