Mercurial > crates > nonstick
comparison src/lib.rs @ 191:e915c54097d6
Clean up docs and link versions to the right place.
author | Paul Fisher <paul@pfish.zone> |
---|---|
date | Sat, 02 Aug 2025 19:01:21 -0400 |
parents | 995aca290452 |
children | 4c39eaa4a5ae |
comparison
equal
deleted
inserted
replaced
190:995aca290452 | 191:e915c54097d6 |
---|---|
184 //! While some of it is specific to Linux-PAM, much of it applies to other | 184 //! While some of it is specific to Linux-PAM, much of it applies to other |
185 //! PAM implementations: | 185 //! PAM implementations: |
186 //! - [Application Developers' Guide][adg] | 186 //! - [Application Developers' Guide][adg] |
187 //! - [Module Writers' Guide][mwg] | 187 //! - [Module Writers' Guide][mwg] |
188 //! - [System Administrators' Guide][sag] | 188 //! - [System Administrators' Guide][sag] |
189 //! - PAM framework man page for developers: | 189 //! - PAM framework man pages for developers: |
190 //! - [Linux-PAM developer man page][man7] | 190 //! - [Linux-PAM developer man page][man7] |
191 //! - [OpenPAM developer man page][manbsd] | 191 //! - [OpenPAM developer man page][manbsd] |
192 //! - [Illumos PAM developer man page][mansun] | 192 //! - [Illumos PAM developer man page][mansun] |
193 //! - PAM framework man page for system administrators: | 193 //! - PAM framework man pages for system administrators: |
194 //! - [Linux-PAM admin documentation][man7pam8] | 194 //! - [Linux-PAM admin documentation][man7pam8] |
195 //! - [OpenPAM admin documentation][bsdpam8] | 195 //! - [OpenPAM admin documentation][bsdpam8] |
196 //! - [Illumos pam.conf documentation][sunpam5] | 196 //! - [Illumos pam.conf documentation][sunpam5] |
197 //! - [The original PAM specification][spec] (mostly of historical interest) | 197 //! - [The original PAM specification][spec] (mostly of historical interest) |
198 //! - [Cooking spray](https://en.wikipedia.org/wiki/Cooking_spray) | 198 //! - [Wikipedia: Cooking spray][spray] |
199 #![doc = ""] | 199 //! |
200 //! [spray]: https://en.wikipedia.org/wiki/Cooking_spray | |
200 #![doc = _doc::man7!(man7pam8: 8 pam)] | 201 #![doc = _doc::man7!(man7pam8: 8 pam)] |
201 #![doc = _doc::manbsd!(bsdpam8: 8 pam)] | 202 #![doc = _doc::manbsd!(bsdpam8: 8 pam)] |
202 #![doc = _doc::mansun!(sunpam5: 5 "pam.conf")] | 203 #![doc = _doc::mansun!(sunpam5: 5 "pam.conf")] |
203 #![doc = _doc::stdlinks!(3 pam)] | 204 #![doc = _doc::stdlinks!(3 pam)] |
204 #![doc = _doc::guide!(adg: "Linux-PAM_ADG.html")] | 205 #![doc = _doc::guide!(adg: "Linux-PAM_ADG.html")] |