typo in SQL
[Pman.MTrack] / domtemplates / dailychanges.html
1
2
3 <!--testing
4 template=false;new Pman.Request({
5     url: baseURL + '/Roo/Mtrack_repos?_dc=1354362578936&_daychanges=2012-11-29&id=84&_requestMeta=1',
6     method: 'GET',
7     success : function (res) {
8         template = new Roo.DomTemplate({
9             url : rootURL + '/Pman/MTrack/domtemplates/dailychanges.html',
10             compile : function() {
11                 Roo.DomTemplate.prototype.compile.call(this);
12                 Roo.log(res);
13                 this.overwrite(Roo.get(document.body),res.data[0])
14                  
15                 
16             }
17         })
18     }
19 });
20
21 -->
22
23
24 <h1>Changes for {repo.shortname}</h1>
25     
26     
27 <div class="mtrack-change-summary">
28     <div roo-for="commits">
29         <span class="mtrack-change-time">{committime}</span>
30         <span class="mtrack-change-by">{commitby}</span>
31         <span class="mtrack-change-files">
32              <span class="mtrack-change-file" roo-for="files_array">{name}</span>
33         </span> 
34         
35     </div>
36     
37     
38     
39     
40 </div>
41   <!--  <table>
42         <tr>
43             <td>File / Who Changed it</td>
44             <td roo-each="changers,person,one">{person}</td>
45         </tr>
46         <tr roo-each="summary,fname,peeps">
47             <td roo-if="repo.array_value(filelinks,fname)"><a href="#{repo.array_values(filelinks,name)}">{fname}</a></td>
48             <td flexy:if="!repo.array_value(filelinks,fname)">{fname}</td>
49         
50             <td roo-each="changers,person,one">{repo.array_value(summary,fname,person)}</td>
51         </tr>
52         
53     </table> 
54     -->
55     <div roo-for="files">
56         
57         <h2>{filename}</h2>
58         <pre>{lines}</pre>
59         
60     <!--
61     
62         <table class="code diff"> 
63             <tr flexy:foreach="lines,line"
64                     class="{line.cls}">
65                 
66                 <td flexy:if="line.meta" colspan="4" width="100%"><a name="{line.anchor}">{line.text}</a></td>
67                 
68                 <td flexy:if="line.added" class='lineno'></td>
69                 <td flexy:if="line.added" class='lineno'>{line.no[1]}</td>
70                 
71                 <td flexy:if="line.removed" class='lineno'>{line.no[0]}</td>
72                 <td  flexy:if="line.removed" class='lineno'></td>
73                 
74                 <td flexy:if="line.unmod" class='lineno'>{line.no[0]}</td>
75                 <td flexy:if="line.unmod" class='lineno'>{line.no[1]}</td>
76                 
77                 
78                 
79                 
80                 <td flexy:if="!line.meta" class='linelink'><a name='{line.anchor}'></a><a
81                     href='{line.anchor}' title='link to this line'>#</a></td>
82                 
83                 <td flexy:if="!line.meta" class="line" width="100%">{line.text}</td>
84             </tr>
85                     
86         </table>
87         -->
88     </div>
89