[062892]: / Allura / allura / templates / neighborhood_help.html  Maximize  Restore  History

Download this file

58 lines (51 with data), 3.0 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{#-
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-#}
{% extends g.theme.master %}
{% block title %}Neighborhood Help{% endblock %}
{% block header %}Neighborhood Help{% endblock %}
{% block content %}
<p>Welcome to your neighborhood! We strive to make many neighborhood features easy to understand on their own,
but there's always room for some additional explanation. Here's information on a few advanced features.</p>
<h2>The [[projects]] macro</h2>
<p>In any neighborhood tool (e.g. a wiki) you can use the <code>[[projects]]</code> macro
to list all the projects in your neighborhood.
</p>
<p>
Example: <code>[[projects columns=2 show_download_button=no limit=50]]</code>
</p>
<p>Display options:</p>
<ul>
<li><code>show_proj_icon</code> = yes/no. Default 'yes'</li>
<li><code>show_download_button</code> = yes/no. Default 'no'</li>
<li><code>show_awards_banner</code> = yes/no. Default 'yes'</li>
<li><code>sort</code> = last_updated/alpha/random/last_registered. Default 'last_updated'</li>
<li><code>show_total</code> = yes/no. Adds a sentence with a total count of how many projects are listed. Default 'no'</li>
<li><code>columns</code> = 1, 2, or 3. Default 1</li>
</ul>
<p>Filter options:</p>
<ul>
<li><code>limit</code> = any number; default 100</li>
<li><code>labels</code> = project label(s) to include. Separate multiple labels with "|" to match any label. Separate with "," to require matching all labels listed.</li>
<li><code>award</code> = short name of award</li>
<li><code>category</code> = category, for example <code>"Programming Language :: Scala"</code> (include the quotes)</li>
<li><code>private</code> = yes. Show only private projects. Projects are always filtered by permissions of the logged in user.</li>
</ul>
<h2>Project Template</h2>
<p>On the <a href="../overview">Neighborhood Overview</a> form, the "Project Template" textbox allows you to specify a standard set of tools and options
for all new projects, instead of choosing tools when creating the project. Please
contact Support for assistance setting up a project template.</p>
{% endblock %}