This file is indexed.

/usr/include/juffed/AppInfo.nix.h is in juffed-dev 0.10-85-g5ba17f9-17.

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
/*
This file was automatically generated by configure script.
All the changes you made will be lost after the next run
of configure script.
*/

#ifndef _APP_INFO_NIX_H_
#define _APP_INFO_NIX_H_

#include <QtCore/QDir>
#include <QtCore/QLocale>
#include <QtCore/QString>


class AppInfo {
public:
    static QString name()            { return "JuffEd"; }
    static QString organization()    { return "Juff"; }
    static QString version()         { return "0.10"; }

    static QString dataDirPath()     { return "/usr/share/juffed"; }
    static QString pluginsPath()     { return libPath() + "/" + name().toLower() + "/plugins"; }

    static QString configDirPath()   { return QDir::homePath() + "/.config/" + organization().toLower(); }
    static QString configFile()      { return configDirPath() + "/" + name().toLower() + ".conf"; }
    static QString translationPath() { return dataDirPath() + "/l10n"; }
    static QString logFile()         { return configDirPath() + "/juffed.log"; }
    static QString defaultPrjPath()  { return configDirPath() + "/empty_project.xml"; }

private:
    static QString libPath()         { return "/usr/lib/x86_64-linux-gnu"; }
};

#endif