Indefero

Indefero Commit Details


Date:2008-08-02 14:58:00 (16 years 4 months ago)
Author:Loic d'Anterroches
Branch:dev, develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3, svn
Commit:a105f971c2d33246a5bf8a9b88da0c4793d89e5c
Parents: 4119a160aae40b2413518c8980c166cb34e9c946
Message:Added the FAQ view.

Changes:

File differences

src/IDF/Views.php
163163
164164
165165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
166180
'form' => $form),
$request);
}
/**
* FAQ.
*/
public function faq($request, $match)
{
$title = __('Here to Help You!');
return Pluf_Shortcuts_RenderToResponse('faq.html',
array(
'page_title' => $title,
),
$request);
}
}
src/IDF/templates/faq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{extends "base-simple.html"}
{block docclass}yui-t1{/block}
{block body}
<ul>
<li><a href="#q-keyboard">What are the keyboard shortcuts?</a></li>
</ul>
<h2 id="q-keyboard">What are the keyboard shortcuts?</h2>
<p>If you are in a project, you have the following shortcuts:</p>
<ul>
<li><kbd>Shift+a</kbd>: Create a new issue.</li>
<li><kbd>Shift+r</kbd>: List of recently submitted issues.</li>
<li><kbd>Shift+m</kbd>: The issues you submitted.</li>
<li><kbd>Shift+w</kbd>: The issues assigned to you.</li>
</ul>
{/block}
{block context}
<p>{trans 'Here we are, just to help you.'}</p>
{/block}

Archive Download the corresponding diff file

Page rendered in 0.07735s using 13 queries.