This file is indexed.

/usr/lib/lv2/midimap.lv2/midimap.ttl is in x42-plugins 20170428-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
@prefix atom:  <http://lv2plug.in/ns/ext/atom#> .
@prefix doap:  <http://usefulinc.com/ns/doap#> .
@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix lv2:   <http://lv2plug.in/ns/lv2core#> .
@prefix midi:  <http://lv2plug.in/ns/ext/midi#> .
@prefix patch: <http://lv2plug.in/ns/ext/patch#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
@prefix state: <http://lv2plug.in/ns/ext/state#> .
@prefix urid:  <http://lv2plug.in/ns/ext/urid#> .
@prefix work:  <http://lv2plug.in/ns/ext/worker#> .

<http://gareus.org/rgareus#me>
	a foaf:Person;
	foaf:name "Robin Gareus";
	foaf:mbox <mailto:robin@gareus.org>;
	foaf:homepage <http://gareus.org/> .

<http://gareus.org/oss/lv2/midimap#cfgfile>
	a lv2:Parameter;
	rdfs:label "MidiMap Config File";
	rdfs:range atom:Path .

<http://gareus.org/oss/lv2/midimap>
	a lv2:Plugin, doap:Project, lv2:UtilityPlugin;
	doap:license <http://usefulinc.com/doap/licenses/gpl>;
	doap:maintainer <http://gareus.org/rgareus#me>;
	doap:name "Midi Event Map";
	lv2:microVersion 0 ;lv2:minorVersion 768 ;
	lv2:optionalFeature lv2:hardRTCapable;
	lv2:requiredFeature urid:map, work:schedule;
	lv2:extensionData work:interface, state:interface;

	patch:writable <http://gareus.org/oss/lv2/midimap#cfgfile>;

	lv2:port [
		a atom:AtomPort, lv2:InputPort;
		atom:bufferType atom:Sequence;
		atom:supports midi:MidiEvent, patch:Message;
		lv2:index 0;
		lv2:symbol "midiin";
		lv2:name "MIDI In";
	] , [
		a atom:AtomPort, lv2:OutputPort;
		atom:bufferType atom:Sequence;
		atom:supports midi:MidiEvent, patch:Message;
		lv2:index 1;
		lv2:symbol "midiout";
		lv2:name "MIDI Out";
	] , [
		a lv2:OutputPort, lv2:ControlPort;
		lv2:index 2;
		lv2:symbol "rulecount";
		lv2:name "Active Rule Count";
		lv2:minimum 0;
# there is no upper limit, this is just an indication
		lv2:maximum 512;
		lv2:portProperty lv2:integer;
		rdfs:comment "Count of filter rules that are currently evaluated";
	];
	rdfs:comment "A flexible MIDI event mapper plugin using a rule-based lookup-table loaded from a config file: http://x42-plugins.com/x42/x42-midimap";
	.