X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=README;h=edbdb064ce0a6919299a44d41d94f71e0ac7dabb;hb=56e5300f95d21d01a97073147263f865fe8145c0;hp=a6d72caad8c1295a56fd236b2a31a1f8eb356eec;hpb=2c8d9972340cb72f8eb5c0eb1385eb32ae657144;p=MojoFacets.git diff --git a/README b/README index a6d72ca..edbdb06 100644 --- a/README +++ b/README @@ -8,10 +8,37 @@ Put JSON file from Simile Exhibit project in data/ with extension .js or .json Alternative format is pipe (|) separated text files with extension .txt First column is always header with field names Multi-line values should be wrapped in ^multi-line-text^ -Multiple values for one field are supported for: number, number + +If you save bounch of html files with table in directory with .html extension, they will +we all read as single data set, allowing easy analysys of search results, for example. Start with: LANG=hr_HR.utf8 ./script/mojo_facets daemon --reload + +Data replication: + + # master + ./script/mojo_facets daemon --listen 'http://*:4444' --reload + + # slave + MASTER=http://localhost:4444 ./script/mojo_facets daemon --reload + + +Turning actions into changes: + +There are two kinds of audit log in MojoFacets: + +1. actions stored in /tmp/actions are clicks on user interface with parameters + +2. changes are more structured, including old value and unique values from + edit of one value in dataset + +If you want to create changes which can be applied again on original dataset or +any other dataset which has same unique values you can use helper script: + + $ ./script/actions-to-changes /data/mojo_facets/* + +