Subversion Repositories gelsvn

Rev

Rev 198 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
<html>
3
<head>
217 bj 4
  <title><%project_name%></title>
5
  <style type="text/css">
107 bj 6
    p {font: 9pt verdana, lucida; width:800px; color: slategray;}
7
    h1 {font: 36pt verdana, lucida; width: 800px; color: darkcyan;}
8
    h2 {font: 16pt "trebuchet ms", helvetica; color: white; padding: 3px; background-color: teal;}
9
    a {text-decoration: none; }
10
    td {font: 12pt verdana, lucida; color: white; padding: 3px; background-color: cadetblue;}
11
    td.sub {font: 12pt verdana, lucida; color: white; padding: 3px; background-color: darkcyan;}
12
    td.subsub {font: 12pt verdana, lucida; color: white; padding: 3px; padding-left: 12px; background-color: darkcyan;}
13
    thead tr td {font: 16pt "trebuchet ms", helvetica; color: white; padding: 3px; background-color: teal;}
14
    th {font: 14pt bold verdana, lucida; background-color: teal; color: white; padding: 3px;}
15
 
16
    div {
17
      font: bold 12pt verdana, lucida;
18
      color: white;
19
      text-overflow: ellipsis;
20
      overflow: hidden;
21
      border: 2px outset darkgray;
22
      margin: 3px;
23
      width: 3in;
24
      padding: 2px;
25
      padding-left: 6px;
26
    }
27
<%foreach(tree_styles)%>
28
    <%tree_style%>
29
<%endfor%>
30
  </style>
217 bj 31
  <script type="text/javascript">
107 bj 32
  <!--
33
  function popup(mylink, windowname) {
34
    if (!window.focus) {
35
      return true;
36
    }
37
    else {
38
      var href;
39
      if (typeof(mylink) == 'string') {
40
        href=mylink;
41
      }
42
      else {
43
        href=mylink.href;
44
      }
45
      window.open(href, windowname, 'width=535,height=465,scrollbars=yes,menubar=yes,resizable=yes');
46
      return false;
47
    }
48
  }
49
  //-->
50
  </script>
51
</head>
52
<body>
53
<h1><%project_name%></h1>
54
 
55
<%foreach(inheritance_nodes)%>
56
<%forfirst("<h2>MPC Inheritance Hierarchy</h2>")%>
57
<%inheritance_node%>
58
<%forlast("<br>")%>
59
<%endfor%>
60
 
