File: index.txt

package info (click to toggle)
sarg 2.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,456 kB
  • sloc: ansic: 17,692; sh: 4,581; xml: 371; javascript: 352; php: 205; makefile: 183; sed: 16; pascal: 2
file content (57 lines) | stat: -rw-r--r-- 1,411 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*!\file index.c
\brief Create the HTML index of the reports
*/




/*! \fn void make_index(void)
Create the main HTML index of the available reports.
*/





/*! \fn static void make_date_index(void)
Create an index with the reports sorted hierarchicaly by date. A first level lists
the year. The second level lists the months (possibly a range) and the third level
lists the days or day ranges.
*/





/*! \fn static void make_file_index(void)
Create an index with the reports sorted by directory name. There is only one level
which is the name of the directory containing the report.
*/





/*! \fn static void file_index_to_date_index(const char *entry)
Convert a report from the file tree into a report for a date tree.

This function is invoked for each directory entry when ::IndexTree request a date index.
The function has to opportunity to convert a previous entry created when ::IndexTree was
requesting a file index.

\param entry The directory name that may require to be converted.
*/





/*! \fn static void date_index_to_file_index(const char *entry)
Convert a report from the date tree into a report for a file tree.

This function is invoked for each directory entry when ::IndexTree request a file index.
The function has to opportunity to convert a previous entry created when ::IndexTree was
requesting a date index.

\param entry The directory name that may require to be converted.
*/