Skip to content

Commit 546cf97

Browse files
committed
Use the icons derived from the official IETF logotype instead of the datatracker-specific icons, at least until discussed further.
- Legacy-Id: 1957
1 parent ed5eb10 commit 546cf97

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

ietf/templates/idrfc/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
IETF.user_groups = { {% for group in user.groups.all %}"{{group}}":true{% if not forloop.last %}, {%endif%}{%endfor%} };
4949
</script>
5050
{% ifnotequal server_mode "production" %}
51-
<link rel="icon" href="/images/ietfdt-icon-red.ico" />
51+
<link rel="icon" href="/images/ietf-dev-icon.bmp" />
5252
{% else %}
53-
<link rel="icon" href="/images/ietfdt-icon.ico" />
53+
<link rel="icon" href="/images/ietf-icon-blue.bmp" />
5454
{% endifnotequal %}
5555
</head>
5656
<body class="yui-skin-sam" {% block bodyAttrs %}{%endblock%}>

test/sql_sanitize.sql

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,4 @@ UPDATE wg_password SET password = 'deleted';
77
UPDATE web_user_info SET password = 'deleted';
88
UPDATE idst_users SET password = 'deleted';
99
UPDATE idst_users SET random_str = 'deleted';
10-
UPDATE iesg_login SET password = 'deleted';
11-
12-
1310

test/update-db

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ done
2929
[ "$DBDUMP" ] || DBDUMP=/www/tools.ietf.org/events/raw/sqldump/sqldump.raw
3030
[ "$DBFIX" ] || DBFIX=$build/test/sql_fixup.sql
3131
[ "$DBSANE" ] || DBSANE=$build/test/sql_sanitize.sql
32-
[ "$DBTIME" ] || DBTIME=$state/update-db.time
32+
[ "$DBTEST" ] || DBTEST=$build/test/sql_setup.sql
33+
[ "$DBTIME" ] || DBTIME=$state/update-db.dump
34+
[ "$DBSTART" ] || DBTIME=$state/update-db.start
3335
[ "$DBDONE" ] || DBDONE=$state/update-db.done
3436
[ "$DBLOCK" ] || DBLOCK=$lock
3537

@@ -49,16 +51,18 @@ while true; do
4951

5052
echo "$$" > $PIDFILE
5153
chmod a+rw $PIDFILE
52-
54+
touch -r $DBDUMP $DBTIME
55+
touch $DBSTART
5356
echo "Updating local database from $DBDUMP ..."
5457
python ietf/manage.py dbshell < $DBDUMP
5558
echo "Updating local database from $DBFIX ..."
5659
python ietf/manage.py dbshell < $DBFIX
5760
echo "Updating local database from $DBSANE ..."
5861
python ietf/manage.py dbshell < $DBSANE
62+
echo "Updating local database from $DBTEST ..."
63+
python ietf/manage.py dbshell < $DBTEST
5964
echo "Running Django syncdb ..."
6065
python ietf/manage.py syncdb
61-
touch -r $DBDUMP $DBTIME
6266
touch $DBDONE
6367
echo "Done."
6468
#echo "Done." 1>&2

0 commit comments

Comments
 (0)