Skip to content

Commit

Permalink
Add rc1 docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wehimwich committed Oct 15, 2023
1 parent 5fe7dfa commit 7e2e022
Show file tree
Hide file tree
Showing 97 changed files with 111,925 additions and 0 deletions.
Binary file added rc1/.DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions rc1/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#
*.html
32 changes: 32 additions & 0 deletions rc1/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#
# Copyright (c) 2020, 2022 NVI, Inc.
#
# This file is part of FSL10 Linux distribution.
# (see http://github.com/nvi-inc/fsl10).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#

DOC_DIR = releases misc

.PHONY: all $(DOC_DIR)

all: index.html $(DOC_DIR)

$(DOC_DIR):
$(MAKE) -C $@

%.html: %.adoc
asciidoctor $^

Binary file added rc1/drafts/.DS_Store
Binary file not shown.
Binary file added rc1/drafts/releases/.DS_Store
Binary file not shown.
Binary file added rc1/drafts/releases/10/.DS_Store
Binary file not shown.
32 changes: 32 additions & 0 deletions rc1/index.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//
// Copyright (c) 2020, 2022, 2023 NVI, Inc.
//
// This file is part of the FSL10 Linux distribution.
// (see http://github.com/nvi-inc/fsl10).
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

= Index of fs/
Version 0.9 - August 2023

== Direct Links

<<releases/10/2/10.2.adoc#,FS 10.2>> Update Notes (latest release)

== Links to sub-directories

<<releases/index.adoc#,Release>> sub-directories

<<misc/index.adoc#,Miscellaneous>> documents
474 changes: 474 additions & 0 deletions rc1/index.html

Large diffs are not rendered by default.

37 changes: 37 additions & 0 deletions rc1/making_gh-pages.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
//
// Copyright (c) 2020, 2022, 2023 NVI, Inc.
//
// This file is part of the FSL10 Linux distribution.
// (see http://github.com/nvi-inc/fsl10).
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//

Requires asciidoctor

Source in docs/

To update when commit is finished:

git branch -f gh-pages <branch>
<branch> is whatever is to be used, usually main
git checkout gh-pages
make
git add -f $(find . -name \*.html)
git commit -m Update
git push --force

View at:

https://nvi-inc.github.io/fs/
Loading

0 comments on commit 7e2e022

Please sign in to comment.