Welcome to mirror list, hosted at ThFree Co, Russian Federation.

info.xml « appinfo - github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a2c5d00cbd91ddd4654239433228c818843744d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0"?>
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
	<id>nextant</id>
	<name>Nextant</name>
	<summary>Navigate through your cloud using Solr</summary>
	<description>
	     Navigate through your cloud using Solr


**Nextant** performs fast and concise _Full-Text Search_ within:

- your own files,
- shared files,
- external storage,
- bookmarks


### Recognized file format: 
- plain text, 
- rtf,
- pdf, 
- html, 
- openoffice, 
- microsoft office, 
- image JPEG and TIFF (will requiert Tesseract installed) 
- pdf with no text layer (will also requiert Tesseract) _[work in progress]_
 


## Installation

- [You first need to install a Solr servlet](https://github.com/nextcloud/nextant/wiki)
- Download the .zip from the appstore, unzip and place this app in **nextcloud/apps/** (or clone the github and build the app yourself)
- Enable the app in the app list,
- Edit the settings in the administration page.
- Extract the current files from your cloud using the **./occ nextant:index** command 
- Have a look to this [explanation on how Nextant works](https://github.com/nextcloud/nextant/wiki/Extracting,-Live-Update)
- _(Optional)_ [Installing Tesseract](https://github.com/tesseract-ocr/tesseract/wiki) ([Optical Character Recognition](https://en.wikipedia.org/wiki/Optical_character_recognition) (OCR) Engine) will allow Nextant to extract text from images and pdfs without text layer.


	</description>
	<version>1.0.4</version>
	<licence>agpl</licence>
	<author>Maxence Lange</author>
	<types>
		<filesystem />
	</types>
	<documentation>
		<admin>https://github.com/nextcloud/nextant/wiki</admin>
	</documentation>
	<category>tools</category>
	<category>files</category>
	<website>https://github.com/nextcloud/nextant/wiki</website>
	<bugs>https://github.com/nextcloud/nextant/issues</bugs>
	<repository>https://github.com/nextcloud/nextant/</repository>
	<screenshot>https://raw.githubusercontent.com/nextcloud/nextant/master/screenshots/displayResult.jpg</screenshot>
	<screenshot>https://raw.githubusercontent.com/nextcloud/nextant/master/screenshots/admin.jpg</screenshot>
	<dependencies>
		<owncloud min-version="9.0" max-version="9.2" />
		<nextcloud min-version="9" max-version="12" />
	</dependencies>
	<background-jobs>
		<job>OCA\Nextant\Cron\BackgroundIndex</job>
	</background-jobs>
	<repair-steps>
		<post-migration>
			<step>OCA\Nextant\Migration\NextantUpgrade</step>
		</post-migration>
	</repair-steps>
</info>