From Fedora Project Wiki
(→Murray McAllister: making a new page) |
(→Murray McAllister: removing old link) |
||
Line 16: | Line 16: | ||
* [[User:mdious/release-notes| Draft of Fedora Release Notes Process]] | * [[User:mdious/release-notes| Draft of Fedora Release Notes Process]] | ||
[https://fedoraproject.org/wiki/ChrisCurran Chris Curran] donated the following script, that generates xi include directives, which can be used in the [Book_Name] .xml file when building with [https://fedorahosted.org/publican publican] : | [https://fedoraproject.org/wiki/ChrisCurran Chris Curran] donated the following script, that generates xi include directives, which can be used in the [Book_Name] .xml file when building with [https://fedorahosted.org/publican publican] : |
Revision as of 21:54, 17 July 2008
Murray McAllister
Contact Details
- IRC: mdious
- GPG key: 81B3FDEB
- Fedora Account: mdious
Location: Australia/Queensland
Fedora Release Notes
Chris Curran donated the following script, that generates xi include directives, which can be used in the [Book_Name] .xml file when building with publican :
#!/bin/sh for i in $( ls ); do if [[ "$i" == *.xml ] ; then echo -en "\074xi\072include href=\042" echo -n $i echo -e "\042 xmlns\072xi\075\042http\072\057\057www\056w3\056org\00572001\057XInclude\042 \057\076" fi done