commit | author | age
|
f13c4c
|
1 |
/*
|
JM |
2 |
* Copyright 2011 gitblit.com.
|
|
3 |
*
|
|
4 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5 |
* you may not use this file except in compliance with the License.
|
|
6 |
* You may obtain a copy of the License at
|
|
7 |
*
|
|
8 |
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9 |
*
|
|
10 |
* Unless required by applicable law or agreed to in writing, software
|
|
11 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13 |
* See the License for the specific language governing permissions and
|
|
14 |
* limitations under the License.
|
|
15 |
*/
|
5fe7df
|
16 |
package com.gitblit.wicket.pages;
|
JM |
17 |
|
|
18 |
import org.apache.wicket.PageParameters;
|
|
19 |
|
698678
|
20 |
import com.gitblit.wicket.panels.TagsPanel;
|
5fe7df
|
21 |
|
JM |
22 |
public class TagsPage extends RepositoryPage {
|
|
23 |
|
|
24 |
public TagsPage(PageParameters params) {
|
cebf45
|
25 |
super(params);
|
155bf7
|
26 |
|
698678
|
27 |
add(new TagsPanel("tagsPanel", repositoryName, getRepository(), -1));
|
155bf7
|
28 |
|
5fe7df
|
29 |
}
|
155bf7
|
30 |
|
cebf45
|
31 |
@Override
|
JM |
32 |
protected String getPageName() {
|
1e47ab
|
33 |
return getString("gb.tags");
|
cebf45
|
34 |
}
|
5fe7df
|
35 |
}
|