881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
|
char *zPath = NULL;
int idx;
int i;
/* If the repository has not been opened already, then find the
** repository based on the first element of PATH_INFO and open it.
*/
zPathInfo = P("PATH_INFO");
if( !g.repositoryOpen ){
char *zRepo;
const char *zOldScript = PD("SCRIPT_NAME", "");
char *zNewScript;
int j, k;
i = 1;
|
|
|
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
|
char *zPath = NULL;
int idx;
int i;
/* If the repository has not been opened already, then find the
** repository based on the first element of PATH_INFO and open it.
*/
zPathInfo = PD("PATH_INFO","");
if( !g.repositoryOpen ){
char *zRepo;
const char *zOldScript = PD("SCRIPT_NAME", "");
char *zNewScript;
int j, k;
i = 1;
|