From 56037f262c669df160a770aa54f9e35ac3f945ca Mon Sep 17 00:00:00 2001 From: Svjatoslav Agejenko Date: Mon, 2 Jul 2018 00:03:50 +0300 Subject: [PATCH] Fixed broken links --- doc/index.html | 437 ++++++++++++++++++++++-------------------- doc/index.org | 51 ++--- tools/commit and push | 11 ++ tools/update web site | 8 +- 4 files changed, 280 insertions(+), 227 deletions(-) create mode 100755 tools/commit and push diff --git a/doc/index.html b/doc/index.html index 6d320c6..ab17bf9 100644 --- a/doc/index.html +++ b/doc/index.html @@ -2,14 +2,14 @@ Fifth - virtual machine, operating system, programming language - + - - -" + + + ------ -- [[http://www2.svjatoslav.eu/gitweb/?p=fifth.git;a=snapshot;h=HEAD;sf=tgz][download latest snapshot]] - -- This program is free software; you can redistribute it and/or modify it under - the terms of version 3 of the [[https://www.gnu.org/licenses/lgpl.html][GNU Lesser General Public License]] or later as - published by the Free Software Foundation. +* General +- This program is free software: you can redistribute it and/or modify + it under the terms of the [[https://www.gnu.org/licenses/lgpl.html][GNU Lesser General Public License]] as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. - Program author: - Svjatoslav Agejenko - Homepage: http://svjatoslav.eu - Email: mailto://svjatoslav@svjatoslav.eu -- [[http://www.svjatoslav.eu/programs.jsp][other applications hosted at svjatoslav.eu]] +- [[http://www.svjatoslav.eu/projects/][Other software projects hosted at svjatoslav.eu]] -* (document settings) :noexport: -** use dark style for TWBS-HTML exporter -#+HTML_HEAD: -#+HTML_HEAD: -#+HTML_HEAD: " -#+HTML_HEAD: +** Source code +- [[http://www2.svjatoslav.eu/gitweb/?p=fifth.git;a=snapshot;h=HEAD;sf=tgz][Download latest snapshot in TAR GZ format]] + +- [[http://www2.svjatoslav.eu/gitweb/?p=fifth.git;a=summary][Browse Git repository online]] + +- Clone Git repository using command: + : git clone http://www2.svjatoslav.eu/git/fifth.git -* !Project deprecated! +* Warning Current implementation does not support object oriented programming. While working on Fifth I got lots of cool new ideas that require reimplementation of everything. Currently I try to implement those new ideas in the project called -[[http://www2.svjatoslav.eu/gitbrowse/sixth/doc/index.html][Sixth]] +[[http://www3.svjatoslav.eu/projects/sixth/][Sixth]] System is built many years ago when I was still using DOS as a primary -operating system. +operating system and not updated since. * Introduction Fifth is programming lanquage & operating system, running on [[emulator.html][virtual CPU]], with custom instruction set. It is much like Charles Chunk @@ -56,9 +62,10 @@ inspired created my own system. * Installation Just unpack all files, witout altering original directory structure, -somewhere in your hard disk. For example: C:\MISC\FIFTH\.... To run -fifth you need minimally just 2 files. emulator itself ( EMULATOR.EXE -or EMULATOR.COM ), and virtual disk file ( DISK.RAW ). +somewhere in your hard disk. For example: +: C:\MISC\FIFTH\.... +To run fifth you need minimally just 2 files. emulator itself ( +EMULATOR.EXE or EMULATOR.COM ), and virtual disk file ( DISK.RAW ). Read more about [[files.txt][distribution directory layout]] * Fifth distribution directory tree description diff --git a/tools/commit and push b/tools/commit and push new file mode 100755 index 0000000..057b511 --- /dev/null +++ b/tools/commit and push @@ -0,0 +1,11 @@ +#!/bin/bash +cd "${0%/*}"; if [ "$1" != "T" ]; then gnome-terminal -e "'$0' T"; exit; fi; + +cd .. + +cola +git push + +echo "" +echo "Press ENTER to close this window." +read diff --git a/tools/update web site b/tools/update web site index c2cd502..20a52bc 100755 --- a/tools/update web site +++ b/tools/update web site @@ -1,7 +1,11 @@ #!/bin/bash - -cd "${0%/*}" +cd "${0%/*}"; if [ "$1" != "T" ]; then gnome-terminal -e "'$0' T"; exit; fi; cd .. rsync -avz --delete -e 'ssh -p 10006' doc/ n0@www3.svjatoslav.eu:/mnt/big/projects/fifth/ + + +echo "" +echo "Press ENTER to close this window." +read -- 2.20.1