annotate rhodecode/templates/journal/journal.html @ 1770:184557472f5c beta

Implements #304 hashes in relevant places are displayed using monospaced font.
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 08 Dec 2011 04:32:42 +0200
parents 60a00fd76d58
children 9edd6ac132f0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
734
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 ## -*- coding: utf-8 -*-
995
d14723711d17 fixes for journal, added paging now it's possible to view whole journal
Marcin Kuzminski <marcin@python-works.com>
parents: 994
diff changeset
2 <%inherit file="/base/base.html"/>
734
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 <%def name="title()">
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4 ${_('Journal')} - ${c.rhodecode_name}
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5 </%def>
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
6 <%def name="breadcrumbs()">
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 ${c.rhodecode_name}
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8 </%def>
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9 <%def name="page_nav()">
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
10 ${self.menu('home')}
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
11 </%def>
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
12 <%def name="main()">
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
13
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14 <div class="box box-left">
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 <!-- box / title -->
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
16 <div class="title">
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
17 <h5>${_('Journal')}</h5>
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
18 <ul class="links">
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
19 <li>
1748
a3ee2611e6e8 implements #135 bookmark support for UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1746
diff changeset
20 <span><a id="refresh" href="${h.url('journal')}"><img class="icon" title="${_('Refresh')}" alt="${_('Refresh')}" src="${h.url('/images/icons/arrow_refresh.png')}"/>
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
21 </a></span>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
22 </li>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
23 </ul>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
24 </div>
995
d14723711d17 fixes for journal, added paging now it's possible to view whole journal
Marcin Kuzminski <marcin@python-works.com>
parents: 994
diff changeset
25 <div id="journal">${c.journal_data}</div>
734
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
26 </div>
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
27 <div class="box box-right">
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
28 <!-- box / title -->
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
29 <div class="title">
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
30 <h5>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
31 <input class="q_filter_box" id="q_filter" size="15" type="text" name="filter" value="${_('quick filter...')}"/>
1770
184557472f5c Implements #304
Marcin Kuzminski <marcin@python-works.com>
parents: 1756
diff changeset
32 <a id="show_my" class="link-white" href="#my">${_('My repos')}</a> / <a id="show_watched" class="link-white" href="#watched">${_('Watched')}</a>
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
33 </h5>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
34 %if h.HasPermissionAny('hg.admin','hg.create.repository')():
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
35 <ul class="links">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
36 <li>
1770
184557472f5c Implements #304
Marcin Kuzminski <marcin@python-works.com>
parents: 1756
diff changeset
37 <span>${h.link_to(_('ADD'),h.url('admin_settings_create_repository'))}</span>
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
38 </li>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
39 </ul>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
40 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
41 </div>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
42 <!-- end box / title -->
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
43 <div id="my" class="table">
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
44 %if c.user_repos:
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
45 <table>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
46 <thead>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
47 <tr>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
48 <th class="left">${_('Name')}</th>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
49 <th class="left">${_('revision')}</th>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
50 <th colspan="2" class="left">${_('action')}</th>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
51 </thead>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
52 <tbody>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
53 %for repo in c.user_repos:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
54 <tr>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
55 <td>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
56 %if repo['dbrepo']['repo_type'] =='hg':
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
57 <img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
58 %elif repo['dbrepo']['repo_type'] =='git':
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
59 <img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url('/images/icons/giticon.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
60 %else:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
61
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
62 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
63 %if repo['dbrepo']['private']:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
64 <img class="icon" alt="${_('private')}" src="${h.url('/images/icons/lock.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
65 %else:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
66 <img class="icon" alt="${_('public')}" src="${h.url('/images/icons/lock_open.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
67 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
68
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
69 ${h.link_to(repo['name'], h.url('summary_home',repo_name=repo['name']),class_="repo_name")}
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
70 %if repo['dbrepo_fork']:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
71 <a href="${h.url('summary_home',repo_name=repo['dbrepo_fork']['repo_name'])}">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
72 <img class="icon" alt="${_('public')}"
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
73 title="${_('Fork of')} ${repo['dbrepo_fork']['repo_name']}"
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
74 src="${h.url('/images/icons/arrow_divide.png')}"/></a>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
75 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
76 </td>
1770
184557472f5c Implements #304
Marcin Kuzminski <marcin@python-works.com>
parents: 1756
diff changeset
77 <td><div class="tooltip" title="${repo['last_change']}"><pre>${("r%s:%s") % (repo['rev'],h.short_id(repo['tip']))}</pre></div></td>
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
78 <td><a href="${h.url('repo_settings_home',repo_name=repo['name'])}" title="${_('edit')}"><img class="icon" alt="${_('private')}" src="${h.url('/images/icons/application_form_edit.png')}"/></a></td>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
79 <td>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
80 ${h.form(url('repo_settings_delete', repo_name=repo['name']),method='delete')}
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
81 ${h.submit('remove_%s' % repo['name'],'',class_="delete_icon action_button",onclick="return confirm('Confirm to delete this repository');")}
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
82 ${h.end_form()}
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
83 </td>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
84 </tr>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
85 %endfor
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
86 </tbody>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
87 </table>
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
88 %else:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
89 <div style="padding:5px 0px 10px 0px;">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
90 ${_('No repositories yet')}
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
91 %if h.HasPermissionAny('hg.admin','hg.create.repository')():
1756
Marcin Kuzminski <marcin@python-works.com>
parents: 1748
diff changeset
92 ${h.link_to(_('create one now'),h.url('admin_settings_create_repository'),class_="ui-btn")}
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
93 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
94 </div>
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
95 %endif
734
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
96 </div>
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
97
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
98 <div id="watched" class="table" style="display:none">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
99 %if c.following:
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
100 <table>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
101 <thead>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
102 <tr>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
103 <th class="left">${_('Name')}</th>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
104 </thead>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
105 <tbody>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
106 %for entry in c.following:
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
107 <tr>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
108 <td>
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
109 %if entry.follows_user_id:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
110 <img title="${_('following user')}" alt="${_('user')}" src="${h.url('/images/icons/user.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
111 ${entry.follows_user.full_contact}
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
112 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
113
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
114 %if entry.follows_repo_id:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
115 <div style="float:right;padding-right:5px">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
116 <span id="follow_toggle_${entry.follows_repository.repo_id}" class="following" title="${_('Stop following this repository')}"
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
117 onclick="javascript:toggleFollowingRepo(this,${entry.follows_repository.repo_id},'${str(h.get_token())}')">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
118 </span>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
119 </div>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
120
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
121 %if entry.follows_repository.repo_type == 'hg':
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
122 <img class="icon" title="${_('Mercurial repository')}" alt="${_('Mercurial repository')}" src="${h.url('/images/icons/hgicon.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
123 %elif entry.follows_repository.repo_type == 'git':
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
124 <img class="icon" title="${_('Git repository')}" alt="${_('Git repository')}" src="${h.url('/images/icons/giticon.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
125 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
126
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
127 %if entry.follows_repository.private:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
128 <img class="icon" title="${_('private repository')}" alt="${_('private repository')}" src="${h.url('/images/icons/lock.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
129 %else:
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
130 <img class="icon" title="${_('public repository')}" alt="${_('public repository')}" src="${h.url('/images/icons/lock_open.png')}"/>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
131 %endif
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
132 <span class="watched_repo">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
133 ${h.link_to(entry.follows_repository.repo_name,h.url('summary_home',repo_name=entry.follows_repository.repo_name))}
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
134 </span>
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
135 %endif
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
136 </td>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
137 </tr>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
138 %endfor
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
139 </tbody>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
140 </table>
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
141 %else:
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
142 <div style="padding:5px 0px 10px 0px;">
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
143 ${_('You are not following any users or repositories')}
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
144 </div>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
145 %endif
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
146 </div>
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
147 </div>
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
148
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
149 <script type="text/javascript">
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
150 YUE.on('show_my','click',function(e){
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
151 YUD.setStyle('watched','display','none');
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
152 YUD.setStyle('my','display','');
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
153 var nodes = YUQ('#my tr td a.repo_name');
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
154 var target = 'q_filter';
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
155 var func = function(node){
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
156 return node.parentNode.parentNode;
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
157 }
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
158 q_filter(target,nodes,func);
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
159 YUE.preventDefault(e);
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
160 })
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
161 YUE.on('show_watched','click',function(e){
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
162 YUD.setStyle('my','display','none');
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
163 YUD.setStyle('watched','display','');
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
164 var nodes = YUQ('#watched .watched_repo a');
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
165 var target = 'q_filter';
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
166 var func = function(node){
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
167 return node.parentNode.parentNode;
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
168 }
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
169 q_filter(target,nodes,func);
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
170 YUE.preventDefault(e);
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
171 })
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
172 YUE.on('refresh','click',function(e){
1748
a3ee2611e6e8 implements #135 bookmark support for UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1746
diff changeset
173 ypjax(e.currentTarget.href,"journal",function(){show_more_event();tooltip_activate();});
1746
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
174 YUE.preventDefault(e);
753aeb4a5c58 Journal refresh button
Marcin Kuzminski <marcin@python-works.com>
parents: 1741
diff changeset
175 })
1741
fcbc35ecb024 personal Journal UI
Marcin Kuzminski <marcin@python-works.com>
parents: 1701
diff changeset
176 </script>
734
49eb69d78988 implemented user dashboards, and following system.
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
177 </%def>