~ubuntu-branches/ubuntu/trusty/nginx/trusty-security

« back to all changes in this revision

Viewing changes to debian/modules/ngx-fancyindex/template.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2013-11-22 12:23:25 UTC
  • mfrom: (4.3.6 sid)
  • Revision ID: package-import@ubuntu.com-20131122122325-6i9ns8d0e4fceepd
Tags: 1.4.4-1ubuntu1
* Resynchronise with Debian (LP: #1253691).  Remaining changes:
  - debian/patches/ubuntu-branding.patch:
    + Add Ubuntu branding to server_tokens.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
"\n"
66
66
"<thead>"
67
67
"<tr>"
68
 
"<th>File Name</th>"
69
 
"<th>File Size</th>"
70
 
"<th>Date</th>"
 
68
"<th><a href=\"?C=N&O=A\">File Name</a>&nbsp;<a href=\"?C=N&O=D\">&nbsp;↓&nbsp;</a></th>"
 
69
"<th><a href=\"?C=S&O=A\">File Size</a>&nbsp;<a href=\"?C=S&O=D\">&nbsp;↓&nbsp;</a></th>"
 
70
"<th><a href=\"?C=M&O=A\">Date</a>&nbsp;<a href=\"?C=M&O=D\">&nbsp;↓&nbsp;</a></th>"
71
71
"</tr>"
72
72
"</thead>"
73
73
"\n"
74
74
"<tbody>"
 
75
;
 
76
static const u_char t_parentdir_entry[] = ""
75
77
"<tr class=\"o\">"
76
 
"<td><a href=\"../\">Parent directory/</a></td>"
 
78
"<td><a href=\"../?C=N&amp;O=A\">Parent directory/</a></td>"
77
79
"<td>-</td>"
78
80
"<td>-</td>"
79
81
"</tr>"
87
89
"</html>"
88
90
;
89
91
#define NFI_TEMPLATE_SIZE (0 \
 
92
        + nfi_sizeof_ssz(t01_head1) \
 
93
        + nfi_sizeof_ssz(t02_head2) \
 
94
        + nfi_sizeof_ssz(t03_head3) \
 
95
        + nfi_sizeof_ssz(t04_body1) \
90
96
        + nfi_sizeof_ssz(t05_body2) \
91
97
        + nfi_sizeof_ssz(t06_list1) \
 
98
        + nfi_sizeof_ssz(t_parentdir_entry) \
92
99
        + nfi_sizeof_ssz(t07_list2) \
93
100
        + nfi_sizeof_ssz(t08_foot1) \
94
 
        + nfi_sizeof_ssz(t01_head1) \
95
 
        + nfi_sizeof_ssz(t02_head2) \
96
 
        + nfi_sizeof_ssz(t03_head3) \
97
 
        + nfi_sizeof_ssz(t04_body1) \
98
101
        )