You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<tdclass="col-1">Al Statement:</td><tdclass="col-2">{{ b.find('algdata/algorithm_statement').text or '' }}</td>
14
-
<tdclass="col-3">Al Math:</td><tdclass="col-4">{{ b.find('algdata/algorithm_math').text or '' }}</td>
13
+
<tdclass="col-1 AI-Statement">Al Statement:</td><tdclass="col-2 AI-Statement-input">{{ b.find('algdata/algorithm_statement').text or '' }}</td>
14
+
<tdclass="col-3 AI-Math">Al Math:</td><tdclass="col-4 AI-Math-input">{{ b.find('algdata/algorithm_math').text or '' }}</td>
15
15
</tr>
16
16
<tr>
17
17
<tdcolspan="4">{%- if b.find('algdata/variables') %}
@@ -68,14 +68,14 @@
68
68
<tr>
69
69
<td>How to cite:</td><td>EnCAB alg. - {{ b.find('reference').text }}</td>
70
70
<td>Created by/on:</td><td>{% if b.find('algauthors/creation_author_group/author') %}<ahref="../bibliography/bibliography.html#{{(b.find('algauthors/creation_author_group/author/surname').text or '').strip('.,')|replace(' ','')}}{{(b.find('algauthors/creation_author_group/author/firstname').text or '').strip('.,')|replace(' ','')}}">{{(b.find('algauthors/creation_author_group/author/surname').text or '')}} {{(b.find('algauthors/creation_author_group/author/firstname').text or '')}}</a>{% endif %}
71
-
{%- if b.find('algauthors/creation_author_group/creation_date').text %}, {{ b.find('algauthors/creation_author_group/creation_date').text }}{% endif %}</td>
71
+
{%- if b.find('algauthors/creation_author_group/author/creation_date').text %}, {{ b.find('algauthors/creation_author_group/author/creation_date').text }}{% endif %}</td>
{%- for modification_author in b.find('algauthors/modification_author_group') %}
77
77
<ahref="../bibliography/bibliography.html#{{(modification_author.find('surname').text or '').strip('.,')|replace(' ','')}}{{(modification_author.find('firstname').text or '').strip('.,')|replace(' ','')}}">{{(modification_author.find('surname').text or '')}} {{(modification_author.find('firstname').text or '')}}</a>
78
-
{%- if modification_author.find('creation_date').text %}, {{ modification_author_group.find('creation_date').text }}{% endif %}
78
+
{%- if modification_author.find('modification_date').text %}, {{ modification_author.find('modification_date').text }}{% endif %}
79
79
{%- if not loop.last %}; {% endif %}{% endfor %}</td>
Created by/on field is missing the 'on' portion, which should be taken from <creation_date>. I assume same needs to be done for Modified by/on. Only the author's name would be linked, as you have it now.
6
3
7
-
source_geography seems to give an error in the log.txt for missing HTML file when it is there.
8
4
5
+
- check Aurence <op>
9
6
10
-
PRIORITY 2
11
-
----------
12
-
in the algorithm table, it would be good if the "Al Statement" and "Al Math:" as well as their inputs could be different in the style.css (so a total of 4 styles), so that they can individually be made bold or italics or slightly larger font so as to make them stand out.
13
7
14
8
The HTML files where the algorithms are placed should have links to anchors for the different categories; example, at the top of 'Algorithms by Material' instead of links to the individual algorithms (Abrans 1994_47_1 etc) there should be links to the materials, so 'earth', 'mudbrick', 'pise'', 'plaster' etc. The same for the algorithm_type.html and the algorithm_position_in_process.html. The algorithm_bibliography.html would instead be by author_year, so Abrams 1994.
15
9
@@ -20,7 +14,7 @@ write programming page
20
14
write Bernardo bio page
21
15
22
16
23
-
PRIORITY 3
24
17
----------
18
+
25
19
create a CSV data dump from all the input files used (also the ones with errors) with the XML tags as headers. Filename should be "EnCAB_input_xyz.csv" where xyz is the date (year month day format) and time. the seperator should be a tab character (the error trapping should give an error if there is a tab used in the input, and should replace that character with 5 spaces when sending to the CSV file)
0 commit comments