217 bj 61
<table style="table-layout:fixed" width="800" summary="MPC Project Information">
107 bj 62
<col width="200">
63
<col width="600">
64
<thead>
65
<tr><td colspan="2">MPC Project Settings</td></tr>
66
<tr><th>Name</th><th>Value</th></tr>
67
</thead>
68
<tbody>
69
<tr><td>after</td><td><%after%></td></tr>
70
<tr><td>avoids</td><td><%avoids%></td></tr>
217 bj 71
<tr><td>custom_only</td><td><%custom_only%></td></tr>
107 bj 72
<tr><td>dllout</td><td><%dllout%></td></tr>
73
<tr><td>dynamicflags</td><td><%dynamicflags%></td></tr>
74
<tr><td>exename</td><td><%exename%></td></tr>
75
<tr><td>includes</td><td><%includes%></td></tr>
76
<tr><td>install</td><td><%install%></td></tr>
77
<tr><td>libout</td><td><%libout%></td></tr>
78
<tr><td>libpaths</td><td><%libpaths%></td></tr>
198 bj 79
<tr><td>libs</td><td><%foreach(libs)%><%libname_prefix%><%lib%><%fornotlast(" ")%><%endfor%></td></tr>
107 bj 80
<tr><td>lit_libs</td><td><%lit_libs%></td></tr>
81
<tr><td>macros</td><td><%macros%></td></tr>
82
<tr><td>pch_header</td><td><%pch_header%></td></tr>
83
<tr><td>pch_source</td><td><%pch_source%></td></tr>
217 bj 84
<tr><td>prebuild</td><td><%prebuild%></td></tr>
85
<tr><td>postbuild</td><td><%postbuild%></td></tr>
107 bj 86
<tr><td>pure_libs</td><td><%pure_libs%></td></tr>
217 bj 87
<tr><td>recurse</td><td><%recurse%></td></tr>
107 bj 88
<tr><td>requires</td><td><%requires%></td></tr>
198 bj 89
<tr><td>sharedname</td><td><%libname_prefix%><%sharedname%></td></tr>
107 bj 90
<tr><td>staticflags</td><td><%staticflags%></td></tr>
198 bj 91
<tr><td>staticname</td><td><%libname_prefix%><%staticname%></td></tr>
107 bj 92
<tr><td>tagname *</td><td><%tagname%></td></tr>
93
<tr><td>tagchecks *</td><td><%tagchecks%></td></tr>
94
<tr><td>version</td><td><%version%></td></tr>
217 bj 95
</tbody>
107 bj 96
<thead>
97
<tr><td colspan="2">MPC Project Files</td></tr>
98
<tr><th>Name</th><th>Value</th></tr>
99
</thead>
217 bj 100
<tbody>
107 bj 101
<tr><td>Source Files</td><td><%source_files%></td></tr>
102
<tr><td>Header Files</td><td><%header_files%></td></tr>
103
<tr><td>Inline Files</td><td><%inline_files%></td></tr>
104
<tr><td>Template Files</td><td><%template_files%></td></tr>
105
<tr><td>Resource Files</td><td><%resource_files%></td></tr>
106
<tr><td>Documentation Files</td><td><%documentation_files%></td></tr>
107
<%foreach(custom_types)%>
108
<tr><td><%ucw(custom_type)%></td><td><%custom_type->input_files%></td></tr>
109
<%endfor%>
217 bj 110
<%if(configurations || pch_defines)%>
111
</tbody>
107 bj 112
<thead>
113
<tr><td colspan="2">MPC Template Settings</td></tr>
114
<tr><th>Name</th><th>Value</th></tr>
115
</thead>
217 bj 116
<tbody>
107 bj 117
<%comment("common to all mpt files")%>
118
<%if(pch_defines)%>
119
<tr><td>pch_defines</td><td><%pch_defines%></td></tr>
120
<%endif%>
121
<%foreach(configurations)%>
122
<tr><td class="sub" colspan="2">Configuration: <%configuration%></td></tr>
123
<%comment("borland, nmake, va4, em3, vc6, vc7 and vc71 mpt files")%>
124
<%if(defines || common_defines)%>
125
<tr><td>defines</td><td><%defines%> <%common_defines%></td></tr>
126
<%endif%>
127
<%if(compile_flags)%>
128
<tr><td>compile_flags</td><td><%compile_flags%></td></tr>
129
<%endif%>
130
<%comment("make mpt files")%>
131
<%if(cxx)%>
132
<tr><td>cxx</td><td><%cxx%></td></tr>
133
<%endif%>
134
<%if(compilerflags)%>
135
<tr><td>compilerflags</td><td><%compilerflags%></td></tr>
136
<%endif%>
137
<%if(linkflags)%>
138
<tr><td>linkflags</td><td><%linkflags%></td></tr>
139
<%endif%>
140
<%foreach(platforms)%>
141
<tr><td class="subsub" colspan="2">Platform: <%platform%></td></tr>
142
<%if(shflags)%>
143
<tr><td>shflags</td><td><%shflags%></td></tr>
144
<%endif%>
145
<%if(ldlibs)%>
146
<tr><td>ldlibs</td><td><%ldlibs%></td></tr>
147
<%endif%>
148
<%if(extracppflags)%>
149
<tr><td>extracppflags</td><td><%extracppflags%></td></tr>
150
<%endif%>
151
<%if(dll_ext)%>
152
<tr><td>dll_ext</td><td><%dll_ext%></td></tr>
153
<%endif%>
154
<%comment("em3 mpt files")%>
155
<%if(cpu_id)%>
156
<tr><td>cpu_id</td><td><%cpu_id%></td></tr>
157
<%endif%>
158
<%if(platform_id)%>
159
<tr><td>platform_id</td><td><%platform_id%></td></tr>
160
<%endif%>
161
<%if(cpu_defines)%>
162
<tr><td>cpu_defines</td><td><%cpu_defines%></td></tr>
163
<%endif%>
164
<%endfor%>
165
<%endfor%>
166
<%endif%>
167
</tbody>
168
</table>
169
 
170
<p>
217 bj 171
*   This keyword is specific to the gnuace project type.
107 bj 172
</p>
173
 
174
</body>
175
</html>