cgrinds / dripdripdrop

A simple, fast, Tiny Tiny RSS reader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Referenced files missing

kswan opened this issue · comments

"NetworkError: 404 Not Found - /ddd/assets/js/templates.js"
"NetworkError: 404 Not Found - /ddd/assets/js/libs-web.js"

These files are referenced in index.html, but do not exist in the assets/js directory.

I assume this is why I only see a blank gray screen.

Are you running from git or via the deployed tar?
The way it works currently is those files are only used during dev. The production index.html doesn't use them at all.

There are 2 options:

  1. Use the latest tar in dist.
  2. Use the git version but make sure you do the steps outlined here https://github.com/cgrinds/dripdripdrop#development

I downloaded the zip file here: https://github.com/cgrinds/dripdripdrop/archive/master.zip.

The index.html in this zip file references these two files and when I load the page I only see a blank page. The console (in Firebug) shows the two errors above as well as:
TypeError: dddns.TF is not a function
dddns.TF(Hogan.Template);
from ddd.js (line 7)

If the templates.js and libs-web.js are only used for development, they shouldn't be the cause of the blank page.

Any idea what is causing the blank page?

That zip file is the same as the git version which means it's a dev version that won't work unless you go through the steps outlined here https://github.com/cgrinds/dripdripdrop#development.

Sounds like you want the production version not the development version.
Grab the latest version from here instead https://github.com/cgrinds/dripdripdrop/tree/master/dist

That fixed it. Thank you.

No problem. Install is annoying. I updated the readme to try to make it clearer