X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/30d855885418ebe3e7bf76fd800909cdf7bb178a..b43dc0cc5003562a37b52e744fd3d3e3b12b3c06:/templates/macros.tmpl diff --git a/templates/macros.tmpl b/templates/macros.tmpl index 432cbe3..b471599 100644 --- a/templates/macros.tmpl +++ b/templates/macros.tmpl @@ -1,5 +1,3 @@ -@discard{ - This file is part of DisOrder. Copyright (C) 2008 Richard Kettlewell @@ -18,19 +16,80 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +------------------------------------------------------------------------ +Standard macros + + +This file is read before any other template. Its output is discarded +but side effects (definitions of macros) are retained. To override it, +create /etc/disorder/macros.tmpl that includes this file by absolute path +and then redefines macros as desired. +------------------------------------------------------------------------ + + @# Standard width and height of an image @define {width} {} {16} @define {height} {} {16} -@# Expand to @yes for the Manage page and @no for the playing page -@define {ifmanage} {yes no} - {@if {@eq {@arg{action}}{manage}} - {@yes} - {@no}} +@# Standard text +@# @name is the name of this page, for the element +@define {stdhead} {name} + {@quiethead +<link rel=stylesheet + type="text/css" + href="@label{url.static}/disorder.css"> +<title>@label{@name.title}} + +@# Non-displaying text +@define {quiethead} {} + {} + +@# Standard menu +@# @current is the name of the current page, e.g. choosealpha, login +@define {stdmenu} {current} + { +
+} + +@# Menu entry +@# Used by @stdmenu +@# @current is the name of the current page (not necessarily the action that +@# got there!) +@# @name is the name of the menu item +@# @available is true if the menu item is available, else false +@# +@define {menuitem} {current name available} + {@if{@available} + { } + { + @label{menu.@name}}} + -@# Expand to &back=manage or to nothing -@define {back} {} - {@ifmanage{&back=manage}{}} +@# Standard footer text +@define {credits} {} + {

+ DisOrder + version @version + © 2003-2008 Richard Kettlewell et al +

} @# Expand to the time that @id will be played @# @what is the section @@ -111,4 +170,3 @@ USA width=@width height=@height title="@label{playing.@q{@dir}verbose}" alt="@label{playing.@dir}">}} -}@#