OLD | NEW |
1 Name: Mongoose | 1 Name: mongoose |
2 URL: http://code.google.com/p/mongoose/ | 2 URL: http://code.google.com/p/mongoose/ |
3 LICENSE: MIT | 3 LICENSE: MIT |
4 Version: 2.8 | 4 Version: 2.8 |
5 | 5 |
6 From the website: | 6 Description: |
7 Mongoose is an easy to use web server. It can be embedded into existing | 7 Mongoose is an easy to use web server. It can be embedded into existing |
8 application to provide a web interface to it. | 8 application to provide a web interface to it. |
9 | 9 |
10 Mongoose web server executable is self-sufficient, it does not depend on | 10 Mongoose web server executable is self-sufficient, it does not depend on |
11 anything to start serving requests. If it is copied to any directory and | 11 anything to start serving requests. If it is copied to any directory and |
12 executed, it starts to serve that directory on port 8080 (so to access | 12 executed, it starts to serve that directory on port 8080 (so to access |
13 files, go to http://localhost:8080). If some additional config is | 13 files, go to http://localhost:8080). If some additional config is |
14 required - for example, different listening port or IP-based access | 14 required - for example, different listening port or IP-based access |
15 control, then a mongoose.conf file with respective options (see example) | 15 control, then a mongoose.conf file with respective options (see example) |
16 can be created in the same directory where executable lives. This makes | 16 can be created in the same directory where executable lives. This makes |
17 Mongoose perfect for all sorts of demos, quick tests, file sharing, and | 17 Mongoose perfect for all sorts of demos, quick tests, file sharing, and |
18 Web programming. | 18 Web programming. |
19 | 19 |
20 Only the necessary core server are checked in and not the test nor the | 20 Only the necessary core server are checked in and not the test nor the |
21 bindings to multiple languages. The server is only used to serve custom | 21 bindings to multiple languages. The server is only used to serve custom |
22 URLs from the JSON over HTTP webdriver protocol. The server has been | 22 URLs from the JSON over HTTP webdriver protocol. The server has been |
23 modified to allow for 128 unique URI and not the standard 64. | 23 modified to allow for 128 unique URI and not the standard 64. |
24 | 24 |
25 Note: There is no make file for this project, it's compiled directly in | 25 Note: There is no make file for this project, it's compiled directly in |
26 the chrome versoin of webdriver found under the directory: | 26 the chrome versoin of webdriver found under the directory: |
27 src/chrome/test/webdriver | 27 src/chrome/test/webdriver |
28 | 28 |
29 Local modifications: | 29 Local modifications: |
30 -Do not check for OS_POSIX, instead just check that it is not windows. | 30 -Do not check for OS_POSIX, instead just check that it is not windows. |
31 | 31 |
OLD | NEW |