wiki/doc/releases-new-pages.md

76 lines
1.7 KiB
Markdown
Raw Normal View History

2020-03-07 18:55:43 +00:00
---
title: Releases pages creation documentation
description:
published: true
2020-04-10 22:31:48 +01:00
date: 2020-04-10T19:38:31.399Z
2020-04-10 20:27:49 +01:00
tags:
2020-03-07 18:55:43 +00:00
---
# Releases pages creation documentation
For every new release, to be created:
## Final release (GA)
### main page 'Overview'
Path pattern:
`/releases/omlxNN`
example: /releases/omlx42
### subpages
#### 'What's New?'
Path pattern:
2020-03-07 20:50:57 +00:00
`/releases/omlxNN/new`
example: /releases/omlx42/new
2020-03-07 18:55:43 +00:00
#### 'Notes'
Path pattern:
2020-03-07 20:50:57 +00:00
`/releases/omlxNN/notes`
example: /releases/omlx42/notes
2020-03-07 18:55:43 +00:00
#### 'Errata'
Path pattern:
2020-03-07 20:50:57 +00:00
`/releases/omlxNN/errata`
example: /releases/omlx42/errata
2020-03-07 18:55:43 +00:00
## Development releases (Alpha, Beta, RC)
### subpages
Path pattern:
2020-03-07 20:50:57 +00:00
`/releases/omlxNN/alpha`
`/releases/omlxNN/beta`
`/releases/omlxNN/rc`
2020-03-07 18:55:43 +00:00
2020-03-07 20:50:57 +00:00
`/releases/omlxNN/alpha/notes`
`/releases/omlxNN/beta/notes`
`/releases/omlxNN/rc/notes`
2020-03-07 18:55:43 +00:00
2020-03-07 20:50:57 +00:00
`/releases/omlxNN/alpha/errata`
`/releases/omlxNN/beta/errata`
`/releases/omlxNN/rc/errata`
2020-03-07 18:55:43 +00:00
2020-03-07 20:50:57 +00:00
example: /releases/omlx42/alpha
example: /releases/omlx42/beta
example: /releases/omlx42/rc
2020-03-07 18:55:43 +00:00
2020-03-07 20:50:57 +00:00
example: /releases/omlx42/alpha/notes
example: /releases/omlx42/beta/notes
example: /releases/omlx42/rc/notes
2020-03-07 18:55:43 +00:00
2020-03-07 20:50:57 +00:00
example: /releases/omlx42/alpha/errata
example: /releases/omlx42/beta/errata
example: /releases/omlx42/rc/errata
2020-03-07 18:55:43 +00:00
2020-03-07 19:17:44 +00:00
## Addendum - Paths
2020-03-07 20:50:57 +00:00
Paths must be lowercase. Use dashed to separate the words.
2020-03-07 18:55:43 +00:00
No punctuation allowed except dashes/hyphens and/or underscores.
2020-03-07 19:08:20 +00:00
Paths cannot contain the following characters:
-Space (use dashes instead)
-Period (reserved for file extensions)
-Unsafe URL characters (such as punctuation marks, quotes, math symbols, etc.)
2020-03-07 19:17:44 +00:00
As we often have to write release version number (4.0, 4.1, 4.2, etc.), while creating new pages just convert it into `40`, `41`, `42`, etc. by omitting the dot in the path.