Your comments

So everything above jq isn't an error, that's curl grabbing comic data.

Not sure about the last sed line, but adding '' made the other sed errors (actual errors) go away. That last error confuses me, since there shouldn't be an 'a' anywhere.


The jq responses are tough to diagnose, I've never really used it before now.

Ah, that's fun. So I haven't messed with a mac in a bit, but I think sed is the issue here.

http://stackoverflow.com/questions/4247068/sed-command-with-i-option-failing-on-mac-but-works-on-linux

Sounds like any line with sed needs an extra input. So change "sed -i whaterver" to "sed -i '' whatever". That's 2 single quotes after -i.


As for jq, maybe try this mac build https://github.com/stedolan/jq/releases/download/jq-1.5/jq-osx-amd64, in the same folder renamed to just jq.

Sed is probably the culprit here though, so my guess is that'll make it do slightly more... hopefully work.



If that's the exact command you used, the issue is case. It's looking for cvinfo, not CVInfo.

Oh, dur... because I forgot to update that one. :)

I updated the extras.zip with the correct files.


One more quick update. I was trying to figure an easy way to import accounts made with the register page.. Tampermonkey!


Update your theme (it adds some stuff to webadmin.css, and adds a new webadmin.js), install Tampermonkey for your browser, and import this script. https://gist.github.com/scooterpsu/15d86b35778ce9249a2e3cb22343702a#file-ubooquity-attach-webadmin-js

It'll add this box to the security page that you can just paste registration strings into. I think I'm done for now... maybe. :)

Haha, now you feel my pain! So many of these features lead to reorganizing something, or manually editing something else. Like they say, misery loves company. :) That's actually where the PageBuilder scripts came from, I got tired of manually editing things.

Glad you like it!

so if you open folder-info.html in a text editor (I recommend notepad++), you should see multiple addFeatured commands. One is already set to Marvel. " addFeatured("Marvel");"


If these aren't loading, it could be a delay issue. under those there is

}, 0);

That 0 is a delay before it runs the commands. My setup worked with no delay, but yours may need some. The number is in milliseconds, so maybe try 100.

you need the cvinfo file on the end of that path, try this:


PageBuilder.sh /Users/Telecart/Downloads/Ubooquity/PageBuilder/DC\ Comics/Detective\ Comics\ \(Vol.\ 2\)/cvinfo

Release day! The link in the first post has the new version. Be sure to read the readme, there's a couple changes in there.

There's still an issue with the file browser and long filenames running behind icons below it. I'm not sure if that's going to be something I can fix.


The link above also has the PageBuilder script that builds the series pages, but I haven't added any readme yet. If you plan on using this, you need to set your own comicvine api in PageBuilder.sh. It needing linux, I'm banking on some pre-existing knowledge for using this.


Really proud of how this came together. Enjoy!

Good news! The logos and stuff were still cached on one computer, and the rest was either recoverable or fairly easy to recreate. The file browser still needs some polish, but it's mostly back to where it was.


Also, because I wiped my user list, this lead to another addition: A registration page!


This uses jquery to pull the serversalt from the main login, and outputs a username:password hash to the lower box. This can then be copied to clipboard via the button, and sent to the person hosting (in this case, me). This way my friends don't have to tell me their passwords, and I can copy/paste them into the preferences.xml. I'm hoping to get this saving into a file, but this works for now.