Videotex BBS - a combination of Videotex and BBS technologies. This project has been moved into clrghouz.
This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Deon George 4504818e25 Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
app Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
bootstrap Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
config Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
database Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
public Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
storage Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
.env.example Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
.gitattributes Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
.gitignore Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
README.md Create README.md 2018-11-03 13:05:33 +00:00
artisan Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
composer.json Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
composer.lock Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
package.json Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
phpunit.xml Re-engineered with Laravel 2018-12-02 01:51:31 +04:00
server.php Re-engineered with Laravel 2018-12-02 01:51:31 +04:00

README.md

viewdatahost

A simple viewdata service host

This is a viewdata host program that attempts to closely emulate the operation of the original GPO/BT Prestel service.
This is so that original period third-party programs and hardware can be used again.

Code is written in php, because it was easiest for me to get up and running quickly using libraries I already had. No comments on this choice of language please.

You might find https://github.com/irrelevantdotcom/asterisk-Softmodem useful for creating a dial-up port for this.

Requires vv.class.php - viewdata viewer library. https://github.com/irrelevantdotcom/viewdataviewer

Requires vvdatabase.class.php - viewdata database library https://github.com/irrelevantdotcom/vvdb

Requires you create a config/config.php file -

$config = array();

$config['database'] = 'vtext_pages'; $config['dbserver'] = 'localhost'; $config['dbuser'] = 'username'; $config['dbpass'] = 'password';

$config['service_id'] = 1; // service and varient within database $config['varient_id'] = 1;

$config['port'] = 6502;

Current status

Browsing works fine. Frame types "t"erminate and "i"nformation(default) work as expected.

No Editor - you will need to add frames to the database using other methods No Users - default user parameters are used pending login process being writen Response Frames - basis is done, but do not work correctly yet.

Roadmap

create (working) routines for accepting user input.

  • used for everything from response frames to editor

implement modular extensions for other frame types and active pages

  • allows for

    implement login process module

    implement user management

    implement editor

    other functions, see e.g. featues of Autonomic Host (Gnome at Home) functions??