Skip to content

Commit

Permalink
mor gitignore stuff; fix socket tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Stepanov committed May 3, 2010
1 parent 22418d7 commit a04eaae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ server/src/httpd-2.2.6/
server/src/libevent/
server/src/google/google_breakpad/
server/local_settings.py
server/framework/src/
server/framework/tests/
server/framework/build*Config.js
server/src/connectors/servlet/com/
server/src/connectors/servlet/products/
server/src/connectors/servlet/*.jar
server/src/mozilla/.mozconfig
server/src/mozilla/.mozconfig.mk
server/src/mozilla/ff-release/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

try
{
sock.open("www.aptana.com", 80);
sock.open("www.jaxer.org", 80);
var strData = 'HEAD / HTTP/1.0\n\n';
var byteArray = [];
for (var i=0, len = strData.length; i<len; i++)
Expand Down Expand Up @@ -50,7 +50,7 @@

try
{
sock.open("www.aptana.com", 80);
sock.open("www.jaxer.org", 80);
var strData = 'HEAD / HTTP/1.0\n\n';
sock.writeByteString(strData);
sock.flush();
Expand Down
2 changes: 1 addition & 1 deletion server/framework/IO/unit_tests_jaxer/test_IO_Socket.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

try
{
sock.open("www.aptana.com", 80);
sock.open("www.jaxer.org", 80);
sock.writeString('GET / HTTP/1.0\n\n');
sock.flush();

Expand Down

0 comments on commit a04eaae

Please sign in to comment.