Skip to content

Commit

Permalink
use pct_encoded_view
Browse files Browse the repository at this point in the history
fix #235, fix #223, fix cpp-netlib#168, fix cpp-netlib#164, fix cpp-netlib#163, fix cpp-netlib#159
  • Loading branch information
alandefreitas committed Jul 26, 2022
1 parent aecf3a6 commit 5c307a8
Show file tree
Hide file tree
Showing 110 changed files with 3,139 additions and 3,132 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ else()
set(BOOST_URL_BUILD_TESTS ${BUILD_TESTING})
endif()


include(GNUInstallDirs)
if(BOOST_URL_IS_ROOT)
if (NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/../../CMakeLists.txt")
set(BOOST_URL_FIND_PACKAGE_BOOST ON)
endif()

# container comes from json
set(BOOST_INCLUDE_LIBRARIES url json)
set(BOOST_URL_UNIT_TEST_LIBRARIES container filesystem)
set(BOOST_INCLUDE_LIBRARIES url json ${BOOST_URL_UNIT_TEST_LIBRARIES})
set(BOOST_EXCLUDE_LIBRARIES url)
set(CMAKE_FOLDER _deps)
if (BOOST_URL_FIND_PACKAGE_BOOST)
Expand Down
32 changes: 17 additions & 15 deletions doc/qbk/0.main.qbk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[/
Copyright (c) 2019 Vinnie Falco ([email protected])
Copyright (c) 2019 Alan Freitas ([email protected])
Copyright (c) 2022 Alan Freitas ([email protected])

Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down Expand Up @@ -65,7 +65,6 @@
[def __result__ [link url.ref.boost__urls__result `result`]]
[def __static_pool__ [link url.ref.boost__urls__static_pool `static_pool`]]
[def __static_url__ [link url.ref.boost__urls__static_url `static_url`]]
[def __const_string__ [link url.ref.boost__urls__const_string `const_string`]]
[def __pct_encoded_view__ [link url.ref.boost__urls__pct_encoded_view `pct_encoded_view`]]
[def __string_view__ [link url.ref.boost__urls__string_view `string_view`]]
[def __url__ [link url.ref.boost__urls__url `url`]]
Expand All @@ -86,24 +85,27 @@
[include 1.0.overview.qbk]
[include 2.0.quicklook.qbk]
[include 2.1.HelpCard.qbk]
[include 3.0.urls.qbk]

[section Parsing]
[include 3.0.parsing.qbk]
[include 3.1.scheme.qbk]
[include 3.2.authority.qbk]
[include 3.3.path.qbk]
[include 3.4.query.qbk]
[include 3.5.fragment.qbk]
[section Containers]
[include 4.1.parsing.qbk]
[include 4.2.modifying.qbk]
[endsect]

[section URL Components]
[include 5.1.scheme.qbk]
[include 5.2.authority.qbk]
[include 5.3.path.qbk]
[include 5.4.query.qbk]
[include 5.5.fragment.qbk]
[endsect]

[include 4.0.modifying.qbk]

[section Grammar Rules]
[include 5.0.grammars.qbk]
[include 5.1.customization.qbk]
[include 6.1.design.qbk]
[include 6.2.customization.qbk]
[endsect]


[section:ref Reference]
[xinclude quickref.xml]
[block'''<part label="Two: Reference">''']
Expand All @@ -112,8 +114,8 @@
[endsect]

[section:concepts Concepts]
[include 6.1.CharSet.qbk]
[include 6.2.MutableString.qbk]
[include 7.1.CharSet.qbk]
[include 7.2.MutableString.qbk]
[endsect]


Expand Down
2 changes: 1 addition & 1 deletion doc/qbk/1.0.overview.qbk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[/
Copyright (c) 2021 Vinnie Falco ([email protected])
Copyright (c) 2019 Alan Freitas ([email protected])
Copyright (c) 2022 Alan Freitas ([email protected])

Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down
Loading

0 comments on commit 5c307a8

Please sign in to comment.