Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
css/web-nav-css.c@103:91194cc19bbb, 2019-04-27 (annotated)
- Committer:
- andrewboyson
- Date:
- Sat Apr 27 09:25:28 2019 +0000
- Revision:
- 103:91194cc19bbb
- Child:
- 109:3e82f62c7e1f
Renamed everything from Http to Web
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 103:91194cc19bbb | 1 | #include "http.h" |
andrewboyson | 103:91194cc19bbb | 2 | #include "web-base.h" |
andrewboyson | 103:91194cc19bbb | 3 | |
andrewboyson | 103:91194cc19bbb | 4 | static const char* cssNav = |
andrewboyson | 103:91194cc19bbb | 5 | #include "web-nav-css.inc" |
andrewboyson | 103:91194cc19bbb | 6 | ; |
andrewboyson | 103:91194cc19bbb | 7 | const char* WebNavCssDate = __DATE__; |
andrewboyson | 103:91194cc19bbb | 8 | const char* WebNavCssTime = __TIME__; |
andrewboyson | 103:91194cc19bbb | 9 | |
andrewboyson | 103:91194cc19bbb | 10 | void WebNavCss() |
andrewboyson | 103:91194cc19bbb | 11 | { |
andrewboyson | 103:91194cc19bbb | 12 | HttpOk("text/css; charset=UTF-8", "max-age=3600", WebNavCssDate, WebNavCssTime); |
andrewboyson | 103:91194cc19bbb | 13 | HttpAddText(cssNav); |
andrewboyson | 103:91194cc19bbb | 14 | } |