Bug 251418
Summary: | Add header and footer support to help.cgi | ||||||
---|---|---|---|---|---|---|---|
Product: | [Retired] 389 | Reporter: | Nathan Kinder <nkinder> | ||||
Component: | Admin | Assignee: | Nathan Kinder <nkinder> | ||||
Status: | CLOSED CURRENTRELEASE | QA Contact: | Viktor Ashirov <vashirov> | ||||
Severity: | low | Docs Contact: | |||||
Priority: | low | ||||||
Version: | 1.1.0 | ||||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2015-12-07 16:58:05 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Bug Depends On: | |||||||
Bug Blocks: | 240316, 427409 | ||||||
Attachments: |
|
Description
Nathan Kinder
2007-08-08 21:16:23 UTC
Created attachment 160940 [details]
CVS Diffs
I really love this new design to have one header and footer! If there's any difference, can we name them header.html and footer.html? ;) #define LIBRARY_FILE "library.html" [...] +#define HEADER_FILE "header.htm" +#define FOOTER_FILE "footer.htm" It's just an issue of preference... Checked into adminserver (HEAD). Thanks to Rich for the review! Checking in help.c; /cvs/dirsec/adminserver/admserv/cgi-src40/help.c,v <-- help.c new revision: 1.10; previous revision: 1.9 done Sorry Noriko, I didn't see your comment until after I commited my changes. I have no problem using the html extention instead (I prefer it as well). I've committed the following to adminserver (HEAD). Index: help.c =================================================================== RCS file: /cvs/dirsec/adminserver/admserv/cgi-src40/help.c,v retrieving revision 1.10 diff -u -2 -t -r1.10 help.c --- help.c 8 Aug 2007 22:23:18 -0000 1.10 +++ help.c 8 Aug 2007 23:34:13 -0000 @@ -75,6 +75,6 @@ #define HELPWIN_VAR "HelpWindow" #define TOKEN_FILE "index.map" -#define HEADER_FILE "header.htm" -#define FOOTER_FILE "footer.htm" +#define HEADER_FILE "header.html" +#define FOOTER_FILE "footer.html" #define HEAD_BLOCK "<head>" #define FRAME_BLOCK "<frame " Enter passphrase for key '/home/nkinder/.ssh/id_rsa': Checking in help.c; /cvs/dirsec/adminserver/admserv/cgi-src40/help.c,v <-- help.c new revision: 1.11; previous revision: 1.10 done |