Merge lp:~zorba-coders/zorba/redirect into lp:zorba

Proposed by Matthias Brantner
Status: Superseded
Proposed branch: lp:~zorba-coders/zorba/redirect
Merge into: lp:zorba
Diff against target: 12 lines (+1/-1)
1 file modified
src/util/http_util.cpp (+1/-1)
To merge this branch: bzr merge lp:~zorba-coders/zorba/redirect
Reviewer Review Type Date Requested Status
Matthias Brantner Approve
Chris Hillery Pending
Review via email: mp+82964@code.launchpad.net

This proposal has been superseded by a proposal from 2011-11-22.

Commit message

Following redirects when resolving URLs. Mostly used when importing modules or schemas.

Description of the change

Following redirects when resolving URLs. Mostly used when importing modules or schemas.

To post a comment you must log in.
Revision history for this message
Matthias Brantner (matthias-brantner) :
review: Approve
lp:~zorba-coders/zorba/redirect updated
10549. By Matthias Brantner

Following redirects when resolving URLs. Mostly used when importing modules or schemas. Approved: Chris Hillery, Matthias Brantner

10550. By Daniel Turcanu

Fixed bug #872850 about plan serializer crash Approved: David Graf, Matthias Brantner

10551. By Carlos Manuel Lopez

Optimization of the fn:substring function in the case when its $start and $length arguments are integers. Approved: Matthias Brantner, Markos Zaharioudakis

10552. By Paul J. Lucas

Removed warnings. Approved: Matthias Brantner, Paul J. Lucas

10553. By Markos Zaharioudakis

converted variable assignment to a full-blown expression instead of a function + fixed a bug with the cloning of var_decl_expr Approved: Markos Zaharioudakis

10554. By Matthias Brantner

- fixed DynamicLoader memory leak
- StaticContext::getAuditEvent const
- added iterator.h include to zorba.h
- fn:trace should not be constant folded and propagate the return type of its first argument Approved: Markos Zaharioudakis, Matthias Brantner

10555. By Matthias Brantner

- Reorganization of ChangeLog for 2.1 release
- added the xqxq-module to the modules that are downloaded automatically Approved: Chris Hillery, Matthias Brantner

10556. By Matthias Brantner

allow for updating external functions

10557. By Matthias Brantner

added external updating functions to the changelog

10558. By Markos Zaharioudakis

a different fix for allowing updating external functions

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/util/http_util.cpp'
2--- src/util/http_util.cpp 2011-08-20 01:30:48 +0000
3+++ src/util/http_util.cpp 2011-11-22 03:00:30 +0000
4@@ -56,7 +56,7 @@
5 lFactory->createAttributeNode(lRequestElement, lFactory->createQName("", "method"), Item(), lFactory->createString("GET"));
6 lFactory->createAttributeNode(lRequestElement, lFactory->createQName("", "href"), Item(), lFactory->createString(theUri.c_str()));
7 lFactory->createAttributeNode(lRequestElement, lFactory->createQName("", "override-media-type"), Item(), lFactory->createString("text/plain"));
8- lFactory->createAttributeNode(lRequestElement, lFactory->createQName("", "follow-redirect"), Item(), lFactory->createString("false"));
9+ lFactory->createAttributeNode(lRequestElement, lFactory->createQName("", "follow-redirect"), Item(), lFactory->createString("true"));
10 Zorba_CompilerHints_t lHints;
11 lHints.opt_level = ZORBA_OPT_LEVEL_O1;
12 theStaticContext->loadProlog("import module namespace httpc = \"http://www.zorba-xquery.com/modules/http-client\";",

Subscribers

People subscribed via source and target branches