The reference you cite is definitely pre-standard: the classes it
documents aren't templates; they don't support locale (since they
pre-date locale by at least five years); there are classes which don't
exist in the standard (all those with _withassign) or are deprecated
([io]strstream); on the other hand, classes from the standard
(stringbuf, many of the manipulators) are missing.
Most of the overall philosophy is unchanged; in particular, the use of
the strategy pattern to decouple sinking and sourcing from formatting
and parsing, and to allow customization of sinking and sourcing. And I
don't know of any free documentation about the overall philosophy, or
how to actually use the streams (the Wikipedia page on iostream is a
disaster), so short of purchasing a good book, this may be the best
source you can find. Just be aware that most of what it describes has
changed significantly. Only the overall philosophy (use of streambuf,
manipulators to control format, etc.) remains. The lack of good, easily
available tutorial information is a serious lack, because in projects
where someone knows iostreams well, most streambuf and most
manipulators will be defined within the project, and not be standard
ones.
And for what it's worth: streambuf is definitely not defined in ios
which becomes two classes, ios_base and basic_ios<T> in the
standard), although some of the classes derived from ios may contain
an instance of a class derived from streambuf. (In modern
implementations, ifstream and ofstream typically contain a
filebuf, for example. I don't think that this was the case in the
traditional iostreams, however, and in this case, the only reason for
the containment is to avoid a dynamic allocation; all communication
between the two still takes place through the streambuf* in
basic_ios.)