Differences From Artifact [fc6bf6803d]:
- File src/style.c — part of check-in [5fcf49f104] at 2018-07-25 11:25:46 on branch forum-v2 — Enhance the webpage_error() routine to show the complete calling environment to authorized users. Also, continuing work on forum. (user: drh size: 30401)
To Artifact [805418a2cf]:
- File src/style.c — part of check-in [c35fe945d2] at 2018-07-25 13:09:44 on branch forum-v2 — Initial implementation of the forum reply screen. (user: drh size: 30536)
| ︙ | ︙ | |||
1012 1013 1014 1015 1016 1017 1018 |
@ <hr />
@ <pre>
@ %h(blob_str(&g.httpHeader))
@ </pre>
}
style_footer();
}
| > > > > > > > | 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 |
@ <hr />
@ <pre>
@ %h(blob_str(&g.httpHeader))
@ </pre>
}
style_footer();
}
/*
** Generate a Not Yet Implemented error page.
*/
void webpage_not_yet_implemented(void){
webpage_error("Not yet implemented");
}
|