RSS Git Download  Clone
  bin extend function to METAR's using checkwx api * fix broken path to jquery - was causing inappropriate call to openwethermap api looking for jquery/jquery.min.js as city/country pair * tidy up documentation 2 years, 8 months ago
  public extend function to METAR's using checkwx api * fix broken path to jquery - was causing inappropriate call to openwethermap api looking for jquery/jquery.min.js as city/country pair * tidy up documentation 2 years, 8 months ago
  .gitignore 91B extend function to METAR's using checkwx api * fix broken path to jquery - was causing inappropriate call to openwethermap api looking for jquery/jquery.min.js as city/country pair * tidy up documentation 2 years, 8 months ago
  404.tt 160B working app 4 years, 8 months ago
  README.txt 2kB improve METAR observation date format display using date manip plugin; update documentation 2 years, 8 months ago
  config.yml 313B extend function to METAR's using checkwx api * fix broken path to jquery - was causing inappropriate call to openwethermap api looking for jquery/jquery.min.js as city/country pair * tidy up documentation 2 years, 8 months ago
  error.tt 113B working app 4 years, 8 months ago
  metar.tt 4kB improve METAR observation date format display using date manip plugin; update documentation 2 years, 8 months ago
  weather.pm 3kB extend function to METAR's using checkwx api * fix broken path to jquery - was causing inappropriate call to openwethermap api looking for jquery/jquery.min.js as city/country pair * tidy up documentation 2 years, 8 months ago
  weather.tt 6kB extend function to METAR's using checkwx api * fix broken path to jquery - was causing inappropriate call to openwethermap api looking for jquery/jquery.min.js as city/country pair * tidy up documentation 2 years, 8 months ago
  README.txt
#-------------------------------------------------------------------------------------- # apache2/sites-available/vhosts.conf: # discontinued - see weather.volvox.online config <virtualHost *:80> ServerName openweather.mine.nu # ServerAlias FastCgiServer /home/raj/apps/weather/public/dispatch.fcgi DocumentRoot /home/raj/apps/weather/public <Directory "/home/raj/apps/weather/public"> AllowOverride None Options +Indexes +ExecCGI -MultiViews +SymLinksIfOwnerMatch # AddHandler cgi-script .cgi # for .cgi AddHandler fastcgi-script .fcgi # Apache 2.4 Require all granted </Directory> RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f # RewriteRule ^(.*)$ /dispatch.cgi$1 [QSA,L] RewriteRule ^(.*)$ /dispatch.fcgi$1 [QSA,L] ErrorLog /var/log/apache2/weather.error.log CustomLog /var/log/apache2/weather.access.log combined </VirtualHost> #-------------------------------------------------------------------------------------- # apache2/websites/weather.volvox.online ServerName weather.volvox.online DocumentRoot "/home/raj/apps/weather/public" <Directory "/home/raj/apps/weather/public"> AllowOverride None Options +Indexes +ExecCGI -MultiViews +SymLinksIfOwnerMatch # AddHandler fastcgi-script .fcgi AddHandler fcgid-script .fcgi # Apache 2.4 Require all granted </Directory> ErrorLog /var/log/apache2/weather.error.log CustomLog /var/log/apache2/weather.access.log combined RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f # RewriteRule ^(.*)$ /dispatch.cgi$1 [QSA,L] RewriteRule ^(.*)$ /dispatch.fcgi$1 [QSA,L]