├── .gitattributes ├── .gitignore ├── Readme.md ├── menubox.png ├── menubox.sh ├── settings.py ├── webpage.png ├── webserver-install.sh ├── webserver.py ├── webserver.sh ├── webserver3.py └── www ├── Readme.html ├── calculator.zip ├── images.zip └── webserver.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/Readme.md -------------------------------------------------------------------------------- /menubox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/menubox.png -------------------------------------------------------------------------------- /menubox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/menubox.sh -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/settings.py -------------------------------------------------------------------------------- /webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/webpage.png -------------------------------------------------------------------------------- /webserver-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/webserver-install.sh -------------------------------------------------------------------------------- /webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/webserver.py -------------------------------------------------------------------------------- /webserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/webserver.sh -------------------------------------------------------------------------------- /webserver3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/webserver3.py -------------------------------------------------------------------------------- /www/Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/www/Readme.html -------------------------------------------------------------------------------- /www/calculator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/www/calculator.zip -------------------------------------------------------------------------------- /www/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/www/images.zip -------------------------------------------------------------------------------- /www/webserver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pageauc/webserver/HEAD/www/webserver.txt --------------------------------------------------------------------------------