diff --git a/config/urls.py b/config/urls.py index 41c61017..dec3961a 100755 --- a/config/urls.py +++ b/config/urls.py @@ -1,46 +1,35 @@ from django.conf import settings -from django.urls import include, re_path from django.conf.urls.static import static from django.contrib import admin +from django.urls import include, path, re_path from django.views.generic import TemplateView -from django.urls import path -from rest_framework import routers - from machina import urls as machina_urls +from rest_framework import routers -from users.views import ( - UserViewSet, - CurrentUserAPIView, - CurrentUserProfileView, - ProfileView, - ProfilePhotoGitHubUpdateView, - ProfilePhotoUploadView, - ProfilePreferencesView, -) from ak.views import ( - HomepageView, ForbiddenView, + HomepageBetaView, + HomepageView, InternalServerErrorView, NotFoundView, OKView, - HomepageBetaView, ) from core.views import ( ClearCacheView, MarkdownTemplateView, StaticContentTemplateView, - antora_header_view, antora_footer_view, + antora_header_view, ) +from libraries.api import LibrarySearchView from libraries.views import ( + LibraryDetail, LibraryList, - LibraryListMini, LibraryListByCategory, LibraryListByCategoryMini, - LibraryDetail, + LibraryListMini, ) -from libraries.api import LibrarySearchView -from mailing_list.views import MailingListView, MailingListDetailView +from mailing_list.views import MailingListDetailView, MailingListView from news.views import ( AllTypesCreateView, BlogPostCreateView, @@ -60,9 +49,18 @@ VideoCreateView, VideoListView, ) -from support.views import SupportView, ContactView +from support.views import ContactView, SupportView +from users.views import ( + CurrentUserAPIView, + CurrentUserProfileView, + ProfilePhotoGitHubUpdateView, + ProfilePhotoUploadView, + ProfilePreferencesView, + ProfileView, + UserViewSet, +) from versions.api import VersionViewSet -from versions.views import VersionDetail, VersionCurrentReleaseDetail +from versions.views import VersionCurrentReleaseDetail, VersionDetail router = routers.SimpleRouter() @@ -105,11 +103,6 @@ TemplateView.as_view(template_name="docs_temp.html"), name="docs", ), - path( - "about/", - TemplateView.as_view(template_name="boost/about.html"), - name="boost-about", - ), path("health/", include("health_check.urls")), path("forum/", include(machina_urls)), # temp page for community until mailman is done. diff --git a/templates/boost/about.html b/templates/boost/about.html deleted file mode 100644 index b28c5d81..00000000 --- a/templates/boost/about.html +++ /dev/null @@ -1,131 +0,0 @@ -{% extends "base.html" %} - -{% load static %} - -{% block subnav %} -
- About - People - Moderators -
-{% endblock %} - -{% block content %} -
- - -
- -
-
- -
- -
-

The Boost C++ Libraries are a collection of modern libraries based on the C++ standard.

- -

- The source code is released under the Boost Software License, which allows anyone to use, modify, and - distribute the libraries for free. The libraries are platform independent and support most popular compilers, - as well as many that are less well known. -

-
-
- - - -
-
-

Who's Using Boost?

- -

- Open source isn't just for nerds and researchers. Real world programming challenges, irrespective of whether - they are open or closed source, can benefit enormously from the thought and experience that has gone into - the Boost software libraries. Put simply, for any given problem for which Boost provides a solution, Boost - will strive to provide the best solution possible. It's up to you to decide whether we've achieved that, - but as these pages will testify, many other developers have found our solutions to be the best for them. -

- -

- Disclaimer: Boost's developers try to ensure that the information on these pages is correct, but from time to time - inadvertent mistakes are bound to occur: if you would like an entry in these pages to be removed or corrected - please contact the Boost Moderators. -

- -

Open Source Boost

-

- Boost is used in a variety of Open Source Projects, both applications and libraries. Indeed many Open Source - libraries developed around Boost have in the past been judged of high enough quality to be absorbed into the - main Boost source tree, a process that will no doubt continue into the future. Others are in highly specialized - niche markets, ranging from probability theory to astronomy, via mass spectroscopy: whatever your field of - interest you'll find something of value in Boost. -

- -

In House Boost

-

- Whether you're a government department, an internet startup, or a specialist consultancy, in-house developement - using the Boost Libraries can significantly shorten your development cycles. -

- -

Shrink Wrap Boost

-

- Boost has found it's way into many products that are available "off the shelf", including consumer - applications from Adobe, through to business middleware from SAP. -

- - -
- -
-

Mission

-

- The Boost mission is threefold: (a) develop high-quality, expert-reviewed, open-source C++ libraries, - (b) incubate C++ standard library enhancements, and (c) advance and disseminate C++ software development - best practices. This is accomplished by facilitating C++ community engagement, providing necessary financial/legal - support, and breaking rare directional decision-making deadlocks while upholding our shared values of - engineering excellence, technocratic leadership, and a federated library authorship model. -

-
- -
-

History

-

- Beman Dawes and Robert Klarer developed the idea for the web site during a series of corridor - conversations at the March, 1998, meeting of the C++ standards committee in Sophia Antipolis, France. The - Boost community emerged later that year, when the first version of the standard was released. It has grown - continuously since then and now plays a big role in the standardization of C++. Even though there is no formal - relationship between the Boost community and the standardization committee, some of the developers are active - in both groups. The current version of the C++ standard, which was approved in 2011, includes libraries that - have their roots in the Boost community. -

-
- -
-

Boost Foundation Board of Directors

-

- After being a project of Software Freedom Conservancy for over a decade, Boost has spun-off into it owns - 501(c)(3) non-profit corporation name Boost Foundation. We are forever grateful to Software Freedom - Conservancy for their support and guidance to achieve this milestone. -

- -

- Boost Foundation Board of Directors will now assume the role that was filled by the Boost Steering Committee. -

- - -
-
-
- -
-{% endblock %}