annotate rhodecode/templates/search/search.html @ 3208:1ac47c961f70 beta

Set current pages indication for search and journal
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 23 Jan 2013 22:03:39 +0100
parents b4f401524060
children 666fc6ac9ce5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
406
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 <%inherit file="/base/base.html"/>
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 <%def name="title()">
2493
a93db48c75f5 i18n friendly search page title
Takumi IINO <trot.thunder@gmail.com>
parents: 2389
diff changeset
4 %if c.cur_query:
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
5 %if c.repo_name:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
6 ${_('Search "%s" in repository: %s') % (c.cur_query, c.repo_name)}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
7 %else:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
8 ${_('Search "%s" in all repositories') % c.cur_query}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
9 %endif
2493
a93db48c75f5 i18n friendly search page title
Takumi IINO <trot.thunder@gmail.com>
parents: 2389
diff changeset
10 %else:
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
11 %if c.repo_name:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
12 ${_('Search in repository: %s') % c.repo_name}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
13 %else:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
14 ${_('Search in all repositories')}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
15 %endif
2493
a93db48c75f5 i18n friendly search page title
Takumi IINO <trot.thunder@gmail.com>
parents: 2389
diff changeset
16 %endif
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
17 - ${c.rhodecode_name}
406
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 </%def>
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
19 <%def name="breadcrumbs()">
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
20 ${c.rhodecode_name}
406
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
21 </%def>
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
22 <%def name="page_nav()">
3208
1ac47c961f70 Set current pages indication for search and journal
Marcin Kuzminski <marcin@python-works.com>
parents: 3197
diff changeset
23 ${self.menu('search')}
406
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
24 </%def>
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
25 <%def name="main()">
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
26
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
27 <div class="box">
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
28 <!-- box / title -->
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
29 <div class="title">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
30 <h5>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
31 %if c.repo_name:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
32 ${_('Search in repository: %s') % c.repo_name}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
33 %else:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
34 ${_('Search in all repositories')}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
35 %endif
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
36 </h5>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
37 </div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
38 <!-- end box / title -->
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
39 %if c.repo_name:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
40 ${h.form(h.url('search_repo',search_repo=c.repo_name),method='get')}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
41 %else:
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
42 ${h.form(h.url('search'),method='get')}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
43 %endif
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
44 <div class="form">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
45 <div class="fields">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
46 <div class="field field-first field-noborder">
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
47 <div class="label">
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
48 <label for="q">${_('Search term')}</label>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1242
diff changeset
49 </div>
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
50 <div class="input">${h.text('q',c.cur_query,class_="small")}
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
51 <div class="button highlight">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
52 <input type="submit" value="${_('Search')}" class="ui-button"/>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
53 </div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
54 </div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
55 <div style="font-weight: bold;clear:Both;margin-left:200px">${c.runtime}</div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
56 </div>
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
57
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
58 <div class="field">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
59 <div class="label">
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
60 <label for="type">${_('Search in')}</label>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
61 </div>
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
62 <div class="select">
1242
61918fc169df fixes #164
Marcin Kuzminski <marcin@python-works.com>
parents: 888
diff changeset
63 ${h.select('type',c.cur_type,[('content',_('File contents')),
2640
5f21a9dcb09d create an index for commit messages and the ability to search them and see results
Indra Talip <indra.talip@gmail.com>
parents: 2493
diff changeset
64 ('commit',_('Commit messages')),
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
65 ('path',_('File names')),
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
66 ##('repository',_('Repository names')),
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1242
diff changeset
67 ])}
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
68 </div>
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
69 </div>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1242
diff changeset
70
3197
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
71 </div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
72 </div>
b4f401524060 html: don't use tabs
Mads Kiilerich <madski@unity3d.com>
parents: 2640
diff changeset
73 ${h.end_form()}
2389
324b838250c9 UI fixes for searching
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
74 <div class="search">
2640
5f21a9dcb09d create an index for commit messages and the ability to search them and see results
Indra Talip <indra.talip@gmail.com>
parents: 2493
diff changeset
75 %if c.cur_type == 'content':
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
76 <%include file='search_content.html'/>
2640
5f21a9dcb09d create an index for commit messages and the ability to search them and see results
Indra Talip <indra.talip@gmail.com>
parents: 2493
diff changeset
77 %elif c.cur_type == 'path':
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
78 <%include file='search_path.html'/>
2640
5f21a9dcb09d create an index for commit messages and the ability to search them and see results
Indra Talip <indra.talip@gmail.com>
parents: 2493
diff changeset
79 %elif c.cur_type == 'commit':
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
80 <%include file='search_commit.html'/>
2640
5f21a9dcb09d create an index for commit messages and the ability to search them and see results
Indra Talip <indra.talip@gmail.com>
parents: 2493
diff changeset
81 %elif c.cur_type == 'repository':
556
65b2f150beb7 Added searching for file names within the repository in rhodecode
Marcin Kuzminski <marcin@python-works.com>
parents: 548
diff changeset
82 <%include file='search_repository.html'/>
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1242
diff changeset
83 %endif
2389
324b838250c9 UI fixes for searching
Marcin Kuzminski <marcin@python-works.com>
parents: 1888
diff changeset
84 </div>
406
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
85 </div>
b153a51b1d3b Implemented search using whoosh. Still as experimental option.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
86
1888
f91d3f9b7230 White-space cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 1242
diff changeset
87 </%def>