Open pengchuan-lin-bp opened 1 year ago
Please add a Pullrequest for 2 and one for 3 so i can easier review it and one to add to Contributors in README.md. Sorry not having time for deeper look at 1 these days.
All three pull requests are created. No worries for 1. Since it's NFS specific, I simply wrote it down to help anyone that might need this information.
Thank you for your help!
Hello,
Here are some other minor issues that I encountered while trying out OSS and fixes I used for them.
pyinotify
, which doesn't work well with NFS (network file system). I modifiedsrc/open-semantic-etl/src/opensemanticetl/etl_filemonitoring.py
to use polling observer fromwatchdog
instead, but the drawback is that it will no longer be instantaneous anymore without polling constantly. I also needed to listwatchdog
as a requirement insrc/open-semantic-etl/src/opensemanticetl/requirements.txt
.max-width
configured by.tooltip
insrc/solr-php-ui/src/css/foundation.css
. I addedword-break: break-all;
so that the tooltip box displays the entire string without any cut off.Newest
orOldest
is chosen. I wrapped the last option$sort_other
insrc/solr-php-ui/src/templates/select_sort.php
with<?php if(false): ?>
and<?php endif; ?>
so that it won't show up anymore.I hope this can be of help!