summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authormae <qt-info@nokia.com>2010-04-15 10:00:03 (GMT)
committermae <qt-info@nokia.com>2010-04-16 11:36:03 (GMT)
commit00d9ffa077d48e1d1c5ee40594e609522d055cdf (patch)
tree50b9d9f258f3fcf3a1331aa986cc67055a41827a /doc
parent561a7bf35b96ffe70ebafc3876e965ef41b4441d (diff)
downloadQt-00d9ffa077d48e1d1c5ee40594e609522d055cdf.zip
Qt-00d9ffa077d48e1d1c5ee40594e609522d055cdf.tar.gz
Qt-00d9ffa077d48e1d1c5ee40594e609522d055cdf.tar.bz2
Fix doc: remote contents requires qmldir
Diffstat (limited to 'doc')
-rw-r--r--doc/src/declarative/network.qdoc6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/declarative/network.qdoc b/doc/src/declarative/network.qdoc
index 0a26c68..d268a13 100644
--- a/doc/src/declarative/network.qdoc
+++ b/doc/src/declarative/network.qdoc
@@ -69,8 +69,10 @@ Network transparency is supported throughout QML, for example:
\endlist
Even QML types themselves can be on the network - if the \l {Qt Declarative UI Runtime}{qml} tool is used to load
-\tt http://example.com/mystuff/Hello.qml and that content refers to a type "World", this
-will load from \tt http://example.com/mystuff/World.qml just as it would for a local file.
+\tt http://example.com/mystuff/Hello.qml and that content refers to a type "World", the engine
+will load \tt http://example.com/mystuff/qmldir and resolve the type just as it would for a local file.
+For example if the qmldir file contains the line "World World.qml", it will load
+\tt http://example.com/mystuff/World.qml
Any other resources that \tt Hello.qml referred to, usually by a relative URL, would
similarly be loaded from the network.