Skip to content
Snippets Groups Projects
Commit af545b1a authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

Merge pull request #138 in ASAPO/asapo from fix-ldap-auth to develop

* commit 'ac91d78f':
  update changelogs
  fix getting list of hosts from LDAP
  update docs
  update docs
  update docs
  update
  add asapo icons
  update deployment
  fix build
  fix build
  fix build
  make asapo site with docusaurius
parents f5812a7e ac91d78f
No related branches found
No related tags found
No related merge requests found
Showing
with 17889 additions and 0 deletions
---
title: Markdown Features
---
Docusaurus supports the [Markdown](https://daringfireball.net/projects/markdown/syntax) syntax and has some additional features.
## Front Matter
Markdown documents can have associated metadata at the top called [Front Matter](https://jekyllrb.com/docs/front-matter/):
```md
---
id: my-doc
title: My document title
description: My document description
sidebar_label: My doc
---
Markdown content
```
## Markdown links
Regular Markdown links are supported using url paths or relative file paths.
```md
Let's see how to [Create a page](/create-a-page).
```
```md
Let's see how to [Create a page](./create-a-page.md).
```
Let's see how to [Create a page](./create-a-page.md).
## Markdown images
Regular Markdown images are supported.
Add an image at `static/img/docusaurus.png` and use this Markdown declaration:
```md
![Docusaurus logo](/img/docusaurus.png)
```
![Docusaurus logo](/img/docusaurus.png)
## Code Blocks
Markdown code blocks are supported with Syntax highlighting.
```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return (
<h1>Hello, Docusaurus!</h1>
)
}
```
```jsx title="src/components/HelloDocusaurus.js"
function HelloDocusaurus() {
return <h1>Hello, Docusaurus!</h1>;
}
```
## Admonitions
Docusaurus has a special syntax to create admonitions and callouts:
:::tip My tip
Use this awesome feature option
:::
:::danger Take care
This action is dangerous
:::
:::tip My tip
Use this awesome feature option
:::
:::danger Take care
This action is dangerous
:::
## React components
Thanks to [MDX](https://mdxjs.com/), you can make your doc more interactive and use React components inside Markdown:
```jsx
export const Highlight = ({children, color}) => (
<span
style={{
backgroundColor: color,
borderRadius: '2px',
color: 'red',
padding: '0.2rem',
}}>
{children}
</span>
);
<Highlight color="#25c2a0">Docusaurus green</Highlight> and <Highlight color="#1877F2">Facebook blue</Highlight> are my favorite colors.
```
export const Highlight = ({children, color}) => (
<span
style={{
backgroundColor: color,
borderRadius: '2px',
color: '#fff',
padding: '0.2rem',
}}>
{children}
</span>
);
<Highlight color="#25c2a0">Docusaurus green</Highlight> and <Highlight color="#1877F2">
Facebook blue
</Highlight> are my favorite colors.
---
title: Thank you!
---
Congratulations on making it this far!
You have learned the **basics of Docusaurus** and made some changes to the **initial template**.
But Docusaurus has **much more to offer**!
## What's next?
- [Read the official documentation](https://v2.docusaurus.io/).
- [Design and Layout your Docusaurus site](https://v2.docusaurus.io/docs/styling-layout)
- [Integrate a search bar into your site](https://v2.docusaurus.io/docs/search)
- [Find inspirations in Docusaurus showcase](https://v2.docusaurus.io/showcase)
- [Get involved in the Docusaurus Community](https://v2.docusaurus.io/community/support)
/** @type {import('@docusaurus/types').DocusaurusConfig} */
const path = require('path');
module.exports = {
title: 'ASAP::O',
tagline: 'High performance distributed streaming platform',
url: 'http://asapo.desy.de',
baseUrl: '/',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'DESY', // Usually your GitHub org/user name.
projectName: 'ASAPO', // Usually your repo name.
customFields: {
version: '@ASAPO_VERSION@',
},
plugins: [path.resolve(__dirname, 'plugins/webpackconf/src/index.js')],
themeConfig: {
navbar: {
logo: {
alt: 'ASAPO Logo',
src: 'img/logo.svg',
srcDark: "img/logo_white.svg"
},
items: [
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
{to: 'blog', label: 'Blog', position: 'left'},
{
label: 'API',
position: 'left', // or 'right'
items: [
{
label: 'C++',
href: 'http://asapo.desy.de/cpp/',
},
{
label: 'Python',
href: 'http://asapo.desy.de/python/',
},
],
},
{
href: 'https://stash.desy.de/projects/ASAPO/repos/asapo/browse?at=@ASAPO_VERSION@/',
label: 'BitBucket',
title: 'BitBucket',
position: 'right',
},
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} DESY. Built with Docusaurus.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
},
blog: {
showReadingTime: true,
// Please change this to your repo.
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};
This diff is collapsed.
{
"name": "asapo",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "2.0.0-alpha.72",
"@docusaurus/preset-classic": "2.0.0-alpha.72",
"@mdx-js/react": "^1.6.21",
"clsx": "^1.1.1",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"text": "github:requirejs/text"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
module.exports = function (context, options) {
return {
name: 'custom-docusaurus-plugin',
configureWebpack(config, isServer, utils) {
const {getCacheLoader} = utils;
return {
module: {
rules: [
{
test: /\.sh$/i,
use: 'raw-loader',
},
{
test: /\.cpp$/i,
use: 'raw-loader',
},
{
test: /\.py$/i,
use: 'raw-loader',
},
],
},
};
},
};
};
module.exports = {
docs: [
'getting-started',
{
type: 'category',
label: 'Docusaurus Tutorial',
items: [
'create-a-page',
'create-a-document',
'create-a-blog-post',
'markdown-features',
'thank-you',
],
},
],
};
/* stylelint-disable docusaurus/copyright-header */
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #25c2a0;
--ifm-color-primary-dark: rgb(33, 175, 144);
--ifm-color-primary-darker: rgb(31, 165, 136);
--ifm-color-primary-darkest: rgb(26, 136, 112);
--ifm-color-primary-light: rgb(70, 203, 174);
--ifm-color-primary-lighter: rgb(102, 212, 189);
--ifm-color-primary-lightest: rgb(146, 224, 208);
--ifm-code-font-size: 95%;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
.hero.hero--primary {
background-color: #c2c225;
background-image: linear-gradient(120deg, #25c2a0, #d9d92e);
}
.navbar .navbar__link[href*=stash] {
font-size: 0;
padding: 4px;
margin: 0 10px;
}
.navbar .navbar__link[href*=stash]:before {
content: '';
display: block;
width: 24px;
height: 24px;
background-size: cover;
}
.navbar .navbar__link[href*=stash]:before {
background-image: url('/static/img/bitbucket.svg');
}
details {
margin-bottom: 20px;
}
.green-text {
color: #32CD32;
}
import React from 'react';
import clsx from 'clsx';
import Layout from '@theme/Layout';
import Link from '@docusaurus/Link';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import useBaseUrl from '@docusaurus/useBaseUrl';
import styles from './styles.module.css';
const features = [
{
title: 'Easy to Use',
imageUrl: 'img/undraw_docusaurus_mountain.svg',
description: (
<>
Docusaurus was designed from the ground up to be easily installed and
used to get your website up and running quickly.
</>
),
},
{
title: 'Focus on What Matters',
imageUrl: 'img/undraw_docusaurus_tree.svg',
description: (
<>
Docusaurus lets you focus on your docs, and we&apos;ll do the chores. Go
ahead and move your docs into the <code>docs</code> directory.
</>
),
},
{
title: 'Powered by React',
imageUrl: 'img/undraw_docusaurus_react.svg',
description: (
<>
Extend or customize your website layout by reusing React. Docusaurus can
be extended while reusing the same header and footer.
</>
),
},
];
function Feature({imageUrl, title, description}) {
const imgUrl = useBaseUrl(imageUrl);
return (
<div className={clsx('col col--4', styles.feature)}>
{imgUrl && (
<div className="text--center">
<img className={styles.featureImage} src={imgUrl} alt={title} />
</div>
)}
<h3>{title}</h3>
<p>{description}</p>
</div>
);
}
export default function Home() {
const context = useDocusaurusContext();
const {siteConfig = {}} = context;
return (
<Layout
title={`Welcome`}
description="Description will go into a meta tag in <head />">
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<h1 className="hero__title">{siteConfig.title}</h1>
<p className="hero__subtitle">{siteConfig.tagline}</p>
<div className={styles.buttons}>
<Link
className={clsx(
'button button--outline button--secondary button--lg',
styles.getStarted,
)}
to={useBaseUrl('docs/')}>
Get Started
</Link>
</div>
</div>
</header>
<main>
{features && features.length > 0 && (
<section className={styles.features}>
<div className="container">
<div className="row">
{features.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
)}
</main>
</Layout>
);
}
/* stylelint-disable docusaurus/copyright-header */
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 966px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}
.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.featureImage {
height: 200px;
width: 200px;
}
import React from 'react'
import InitCodeBlock from '@theme-init/CodeBlock'
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
const requireContext = require.context('../../../../examples/for_site/', true, /\.(sh|py|cpp)$/);
const noteStyle: React.CSSProperties = {
textAlign: 'right',
fontSize: '.8em',
marginTop: '-20px'
}
export interface State {
isCancelled: boolean
}
async function fetchCode(url: string, snippetTag: string, state: State, setFetchResultState: React.Dispatch<React.SetStateAction<string>>) {
let res: Response
try {
if (!state.isCancelled) {
res = await fetch(url);
}
} catch (err) {
if (!state.isCancelled) {
setFetchResultState("cannot fetch code: " + err.toString());
}
}
if (state.isCancelled) {
return;
}
if (res.status !== 200) {
const error = await res.text()
setFetchResultState("cannot fetch code: " + error);
}
let body = (await res.text()).split('\n')
const fromLine = body.indexOf(snippetTag + " start") + 1 || 0;
const toLine = body.indexOf(snippetTag + " end", fromLine) - 1 || undefined;
body = body.slice(fromLine, (toLine || fromLine) + 1)
const preceedingSpace = body.reduce((prev: number, line: string) => {
if (line.length === 0) {
return prev
}
const spaces = line.match(/^\s+/)
if (spaces) {
return Math.min(prev, spaces[0].length)
}
return 0
}, Infinity)
setFetchResultState(body.map((line) => line.slice(preceedingSpace)).join('\n'));
}
function getVal(name: string, props: any) {
const codeRegex = new RegExp("(?:" + name + "=\")(.*?)(\")")
let val = undefined
if (props.metastring && codeRegex.test(props.metastring)) {
val = props.metastring.match(codeRegex)[1];
}
return val;
}
function ReferenceCode(props: any) {
const codeBlockContent = getVal("content", props)
if (!codeBlockContent) {
return (
<InitCodeBlock {...props}/>
);
}
const {siteConfig} = useDocusaurusContext();
const version = siteConfig.customFields.version;
const urlLink = "https://stash.desy.de/projects/ASAPO/repos/asapo/browse/examples/for_site/" + codeBlockContent + "?at=" + version
const snippetTag = getVal("snippetTag", props)
if (codeBlockContent) {
const res = requireContext('./'+codeBlockContent)
let body = res.default.split('\n')
const fromLine = body.indexOf(snippetTag + " start") + 1 || 0;
const toLine = body.indexOf(snippetTag + " end", fromLine) - 1 || undefined;
body = body.slice(fromLine, (toLine || fromLine) + 1).join('\n')
const customProps = {
...props,
children: body,
}
return (
<div>
<InitCodeBlock {...customProps}/>
<div style={noteStyle}>See full example on <a href={urlLink} target="_blank">BitBucket</a></div>
</div>
);
}
}
export default function CodeBlock(props) {
return (
<ReferenceCode {...props} />
);
}
\ No newline at end of file
import type { Props } from '@theme-init/CodeBlock'
export interface GitHubReference {
url: string
fromLine: number
toLine: number
title: string
}
export interface ReferenceCodeBlockProps extends Props {
reference: string
}
export type DispatchTypes = 'reset' | 'loading' | 'loaded' | 'error'
export interface DispatchMessage {
type: DispatchTypes
value: string | Error
}
Source diff could not be displayed: it is too large. Options to address this: view the blob.
docs/site/static/img/docusaurus.png

5.02 KiB

docs/site/static/img/favicon.ico

14.7 KiB

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="100.000000pt" height="36.000000pt" viewBox="00 0 220.000000 56.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,56.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M1900 480 c0 -28 -28 -37 -44 -15 -10 14 -16 15 -34 6 -24 -13 -28
-26 -11 -36 7 -5 4 -14 -7 -26 -12 -13 -21 -16 -28 -9 -15 15 -24 12 -37 -12
-9 -18 -8 -24 6 -34 22 -16 13 -44 -15 -44 -16 0 -20 -7 -20 -30 0 -23 4 -30
20 -30 28 0 36 -27 15 -50 -13 -15 -14 -23 -5 -39 9 -18 14 -19 31 -10 29 15
53 -5 38 -33 -8 -16 -7 -23 8 -34 23 -17 30 -17 37 1 3 8 15 15 26 15 15 0 20
-7 20 -25 0 -21 5 -25 30 -25 25 0 30 4 30 25 0 29 29 35 50 10 19 -23 54 -1
46 30 -8 29 17 53 38 36 11 -10 18 -7 30 11 16 22 15 24 -3 36 -26 18 -16 52
15 52 20 0 24 5 24 30 0 25 -4 30 -24 30 -31 0 -41 27 -16 42 15 10 17 16 8
32 -15 29 -14 29 -36 17 -28 -15 -51 12 -34 40 11 17 9 21 -13 31 -21 10 -27
8 -39 -7 -16 -23 -46 -13 -46 15 0 16 -7 20 -30 20 -23 0 -30 -4 -30 -20z
m115 -113 c61 -61 53 -154 -17 -197 -78 -49 -188 9 -188 100 0 82 47 129 129
130 36 0 49 -6 76 -33z"/>
<path d="M490 459 c-45 -18 -60 -39 -60 -86 0 -55 21 -76 97 -99 32 -10 64
-22 71 -27 18 -14 15 -45 -7 -57 -36 -19 -69 -12 -93 20 -16 23 -30 30 -55 30
-38 0 -38 0 -19 -44 22 -53 60 -76 125 -76 103 0 160 65 127 144 -16 38 -47
57 -122 76 -54 13 -71 32 -49 54 28 27 95 13 95 -19 0 -10 11 -15 34 -15 43 0
48 7 30 48 -22 52 -107 77 -174 51z"/>
<path d="M144 338 c-25 -68 -53 -138 -60 -157 -21 -52 -18 -61 21 -61 31 0 35
3 46 40 l12 40 67 0 67 0 12 -40 c11 -38 14 -40 52 -40 35 0 40 3 34 18 -3 9
-33 86 -66 170 l-61 152 -38 0 -38 0 -48 -122z m104 -13 c5 -16 13 -38 17 -47
6 -16 1 -18 -35 -18 -36 0 -41 3 -35 18 3 9 12 34 18 54 13 40 19 39 35 -7z"/>
<path d="M776 309 c-79 -204 -77 -191 -31 -187 34 3 40 7 50 38 12 35 12 35
77 38 l65 3 17 -41 c14 -36 19 -40 51 -40 22 0 35 5 35 13 -1 6 -29 82 -63
167 l-63 155 -39 3 -40 3 -59 -152z m131 -45 c-3 -3 -21 -4 -40 -2 l-35 3 21
55 20 54 20 -52 c11 -29 17 -55 14 -58z"/>
<path d="M1072 293 l3 -168 33 -3 32 -3 0 65 0 66 55 0 c95 0 135 35 135 116
0 26 -8 44 -29 65 -29 28 -32 29 -130 29 l-101 0 2 -167z m172 91 c36 -35 0
-77 -61 -72 -37 3 -38 4 -41 46 l-3 42 45 0 c27 0 51 -6 60 -16z"/>
<path d="M1400 335 c0 -32 2 -35 30 -35 28 0 30 3 30 35 0 32 -2 35 -30 35
-28 0 -30 -3 -30 -35z"/>
<path d="M1550 334 c0 -34 1 -35 33 -32 28 3 32 7 35 36 3 31 2 32 -32 32 -35
0 -36 -1 -36 -36z"/>
<path d="M1400 155 c0 -32 2 -35 30 -35 28 0 30 3 30 35 0 32 -2 35 -30 35
-28 0 -30 -3 -30 -35z"/>
<path d="M1550 154 c0 -34 1 -35 33 -32 28 3 32 7 35 36 3 31 2 32 -32 32 -35
0 -36 -1 -36 -36z"/>
</g>
</svg>
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="100.000000pt" height="36.000000pt" viewBox="00 0 220.000000 56.000000"
preserveAspectRatio="xMidYMid meet">
<g transform="translate(0.000000,56.000000) scale(0.100000,-0.100000)"
fill="#ffffff" stroke="none">
<path d="M1900 480 c0 -28 -28 -37 -44 -15 -10 14 -16 15 -34 6 -24 -13 -28
-26 -11 -36 7 -5 4 -14 -7 -26 -12 -13 -21 -16 -28 -9 -15 15 -24 12 -37 -12
-9 -18 -8 -24 6 -34 22 -16 13 -44 -15 -44 -16 0 -20 -7 -20 -30 0 -23 4 -30
20 -30 28 0 36 -27 15 -50 -13 -15 -14 -23 -5 -39 9 -18 14 -19 31 -10 29 15
53 -5 38 -33 -8 -16 -7 -23 8 -34 23 -17 30 -17 37 1 3 8 15 15 26 15 15 0 20
-7 20 -25 0 -21 5 -25 30 -25 25 0 30 4 30 25 0 29 29 35 50 10 19 -23 54 -1
46 30 -8 29 17 53 38 36 11 -10 18 -7 30 11 16 22 15 24 -3 36 -26 18 -16 52
15 52 20 0 24 5 24 30 0 25 -4 30 -24 30 -31 0 -41 27 -16 42 15 10 17 16 8
32 -15 29 -14 29 -36 17 -28 -15 -51 12 -34 40 11 17 9 21 -13 31 -21 10 -27
8 -39 -7 -16 -23 -46 -13 -46 15 0 16 -7 20 -30 20 -23 0 -30 -4 -30 -20z
m115 -113 c61 -61 53 -154 -17 -197 -78 -49 -188 9 -188 100 0 82 47 129 129
130 36 0 49 -6 76 -33z"/>
<path d="M490 459 c-45 -18 -60 -39 -60 -86 0 -55 21 -76 97 -99 32 -10 64
-22 71 -27 18 -14 15 -45 -7 -57 -36 -19 -69 -12 -93 20 -16 23 -30 30 -55 30
-38 0 -38 0 -19 -44 22 -53 60 -76 125 -76 103 0 160 65 127 144 -16 38 -47
57 -122 76 -54 13 -71 32 -49 54 28 27 95 13 95 -19 0 -10 11 -15 34 -15 43 0
48 7 30 48 -22 52 -107 77 -174 51z"/>
<path d="M144 338 c-25 -68 -53 -138 -60 -157 -21 -52 -18 -61 21 -61 31 0 35
3 46 40 l12 40 67 0 67 0 12 -40 c11 -38 14 -40 52 -40 35 0 40 3 34 18 -3 9
-33 86 -66 170 l-61 152 -38 0 -38 0 -48 -122z m104 -13 c5 -16 13 -38 17 -47
6 -16 1 -18 -35 -18 -36 0 -41 3 -35 18 3 9 12 34 18 54 13 40 19 39 35 -7z"/>
<path d="M776 309 c-79 -204 -77 -191 -31 -187 34 3 40 7 50 38 12 35 12 35
77 38 l65 3 17 -41 c14 -36 19 -40 51 -40 22 0 35 5 35 13 -1 6 -29 82 -63
167 l-63 155 -39 3 -40 3 -59 -152z m131 -45 c-3 -3 -21 -4 -40 -2 l-35 3 21
55 20 54 20 -52 c11 -29 17 -55 14 -58z"/>
<path d="M1072 293 l3 -168 33 -3 32 -3 0 65 0 66 55 0 c95 0 135 35 135 116
0 26 -8 44 -29 65 -29 28 -32 29 -130 29 l-101 0 2 -167z m172 91 c36 -35 0
-77 -61 -72 -37 3 -38 4 -41 46 l-3 42 45 0 c27 0 51 -6 60 -16z"/>
<path d="M1400 335 c0 -32 2 -35 30 -35 28 0 30 3 30 35 0 32 -2 35 -30 35
-28 0 -30 -3 -30 -35z"/>
<path d="M1550 334 c0 -34 1 -35 33 -32 28 3 32 7 35 36 3 31 2 32 -32 32 -35
0 -36 -1 -36 -36z"/>
<path d="M1400 155 c0 -32 2 -35 30 -35 28 0 30 3 30 35 0 32 -2 35 -30 35
-28 0 -30 -3 -30 -35z"/>
<path d="M1550 154 c0 -34 1 -35 33 -32 28 3 32 7 35 36 3 31 2 32 -32 32 -35
0 -36 -1 -36 -36z"/>
</g>
</svg>
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment