mirror of
https://github.com/boostorg/website-v2-docs.git
synced 2026-01-19 04:42:17 +00:00
Add license header to all source files
This commit is contained in:
committed by
Alan de Freitas
parent
b94cc47a23
commit
49e844b332
@@ -1,3 +1,11 @@
|
|||||||
|
<!--
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
-->
|
||||||
---
|
---
|
||||||
name: Submit a Correction or Bug report
|
name: Submit a Correction or Bug report
|
||||||
about: This is for typos, grammar, formatting, UI, HTML, or CSS style problems.
|
about: This is for typos, grammar, formatting, UI, HTML, or CSS style problems.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
<!--
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
-->
|
||||||
---
|
---
|
||||||
name: Suggest a Topic, Enhancement, or Information
|
name: Suggest a Topic, Enhancement, or Information
|
||||||
about: This is for requesting new topics, enhancements to existing exposition, or
|
about: This is for requesting new topics, enhancements to existing exposition, or
|
||||||
|
|||||||
8
.github/actions/antora_publish/action.yml
vendored
8
.github/actions/antora_publish/action.yml
vendored
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
name: 'Antora Publish'
|
name: 'Antora Publish'
|
||||||
description: 'Build and Publish an Antora documentation website'
|
description: 'Build and Publish an Antora documentation website'
|
||||||
inputs:
|
inputs:
|
||||||
|
|||||||
8
.github/workflows/publish.yml
vendored
8
.github/workflows/publish.yml
vendored
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
name: Build, Test and Upload Antora Docs
|
name: Build, Test and Upload Antora Docs
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|||||||
8
.github/workflows/ui-release.yml
vendored
8
.github/workflows/ui-release.yml
vendored
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
name: Publish Antora-UI bundle
|
name: Publish Antora-UI bundle
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Antora Guide
|
= Antora Guide
|
||||||
:idprefix:
|
:idprefix:
|
||||||
:idseparator: -
|
:idseparator: -
|
||||||
|
|||||||
8
build.sh
8
build.sh
@@ -1,4 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
|
|
||||||
if command -v git >/dev/null && git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
|
if command -v git >/dev/null && git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
|
||||||
branch=$(git rev-parse --abbrev-ref HEAD)
|
branch=$(git rev-parse --abbrev-ref HEAD)
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
name: contributor-guide
|
name: contributor-guide
|
||||||
title: Contributor Guide
|
title: Contributor Guide
|
||||||
version: ~
|
version: ~
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
|
|
||||||
* xref:getting-involved.adoc[]
|
* xref:getting-involved.adoc[]
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Best Practices
|
= Best Practices
|
||||||
:navtitle: Best Practices
|
:navtitle: Best Practices
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= B2
|
= B2
|
||||||
|
|
||||||
*Content under construction.*
|
*Content under construction.*
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= CMake
|
= CMake
|
||||||
|
|
||||||
*Content under construction.*
|
*Content under construction.*
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Backwards Compatibility
|
= Backwards Compatibility
|
||||||
:navtitle: Backwards Compatibility
|
:navtitle: Backwards Compatibility
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Portability Hints: Borland C++ 5.5.1
|
= Portability Hints: Borland C++ 5.5.1
|
||||||
:navtitle: Borland C++
|
:navtitle: Borland C++
|
||||||
:idprefix:
|
:idprefix:
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Dependencies
|
= Dependencies
|
||||||
:navtitle: Dependencies
|
:navtitle: Dependencies
|
||||||
:idprefix:
|
:idprefix:
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Design Guide
|
= Design Guide
|
||||||
:navtitle: Design Guide
|
:navtitle: Design Guide
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Headers
|
= Headers
|
||||||
:navtitle: Headers
|
:navtitle: Headers
|
||||||
:idprefix:
|
:idprefix:
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Separate Compilation
|
= Separate Compilation
|
||||||
:navtitle: Separate Compilation
|
:navtitle: Separate Compilation
|
||||||
:idprefix:
|
:idprefix:
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= AsciiDoc Style Guide
|
= AsciiDoc Style Guide
|
||||||
:navtitle: AsciiDoc Style Guide
|
:navtitle: AsciiDoc Style Guide
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Documentation Components
|
= Documentation Components
|
||||||
:navtitle: Documentation Components
|
:navtitle: Documentation Components
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Guidelines
|
= Guidelines
|
||||||
:navtitle: Guidelines
|
:navtitle: Guidelines
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Getting Involved
|
= Getting Involved
|
||||||
:navtitle: Getting Involved
|
:navtitle: Getting Involved
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Contributor Guide
|
= Contributor Guide
|
||||||
|
|
||||||
This Contributor Guide is for C++ developers who wish to submit a library to the Boost collection. Or to contribute in some other way, such as testing or evaluating library submissions.
|
This Contributor Guide is for C++ developers who wish to submit a library to the Boost collection. Or to contribute in some other way, such as testing or evaluating library submissions.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Release Notes
|
= Release Notes
|
||||||
:navtitle: Release Notes
|
:navtitle: Release Notes
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Release Process
|
= Release Process
|
||||||
:navtitle: Release Process
|
:navtitle: Release Process
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Library Metadata
|
= Library Metadata
|
||||||
:idprefix:
|
:idprefix:
|
||||||
:idseparator: -
|
:idseparator: -
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Library Requirements
|
= Library Requirements
|
||||||
:navtitle: Library Requirements
|
:navtitle: Library Requirements
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= License Requirements
|
= License Requirements
|
||||||
:navtitle: License Requirements
|
:navtitle: License Requirements
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Organization Requirements
|
= Organization Requirements
|
||||||
:navtitle: Organization Requirements
|
:navtitle: Organization Requirements
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Portability Requirements
|
= Portability Requirements
|
||||||
:navtitle: Portability Requirements
|
:navtitle: Portability Requirements
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Site-docs Style Guide
|
= Site-docs Style Guide
|
||||||
:navtitle: Site-docs Style Guide
|
:navtitle: Site-docs Style Guide
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Getting Started with the Super-project
|
= Getting Started with the Super-project
|
||||||
:navtitle: Getting Started
|
:navtitle: Getting Started
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Getting Started with Super-project Library Maintenance
|
= Getting Started with Super-project Library Maintenance
|
||||||
:navtitle: Library Maintenance
|
:navtitle: Library Maintenance
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Super-project Library Workflow
|
= Super-project Library Workflow
|
||||||
:navtitle: Library Workflow
|
:navtitle: Library Workflow
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Super-project Layout
|
= Super-project Layout
|
||||||
:navtitle: Super-project Layout
|
:navtitle: Super-project Layout
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Test Matrix
|
= Test Matrix
|
||||||
:navtitle: Test Matrix
|
:navtitle: Test Matrix
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Continuous Integration
|
= Continuous Integration
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Fuzz Testing
|
= Fuzz Testing
|
||||||
|
|
||||||
*What is fuzz testing?* Fuzzing is a testing technique that injects random pieces of data to a software function to uncover crashes and vulnerabilities. It helps improving code security and reliability, since it can trigger edge cases that went unnoticed during unit testing.
|
*What is fuzz testing?* Fuzzing is a testing technique that injects random pieces of data to a software function to uncover crashes and vulnerabilities. It helps improving code security and reliability, since it can trigger edge cases that went unnoticed during unit testing.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Introduction to Testing
|
= Introduction to Testing
|
||||||
:navtitle: Introduction
|
:navtitle: Introduction
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Sanitize Your Code
|
= Sanitize Your Code
|
||||||
:navtitle: Sanitizers
|
:navtitle: Sanitizers
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Test Policy
|
= Test Policy
|
||||||
:navtitle: Test Policy
|
:navtitle: Test Policy
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Writing Tests
|
= Writing Tests
|
||||||
:navtitle: Writing Tests
|
:navtitle: Writing Tests
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Tweeting
|
= Tweeting
|
||||||
:navtitle: Tweeting
|
:navtitle: Tweeting
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Version Control
|
= Version Control
|
||||||
:navtitle: Version Control
|
:navtitle: Version Control
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Search Functionality
|
= Search Functionality
|
||||||
|
|
||||||
This document outlines the requirements and design of search functionality for Boost site documentation generated by Antora.
|
This document outlines the requirements and design of search functionality for Boost site documentation generated by Antora.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
name: formal-reviews
|
name: formal-reviews
|
||||||
title: Formal Reviews
|
title: Formal Reviews
|
||||||
version: ~
|
version: ~
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
* xref:index.adoc[Introduction to Boost Formal Reviews]
|
* xref:index.adoc[Introduction to Boost Formal Reviews]
|
||||||
* xref:submissions.adoc[]
|
* xref:submissions.adoc[]
|
||||||
* xref:writing-reviews.adoc[]
|
* xref:writing-reviews.adoc[]
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Introduction to Boost Formal Reviews
|
= Introduction to Boost Formal Reviews
|
||||||
:navtitle: Introduction to Boost Formal Reviews
|
:navtitle: Introduction to Boost Formal Reviews
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1,9 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Managing a Review
|
= Managing a Review
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Boost Library Submission Process
|
= Boost Library Submission Process
|
||||||
:idprefix:
|
:idprefix:
|
||||||
:idseparator: -
|
:idseparator: -
|
||||||
|
|||||||
@@ -1 +1,9 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Writing a Review
|
= Writing a Review
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
site:
|
site:
|
||||||
url: https://antora.cppalliance.org/1.81.0/libs
|
url: https://antora.cppalliance.org/1.81.0/libs
|
||||||
title: Boost Libraries Documentation
|
title: Boost Libraries Documentation
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
site:
|
site:
|
||||||
url: https://antora.cppalliance.org/1.82.0/libs
|
url: https://antora.cppalliance.org/1.82.0/libs
|
||||||
title: Boost Libraries Documentation
|
title: Boost Libraries Documentation
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
site:
|
site:
|
||||||
url: https://antora.cppalliance.org/1.83.0/libs
|
url: https://antora.cppalliance.org/1.83.0/libs
|
||||||
title: Boost Libraries Documentation
|
title: Boost Libraries Documentation
|
||||||
|
|||||||
@@ -1,4 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
# This script is used to build the Antora-based
|
# This script is used to build the Antora-based
|
||||||
# documentation for Boost libraries and for the
|
# documentation for Boost libraries and for the
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
|
|
||||||
# This configures Antora for building library docs
|
# This configures Antora for building library docs
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Help
|
= Help
|
||||||
|
|
||||||
This is the help page.
|
This is the help page.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Boost Style Guide
|
= Boost Style Guide
|
||||||
|
|
||||||
This document outlines the style guidelines for the site-docs. Adhering to these
|
This document outlines the style guidelines for the site-docs. Adhering to these
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Boost People
|
= Boost People
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Darin Adler
|
= Darin Adler
|
||||||
|
|
||||||
image::../images/darin_adler.jpg[Darin Adler]
|
image::../images/darin_adler.jpg[Darin Adler]
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Dave Abrahams
|
= Dave Abrahams
|
||||||
|
|
||||||
image::../images/dave_abrahams.jpg[Dave Abrahams]
|
image::../images/dave_abrahams.jpg[Dave Abrahams]
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
|
|
||||||
# This configures Antora for building site docs
|
# This configures Antora for building site docs
|
||||||
#
|
#
|
||||||
# website link structure:
|
# website link structure:
|
||||||
|
|||||||
@@ -1,4 +1,13 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
# This script is used to build the site
|
# This script is used to build the site
|
||||||
# documentation which is not tagged per release.
|
# documentation which is not tagged per release.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
#
|
||||||
|
# Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
#
|
||||||
|
# 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)
|
||||||
|
#
|
||||||
|
# Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
#
|
||||||
name: user-guide
|
name: user-guide
|
||||||
title: User Guide
|
title: User Guide
|
||||||
version: ~
|
version: ~
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
* xref:intro.adoc[]
|
* xref:intro.adoc[]
|
||||||
* xref:getting-started.adoc[]
|
* xref:getting-started.adoc[]
|
||||||
* xref:explore-the-content.adoc[]
|
* xref:explore-the-content.adoc[]
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Advanced Builds
|
= Advanced Builds
|
||||||
|
|
||||||
*Content under construction.*
|
*Content under construction.*
|
||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Advanced Scenarios
|
= Advanced Scenarios
|
||||||
:navtitle: Introduction
|
:navtitle: Introduction
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= History
|
= History
|
||||||
:navtitle: History
|
:navtitle: History
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Boost.Test Tutorial
|
= Boost.Test Tutorial
|
||||||
:navtitle: Boost.Test Tutorial
|
:navtitle: Boost.Test Tutorial
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= The Boost Software License
|
= The Boost Software License
|
||||||
|
|
||||||
This section contains the current Boost Software License verbatim, and is followed by a rationale on why using this license is recommended.
|
This section contains the current Boost Software License verbatim, and is followed by a rationale on why using this license is recommended.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Common Scenarios
|
= Common Scenarios
|
||||||
:navtitle: Introduction
|
:navtitle: Introduction
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Explore the Content
|
= Explore the Content
|
||||||
:navtitle: Explore the Content
|
:navtitle: Explore the Content
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Frequently Asked Questions
|
= Frequently Asked Questions
|
||||||
:navtitle: FAQ
|
:navtitle: FAQ
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Getting Started
|
= Getting Started
|
||||||
:navtitle: Getting Started
|
:navtitle: Getting Started
|
||||||
:latest_tag: 1_82_0
|
:latest_tag: 1_82_0
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Header Organization and Compiled Binaries
|
= Header Organization and Compiled Binaries
|
||||||
:navtitle: Header Organization and Compiled Binaries
|
:navtitle: Header Organization and Compiled Binaries
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= User Guide
|
= User Guide
|
||||||
|
|
||||||
This User Guide is for all pass:[C++] developers using or evaluating Boost libraries.
|
This User Guide is for all pass:[C++] developers using or evaluating Boost libraries.
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Introduction
|
= Introduction
|
||||||
:idprefix:
|
:idprefix:
|
||||||
:idseparator: -
|
:idseparator: -
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Library Names and Organization
|
= Library Names and Organization
|
||||||
:navtitle: Library Names and Organization
|
:navtitle: Library Names and Organization
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Release Process
|
= Release Process
|
||||||
|
|
||||||
Boost libraries are released together and publicly three times per year:
|
Boost libraries are released together and publicly three times per year:
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Reporting Issues
|
= Reporting Issues
|
||||||
:idprefix:
|
:idprefix:
|
||||||
:idseparator: -
|
:idseparator: -
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Resources
|
= Resources
|
||||||
:navtitle: Resources
|
:navtitle: Resources
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= High-Performance Database Engine
|
= High-Performance Database Engine
|
||||||
:navtitle: Database Engine
|
:navtitle: Database Engine
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Machine Learning
|
= Machine Learning
|
||||||
:navtitle: Machine Learning
|
:navtitle: Machine Learning
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Metaprogramming
|
= Metaprogramming
|
||||||
:navtitle: Metaprogramming
|
:navtitle: Metaprogramming
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Natural Language Processing
|
= Natural Language Processing
|
||||||
:navtitle: Natural Language
|
:navtitle: Natural Language
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Networking
|
= Networking
|
||||||
:navtitle: Networking
|
:navtitle: Networking
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Parallel Computation
|
= Parallel Computation
|
||||||
:navtitle: Parallel Computation
|
:navtitle: Parallel Computation
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Real-Time Simulation
|
= Real-Time Simulation
|
||||||
:navtitle: Simulation
|
:navtitle: Simulation
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= System Components
|
= System Components
|
||||||
:navtitle: System
|
:navtitle: System
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Text Processing
|
= Text Processing
|
||||||
:navtitle: Text Processing
|
:navtitle: Text Processing
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
////
|
||||||
|
Copyright (c) 2024 The C++ Alliance, Inc. (https://cppalliance.org)
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
Official repository: https://github.com/boostorg/website-v2-docs
|
||||||
|
////
|
||||||
= Testing and Debugging
|
= Testing and Debugging
|
||||||
:navtitle: Testing and Debugging
|
:navtitle: Testing and Debugging
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user