⌈⌋ ⎇ branch:  freshcode


Artifact [8d04fb2d88]

Artifact 8d04fb2d889e8d4a94075994c1e8064935022731:

  • File template/projects_release_entry.php — part of check-in [74d0a47681] at 2014-07-11 01:27:31 on branch trunk — Split out some templates/ from projects/ description. (user: mario size: 676)

<?php
/**
 * api: include
 * type: template
 * title: Project version entry
 * description: Displays a release, with scope and changes
 *
 * Shows versioning history of projects/
 *   → Date and Version
 *   → Scope and Changes
 *
 * This template, obviously, gets iterated over to output all
 * release entries.
 *
 */


print <<<VERSION_ENTRY
       <div class=release-entry>
          <span class=version>$entry[version]</span><span class=published_date>{$_(strftime("%d %b %Y %H:%M", $entry["t_published"]))}</span>
          <span class=release-notes>
             <b>$entry[scope]:</b>
             $entry[changes]
          </span>
       </div>
VERSION_ENTRY;


?>