Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | clean up a few compiler warnings |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
97789f0a928d11a3d78f30e243e1690c |
| User & Date: | rwilson 2009-12-29 22:10:29.000 |
Context
|
2009-12-30
| ||
| 01:57 | Added a 's' parameter to the web timeline view. This will search the comment and brief fields for the given text via LIKE '%value%'. ... (check-in: 1e2ec3ff87 user: jeremy_c tags: trunk) | |
|
2009-12-29
| ||
| 22:10 | clean up a few compiler warnings ... (check-in: 97789f0a92 user: rwilson tags: trunk) | |
| 20:52 | Fix a bug in the IP address truncator. Ticket [a09798ba9e]. ... (check-in: 5d16ca43f1 user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
733 734 735 736 737 738 739 |
** Works like the http command but gives setup permission to all users.
*/
void cmd_test_http(void){
login_set_capabilities("s");
cmd_http();
}
| | | 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 |
** Works like the http command but gives setup permission to all users.
*/
void cmd_test_http(void){
login_set_capabilities("s");
cmd_http();
}
#ifndef __MINGW32__
#if !defined(__DARWIN__) && !defined(__APPLE__)
/*
** Search for an executable on the PATH environment variable.
** Return true (1) if found and false (0) if not found.
*/
static int binaryOnPath(const char *zBinary){
const char *zPath = getenv("PATH");
|
| ︙ | ︙ | |||
755 756 757 758 759 760 761 762 763 764 765 766 767 768 |
bExists = access(zFull, X_OK);
free(zFull);
if( bExists==0 ) return 1;
zPath += i;
}
return 0;
}
#endif
/*
** COMMAND: server
** COMMAND: ui
**
** Usage: %fossil server ?-P|--port TCPPORT? ?REPOSITORY?
| > | 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 |
bExists = access(zFull, X_OK);
free(zFull);
if( bExists==0 ) return 1;
zPath += i;
}
return 0;
}
#endif
#endif
/*
** COMMAND: server
** COMMAND: ui
**
** Usage: %fossil server ?-P|--port TCPPORT? ?REPOSITORY?
|
| ︙ | ︙ |
Changes to src/winhttp.c.
| ︙ | ︙ | |||
134 135 136 137 138 139 140 |
/*
** Start a listening socket and process incoming HTTP requests on
** that socket.
*/
void win32_http_server(int mnPort, int mxPort, char *zBrowser){
WSADATA wd;
| | | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
/*
** Start a listening socket and process incoming HTTP requests on
** that socket.
*/
void win32_http_server(int mnPort, int mxPort, char *zBrowser){
WSADATA wd;
SOCKET s = INVALID_SOCKET;
SOCKADDR_IN addr;
int idCnt = 0;
int iPort = mnPort;
if( WSAStartup(MAKEWORD(1,1), &wd) ){
fossil_fatal("unable to initialize winsock");
}
|
| ︙ | ︙ |