| 228 * namespace is the current namespace which applies to child |
228 * namespace is the current namespace which applies to child |
| 229 * elements which are unprefixed and which do not contain their |
229 * elements which are unprefixed and which do not contain their |
| 230 * own namespace. |
230 * own namespace. |
| 231 * |
231 * |
| 232 * For example, given: |
232 * For example, given: |
| |
233 * \verbatim |
| 233 * <iq type='get' xmlns='jabber:client' xmlns:ns1='http://example.org/ns1'> |
234 * <iq type='get' xmlns='jabber:client' xmlns:ns1='http://example.org/ns1'> |
| 234 * <ns1:element><child1/></ns1:element> |
235 * <ns1:element><child1/></ns1:element> |
| 235 * </iq> |
236 * </iq> |
| |
237 * \endverbatim |
| 236 * |
238 * |
| 237 * The default namespace of all nodes (including 'child1') is "jabber:client", |
239 * The default namespace of all nodes (including 'child1') is "jabber:client", |
| 238 * though the namespace for 'element' is "http://example.org/ns1". |
240 * though the namespace for 'element' is "http://example.org/ns1". |
| 239 * |
241 * |
| 240 * @param node The node for which to return the default namespace |
242 * @param node The node for which to return the default namespace |