Commit graph

41135 commits

Author SHA1 Message Date
Gabor Kovesdan
e8e2dfdbab - Do not specify image file extensions in documents; the proper extension
is appended during rendering
- For the same reason, do not specify format either
- Add constraints to enforce this
2013-04-02 09:50:10 +00:00
Gabor Kovesdan
d5c6e245d4 - Remove some further unused leftovers
- Make sure printed docs generated with DSSSL always use .eps images
- And XSLT-based output always uses .png
- Fix image conversion
2013-04-01 08:16:09 +00:00
Gabor Kovesdan
68eb6e1a6c - Remove more leftovers
- Simplify image processing so that html always uses .png and printed
  formats always use .eps
2013-03-31 21:35:32 +00:00
Gabor Kovesdan
c8eadc3369 Always build pdf from ps and remove related nits. This is what was already
done with Handbook and building pdf directly does not seem to work
correctly anyway. This change will help simplifying the build process
and spare some image conversions.
2013-03-31 21:11:07 +00:00
Gabor Kovesdan
9334bf876f - Add titlepage customization so that chapter authors can be rendered as
they used to be
2013-03-23 21:21:23 +00:00
Gabor Kovesdan
b1f6349527 - MFH 2013-03-20 21:05:33 +00:00
Ryusuke SUZUKI
bb1f56ca99 - Merge the following from the English version:
r41232 -> r41269	head/ja_JP.eucJP/htdocs/where.xml
2013-03-20 13:10:11 +00:00
Rene Ladan
a52b6cb835 MFen r41232 -> r41269 2013-03-20 09:55:17 +00:00
Gavin Atkinson
1dc4ce8b42 Mention x86-64 and x64 as alternative platform names for amd64 on the
download links page.
2013-03-20 08:37:36 +00:00
Rene Ladan
21ce9b2ed7 MFen the Dutch Handbook:
- advanced-networking r40833 -> r41177
- audit r40792 -> r41181
- book.xml r40585 -> r40979
- dtrace r40686 -> r40876
- eresources r40690 -> r41167
- jails r40792 -> r40900
- multimedia r40792 -> r41064
- ppp-and-slip r40792 -> r41154
- printing r40759 -> r41064
- security r40792 -> r41064
- x11 r40566 -> r41025
2013-03-19 22:44:48 +00:00
Rene Ladan
2bceac7258 MFen the Dutch website:
- administration.xml r41094 -> r41185
- where.xml r40536 -> r41232
2013-03-19 21:44:09 +00:00
Brooks Davis
3f60075989 s/requires requires/requires/
Submitted by:	"N.J. Mann" <njm@njm.me.uk>
2013-03-19 20:16:35 +00:00
Ryusuke SUZUKI
c5c30b68a4 - Merge the following from the English version:
r39747 -> r41253	head/ja_JP.eucJP/htdocs/developers/cvs.xml
2013-03-19 14:35:20 +00:00
Craig Rodrigues
b020963ecc Take an initial pass at updating the content in this document
to more accurately reflect the current procedures of the FreeBSD
Release Engineering team.

Reviewed by: delphij nwhitehorn
2013-03-18 23:18:12 +00:00
Gabor Pali
f0a3748c4e - Add guidelines on proposing committers
Approved by:	core
2013-03-18 18:29:18 +00:00
Brooks Davis
8645a4ce74 Document __FreeBSD_version 901501-901504. 2013-03-18 16:30:15 +00:00
Ryusuke SUZUKI
9289eec229 - Merge the following from the English version:
r41074 -> r41257	head/ja_JP.eucJP/htdocs/security/security.xml
2013-03-18 13:23:52 +00:00
Xin LI
e18983a38f Reflect some recent changes to secteam:
- Bjoern have stepped down as deputy officer;
 - Colin is Officer Emeritus;
 - I am now deputy security officer;
 - Edward have joined secteam;
2013-03-18 08:04:03 +00:00
Craig Rodrigues
23035c3bc0 (1) Update the following aliases:
-> accounts@
    -> backups@
    -> cvsup-master@
    -> dnsadm@
    -> mirror-admin@
    -> perforce-admin@
    -> webmaster@

    to reflect the actual alias membership on hub.freebsd.org:/etc/aliases

(2)  re-builder@ is actually re-builder@

Reviewed by: eadler gjb
2013-03-18 06:45:45 +00:00
Craig Rodrigues
7c7534fd37 Add missing entry for Don Wilde <don@FreeBSD.org>
Reviewed by: eadler gjb
2013-03-18 06:40:59 +00:00
Xin LI
385343930f I've been added to security-officer@ alias on Feb 27. Reflect
the fact.
2013-03-18 01:16:09 +00:00
Marc Fonvieille
213d29a9bb Add date for the actual doc/ slush.
Approved by:	re (implicit)
2013-03-17 20:41:00 +00:00
Ryusuke SUZUKI
e0549b1eca - Merge the following from the English version:
r40760 -> r41251	head/ja_JP.eucJP/htdocs/about.xml
2013-03-17 13:00:19 +00:00
Gavin Atkinson
10084a2f25 Improve the wording for the introduction for features in 8.x, and add
reference to the jail improvements seen in 8.x
2013-03-17 11:35:04 +00:00
Gavin Atkinson
93cbf3b86f Fix up whitespace: translators should ignore. 2013-03-17 11:30:48 +00:00
Gavin Atkinson
2511e9111c Note that the export of the src and ports tree from SVN to CVS should be
viewed as legacy, and discourage people from relying on them.
2013-03-17 11:27:28 +00:00
Gavin Atkinson
aeff72ab2b Mention x86-64 and x64 as alternative names for amd64. 2013-03-17 11:00:42 +00:00
Eitan Adler
fbbf024e83 Some additional changes from jhb:
- It now initializes the buffer to a known-good state (length of 0) so that
  you can't do a buffer overrun by reading it without writing to it.
