1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-09-20 17:39:44 +00:00
Commit graph

11 commits

Author SHA1 Message Date
610cd418ca
*: fixes to be working on new abstractions
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-04-07 13:29:07 -04:00
b80d34f423
dbutil: abstract out the last mongo type
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-04-07 11:56:05 -04:00
efa8ac6511
dbutil: abstract out mongo Handler
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-04-07 11:40:57 -04:00
Vincent Batts
ea4f3c65e9 the All listing is broken 2013-11-07 14:28:54 -05:00
9b2c342375 cleaned up the dbutil initialization 2013-10-03 23:26:01 -04:00
cebd3acc3c all gfs calls are inside dbutil now 2013-10-03 22:49:57 -04:00
c737976121 moar pulling back of database calls from the server 2013-10-03 17:04:37 -04:00
Vincent Batts
d4824ad6a2 * more logging on upload failures.
* adding an error page
* trying to fix the tag cloud
2013-09-10 14:51:44 -04:00
e3548407b2 now we have an /ext/ listing 2013-08-06 11:00:57 -04:00
5eab319c6c now images are lower cased, and searching for names is insensitive.
for your mongo db set, run:
db.fs.files.find().forEach(
  function(e) {
    e.filename = e.filename.toLowerCase();
    db.fs.files.save(e);
  }
)
2013-08-06 10:37:58 -04:00
83cf991ef9 seperated out the db utilities. Also adding link for "other" views. 2013-08-05 23:51:26 -04:00