summaryrefslogtreecommitdiff
path: root/main/php_virtual_cwd.c
Commit message (Collapse)AuthorAgeFilesLines
...
* - More fixesAndi Gutmans2000-04-051-4/+12
|
* - FixAndi Gutmans2000-04-051-4/+1
|
* Fix a problem with the virtual directory mechanism (corruption of the ↵Zeev Suraski2000-04-051-10/+16
| | | | filenames to open)
* - Create dtor functionAndi Gutmans2000-04-021-2/+15
|
* - This version of chdir_file should be compatible with the Apache one.Andi Gutmans2000-04-021-0/+18
|
* - A bit more cleanups.Andi Gutmans2000-04-021-16/+20
| | | | | | - Need to implement virtual_chdir_file() to replace chdir_file() in sapi/apache so that we can start testing apache and debug it.
* - Virtual cwd compiles now (need to uncomment #define in php.h for it toAndi Gutmans2000-04-021-1/+1
| | | | | | be enbaled right now). It seems to work very basic stuff
* - Move to new Zend macrosAndi Gutmans2000-04-011-9/+5
|
* - PHP_WIN32 is not defined here use ZEND_WIN32Andi Gutmans2000-04-011-5/+5
|
* - More virtual_cwd workAndi Gutmans2000-04-011-2/+24
|
* - Make php_virtual_cwd compileAndi Gutmans2000-04-011-0/+7
|
* -Andi Gutmans2000-04-011-1/+0
|
* - Intermediate commitAndi Gutmans2000-04-011-26/+42
|
* - Support getcwd() semantics.Andi Gutmans2000-03-251-3/+27
| | | | | - We need to change this whole business to work with ZTS globals
* - Quick fopen() support. The code needs some cleaning up and we mightAndi Gutmans2000-03-191-2/+25
| | | | | | need to think of performance issues with the strdup()'s (definitely use strndup() and maybe try to do with less string copies).
* - Fix Win32 compileAndi Gutmans2000-03-171-0/+1
|
* - Last one for today.Andi Gutmans2000-03-161-2/+12
|
* - Allow passing of a verify function. This way we can easily createAndi Gutmans2000-03-161-5/+21
| | | | | chdir() and expandpath() wrappers.
* CleanupSascha Schumann2000-03-161-3/+2
|
* Merge in local changesSascha Schumann2000-03-161-38/+50
|
* - php_is_dir_ok() should work on Windows now.Andi Gutmans2000-03-161-2/+5
|
* - Fix a leak (I think)Andi Gutmans2000-03-161-5/+6
|
* - Make it compile on Windows.Andi Gutmans2000-03-161-4/+11
|
* Use old_stateSascha Schumann2000-03-161-1/+1
|
* (php_check_dots) we don't need lenSascha Schumann2000-03-161-3/+1
|
* virtual_chdir:Sascha Schumann2000-03-161-35/+146
| | | | | | | | | * added error handling * fixed the special case where there were more DIRECTORY_UPs than directory parts (i.e. cwd is d:\foo and path is ../..) * no spaces between # and preprocessor directive - breaks some compilers # added directory-existence check (not activated)
* - Add initial virtual_getcwd() and virtual_chdir() for discussing with theAndi Gutmans2000-03-161-0/+112
rest of the folks