- It doesn't include the trailing null character in 'len' and always leaves
  room for it during writes by restricting writes to writing only 255 chars,
  but letting reads read 256 chars.  This means after init you can do a read
  of one byte to get an empty string, and if you write "foo" (3 bytes) you
  can read back "foo\0" (I think this is the original intent).  Letting
  'len' not hold the null simplifies a fair bit of logic in write.
- Use 'td' for thread pointers, not 'p' (which is from when this was a
  'struct proc *').
- Some style fixes.
- Don't ever set uio_offset directly, uiomove() already changes it, and in
  fact we should read it after the write to handle partial writes.

Submitted by:	jhb
Approved by:	bcr (mentor, implicit)
2013-03-17 02:06:36 +00:00
Ryusuke SUZUKI
3b00475796 - Merge the following from the English version:
r38956 -> r41246	head/ja_JP.eucJP/htdocs/platforms/amd64.xml
2013-03-16 22:58:14 +00:00
Glen Barber
2b8bab6094 8.4-BETA1 slipped by a few days. 2013-03-16 19:39:18 +00:00
Gavin Atkinson
82216b4f43 Whitespace only: translators may ignore. 2013-03-16 18:44:30 +00:00
Gavin Atkinson
f8666db52d On the amd64 platform page:
- Fix a dead link
 - Mention x86-64 and x64 as generic names for the platform
 - Switch to nicer <q> quotes
2013-03-16 16:33:48 +00:00
Gavin Atkinson
5fb289fed4 Mention "x64" as another name for amd64, as used by Windows. Use better
wording overall.

Suggested by:	jhb
2013-03-16 15:43:39 +00:00
Gavin Atkinson
5f39d8fae6 Use "writing" rather than "copying" for the process if using dd(1) to
write an image to a floppy disk or USB stick.  Copying tends towards
implying a file-level copy.
2013-03-16 14:02:01 +00:00
Ryusuke SUZUKI
a5a86fd2cf - Merge the following from the English version:
r40536 -> r41232	head/ja_JP.eucJP/htdocs/where.xml
	r41213 -> r41225	head/ja_JP.eucJP/share/xml/news.xml
2013-03-16 11:47:21 +00:00
Gavin Atkinson
8fd2ad8bd3 Oracle trademark attribution not needed since r40593. 2013-03-16 11:46:12 +00:00
Johann Kois
e65898f4f8 Fix an incorrect translation.
Noticed by:     Pascal Heckers (pascal@paskers.de)

Obtained from:  The FreeBSD German Documentation Project
2013-03-16 08:45:04 +00:00
Bryan Drewery
cd64c1e4eb Document USES=qmail
Approved by:	gjb (via IRC)
2013-03-16 01:26:00 +00:00
Diane Bruce
30fc0b2493 Remove very old obsolete references to a.out and PORTOBJFORMAT from 12.6
Approved by:		gjb
2013-03-16 01:12:09 +00:00
Baptiste Daroussin
2d35e838fb Add a warning about USES which should not be assigned after bsd.port.pre.mk
Approved by:	gjb
2013-03-16 01:02:36 +00:00
Gabor Pali
c3c5b45f46 - Adjust the fortune file policy to the removal of the fortunes-o file.
Approved by:	core (implicit)
2013-03-15 22:48:07 +00:00
Eitan Adler
9bb4a9b2fa remove mention of specific hardware from the FAQ. In this case the
general question is "where can I learn about support for broadcom chips"
which does not need to mentioned in the FAQ.

Perhaps a question about to learn about hardware support is useful.

Approved by:	bcr (mentor, implicit)
2013-03-15 18:45:22 +00:00
Eitan Adler
89e11da4e4 Say goodbye to the card from the mid-90s.
Noted by:	swills
Approved by:	bcr (mentor, implicit)
2013-03-15 18:26:40 +00:00
Eitan Adler
d4518795d8 Remove duplicate text from the introduction and move it into the
abstract.  Simplify some of the text from both sections.

Reviewed by:	doc
Approved by:	jkois (mentor)
2013-03-15 17:49:26 +00:00
Johann Kois
8628a2296c r40536 -> r41232 MFde: resync where.xml
Obtained from:  The FreeBSD German Documentation Project
2013-03-15 16:49:52 +00:00
Johann Kois
b70820530a FreeBSD 7.4 is EOL. Remove the download links. 2013-03-15 16:40:50 +00:00
Johann Kois
f56ced5ccb r39632 -> r41115 resync
Obtained from:  The FreeBSD German Documentation Project
2013-03-15 16:31:37 +00:00
Johann Kois
5444e8b4bf Fix a grammar error.
Obtained from:  The FreeBSD German Documentation Project
2013-03-15 16:13:04 +00:00
Johann Kois
c209c60935 r38826 -> r41116 Resync the German version
Obtained from:  The FreeBSD German Documentation Project
2013-03-15 16:12:08 +00:00
Johann Kois
12541e75b4 r39675 -> r40575 Resync the header files.
While here also update the footer on the German start page.

Obtained from:  The FreeBSD German Documentation Project
2013-03-15 15:53:32 +00:00