aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_qt3support_network_q3http.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/codesnippets/doc/src/snippets/code/src_qt3support_network_q3http.cpp')
-rw-r--r--doc/codesnippets/doc/src/snippets/code/src_qt3support_network_q3http.cpp74
1 files changed, 0 insertions, 74 deletions
diff --git a/doc/codesnippets/doc/src/snippets/code/src_qt3support_network_q3http.cpp b/doc/codesnippets/doc/src/snippets/code/src_qt3support_network_q3http.cpp
deleted file mode 100644
index 6729c5fa5..000000000
--- a/doc/codesnippets/doc/src/snippets/code/src_qt3support_network_q3http.cpp
+++ /dev/null
@@ -1,74 +0,0 @@
-//! [0]
-content-type: text/html
-//! [0]
-
-
-//! [1]
-header.setValue( "content-type", "text/html" );
-QString contentType = header.value( "content-type" );
-//! [1]
-
-
-//! [2]
-QUrlOperator op( "http://qtsoftware.com" );
-op.get( "index.html" );
-//! [2]
-
-
-//! [3]
-Q3HttpRequestHeader header( "GET", "/index.html" );
-header.setValue( "Host", "qtsoftware.com" );
-http->setHost( "qtsoftware.com" );
-http->request( header );
-//! [3]
-
-
-//! [4]
-http->setHost( "qtsoftware.com" ); // id == 1
-http->get( "/index.html" ); // id == 2
-//! [4]
-
-
-//! [5]
-requestStarted( 1 )
-requestFinished( 1, false )
-
-requestStarted( 2 )
-stateChanged( Connecting )
-stateChanged( Sending )
-dataSendProgress( 77, 77 )
-stateChanged( Reading )
-responseHeaderReceived( responseheader )
-dataReadProgress( 5388, 0 )
-readyRead( responseheader )
-dataReadProgress( 18300, 0 )
-readyRead( responseheader )
-stateChanged( Connected )
-requestFinished( 2, false )
-
-done( false )
-
-stateChanged( Closing )
-stateChanged( Unconnected )
-//! [5]
-
-
-//! [6]
-http->setHost( "www.foo.bar" ); // id == 1
-http->get( "/index.html" ); // id == 2
-http->post( "register.html", data ); // id == 3
-//! [6]
-
-
-//! [7]
-requestStarted( 1 )
-requestFinished( 1, false )
-
-requestStarted( 2 )
-stateChanged( HostLookup )
-requestFinished( 2, true )
-
-done( true )
-
-stateChanged( Unconnected )
-//! [7]