From Fedora Project Wiki
m (→SELinux User Guide: adding link to drafts) |
|||
Line 20: | Line 20: | ||
* [[Docs/Drafts/SELinux User Guide/SELinux Information Plan| Information Plan]] | * [[Docs/Drafts/SELinux User Guide/SELinux Information Plan| Information Plan]] | ||
* [[Docs/Drafts/SELinux User Guide/SELinux Content Specification| Content Specification]] | * [[Docs/Drafts/SELinux User Guide/SELinux Content Specification| Content Specification]] | ||
* [http://mdious.fedorapeople.org/drafts/html/| Drafts] | |||
== Red Hat® Enterprise Linux® security content == | == Red Hat® Enterprise Linux® security content == |
Revision as of 02:58, 12 October 2008
Murray McAllister
Contact Details
- IRC: mdious
- GPG key: 81B3FDEB
- Fedora Account: mdious
- Blog: <http://mdious.wordpress.com/>
Location: Australia/Queensland
SELinux User Guide
Red Hat® Enterprise Linux® security content
Todo list for moving content into Fedora
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