1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-25 15:41:39 +00:00

Force loading of corrupted PDF

This commit is contained in:
jendib
2013-08-18 14:11:08 +02:00
parent 77c5a10aba
commit 2c7083aa43
5 changed files with 9 additions and 9 deletions

View File

@@ -148,21 +148,21 @@ public class AppResource extends BaseResource {
}
/**
* OCR-ize all files again.
* Extract content from all files again.
*
* @return Response
* @throws JSONException
*/
@POST
@Path("batch/ocr")
@Path("batch/extract")
@Produces(MediaType.APPLICATION_JSON)
public Response batchOcr() throws JSONException {
public Response batchExtract() throws JSONException {
if (!authenticate()) {
throw new ForbiddenClientException();
}
checkBaseFunction(BaseFunction.ADMIN);
// Raise a OCR file event
// Raise an extract file content event
AppContext.getInstance().getAsyncEventBus().post(new ExtractFileAsyncEvent());
JSONObject response = new JSONObject();

View File

@@ -33,7 +33,7 @@
<div class="control-group">
<label class="control-label" for="inputFiles">New files</label>
<div class="controls">
<file class="input-block-level" id="inputFiles" multiple="multiple" ng-model="newFiles" accept="image/png,image/jpg,image/jpeg,image/gif" />
<file class="input-block-level" id="inputFiles" multiple="multiple" ng-model="newFiles" accept="image/png,image/jpg,image/jpeg,image/gif,application/pdf" />
</div>
</div>
<div class="control-group">