| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2000-10-08 | Append "/postgresql" to (certain) installation subdirectories when | Peter Eisentraut | |
| installing into a shared location. Also Makefile.global organizational cleanup. | |||
| 2000-10-08 | initlocation must set env before postmaster start. | Bruce Momjian | |
| 2000-10-08 | These aren't used anymore. | Peter Eisentraut | |
| 2000-10-08 | Split out Developer's from Programmer's guide. | Peter Eisentraut | |
| 2000-10-08 | markup repair | Peter Eisentraut | |
| 2000-10-08 | Add runtime configuration option "silent_mode". | Tatsuo Ishii | |
| This is equivalent to postmaster's -S option. | |||
| 2000-10-07 | Remove S-Tree_indexes.html.gz | Bruce Momjian | |
| 2000-10-07 | New beos files. FAQ cleanup. | Bruce Momjian | |
| 2000-10-05 | Final proofreader changes to docs. | Bruce Momjian | |
| 2000-10-05 | Add proofreader's changes to docs. | Bruce Momjian | |
| Fix misspelling of disbursion to dispersion. | |||
| 2000-10-05 | Allow overriding HSTYLE and PSTYLE from environment | Peter Eisentraut | |
| 2000-10-05 | Update FAQ. | Bruce Momjian | |
| 2000-10-05 | Update FAQ. | Bruce Momjian | |
| 2000-10-05 | Update FAQ. | Bruce Momjian | |
| 2000-10-05 | Update FAQ. | Bruce Momjian | |
| 2000-10-05 | Update FAQ. | Bruce Momjian | |
| 2000-10-04 | Convert macaddr documentation to DocBook, update outdated information. | Peter Eisentraut | |
| 2000-10-03 | Treat empty connection parameters as is, in particular to enable overriding | Peter Eisentraut | |
| environment variables with "nothing". Empty host parameter indicates Unix socket. | |||
| 2000-09-30 | Convert more charset/locale documentation to DocBook | Peter Eisentraut | |
| 2000-09-30 | Update FAQ. | Bruce Momjian | |
| 2000-09-29 | Add `id' attributes to all `chapter' and `sect1' tags, to generate useful | Peter Eisentraut | |
| names for the HTML files (e.g., not x4856.htm). | |||
| 2000-09-27 | Fixes for Cygwin, with help from Pete Forman <gsez020@kryten.bedford.waii.com>. | Peter Eisentraut | |
| Update the installation instructions (formerly misnamed "FAQ"), add configure checks for some headers rather than having users copy stubs manually (ugh!). Use Autoconf check for exe extension. This also avoids inheriting the value of $(X) from the environment. | |||
| 2000-09-27 | Change with delimiters to using delimiters in psql manual page. | Bruce Momjian | |
| 2000-09-25 | document configure --without-tk | Peter Eisentraut | |
| 2000-09-25 | the patch include: | Bruce Momjian | |
| - rename ichar() to chr() (discussed with Tom) - add docs for oracle compatible routines: btrim() ascii() chr() repeat() - fix bug with timezone in to_char() - all to_char() variants return NULL instead textin("") if it's needful. The contrib/odbc is without changes and contains same routines as main tree ... because I not sure how plans are Thomas with this :-) Karel --------------------------------------------------------------------------- This effectively one line patch should fix the fact that foreign key definitions in create table were erroring if a primary key was defined. I was using the columns list to get the columns of the table for comparison, but it got reused as a temporary list inside the primary key stuff. Stephan Szabo | |||
| 2000-09-23 | These are obsolete. | Peter Eisentraut | |
| 2000-09-19 | Implement differentiation between CURRENT_USER and SESSION_USER as per SQL. | Peter Eisentraut | |
| There is still no effective difference but it will kick in once setuid functions exist (not included here). Make old getpgusername() alias for current_user. | |||
| 2000-09-18 | Move contrib/odbc/odbc.sql together with odbc driver, remove old files; | Peter Eisentraut | |
| revise ODBC "installation instructions"; update some other outdated documentation; update contrib documentation | |||
| 2000-09-17 | Add a blurb about what tools are required to build. | Peter Eisentraut | |
| 2000-09-15 | Add ILIKE operators ~~*, !~~* to documentation. | Tom Lane | |
| 2000-09-12 | typo fix | Bruce Momjian | |
| 2000-09-12 | typo fix | Bruce Momjian | |
| 2000-09-12 | datatype -> data type. | Bruce Momjian | |
| 2000-09-12 | Update FAQ. | Bruce Momjian | |
| 2000-09-12 | Consolidate FAQ and README info on character sets into new chapter. | Thomas G. Lockhart | |
| 2000-09-12 | Update to refer to more recent stylesheets in my home directory. | Thomas G. Lockhart | |
| These stylesheets are pretty old, but the 15x series crashes FreeBSD jade. | |||
| 2000-09-12 | Clean up markup to be more correct. | Thomas G. Lockhart | |
| From "He Weiping (Laser Henry)" <laser@zhengmai.com.cn>. | |||
| 2000-09-12 | Fix inconsistancies in field names. From Tom Samplonius <tom@sdf.com>. | Thomas G. Lockhart | |
| 2000-09-12 | Define ZIP rather than GZIP. | Thomas G. Lockhart | |
| Define ZIPSUFFIX to allow substitution of something other than gzip. | |||
| 2000-09-08 | Update FAQ. | Bruce Momjian | |
| 2000-09-06 | A bit of cleanup after SSL patch. Add it to config file, improve | Peter Eisentraut | |
| documentation. | |||
| 2000-09-05 | GZIP vs ZIP variable naming messed up | Peter Eisentraut | |
| 2000-08-31 | Fix relative path references so that make knowns which dependencies refer | Peter Eisentraut | |
| to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables. | |||
| 2000-08-29 | Startup is actually start-up. | Bruce Momjian | |
| 2000-08-29 | * to_char: | Bruce Momjian | |
| - full support for IW (ISO week) and vice versa conversion for IW too (the to_char 'week' support is now complete and I hope correct). Thomas, I use for IW code from timestamp.c, for this I create separate function date2isoweek() from original 'case DTK_WEEK:' code in the timestamp_part(). I mean will better use one code for same feature in date_part() and in to_char(). The isoweek2date() is added to timestamp.c too. Right? IMHO in 7.1 will all to_char's features complete. It is cca 41 templates for date/time and cca 21 for numbers. * to_ascii: - gcc, is it correct now? :-) In the patch is documentation for to_char's IW and for to_ascii(). Karel | |||
| 2000-08-29 | Here is a patch against the same cvs tree as the SSL patch (Aug 20). | Bruce Momjian | |
| I hope I didn't mess the SGML up too bad, but somebody should definitly look that over. I tried to steal as much as I could from around :-) This patch updates: * Installation instructions (paragraph on how to compile with openssl) * Documentation of pg_hba.conf (added "hostssl" record docs) * Libpq documentation (added connection option, documentation of PQgetssl() function) * Add section on SSL to "Server Runtime Environment" If you beleive any particular area needs more attention, please let me know. //Magnus | |||
| 2000-08-28 | Maybe "shared_buffers" is a slightly better name than "shmem_buffers" for -B. | Peter Eisentraut | |
| 2000-08-27 | Update FAQ. | Bruce Momjian | |
| 2000-08-27 | Update FAQ. | Bruce Momjian | |
| 2000-08-26 | Update platform FAQs | Peter Eisentraut | |
