mirror of
https://github.com/YACReader/yacreader
synced 2025-07-14 02:54:46 -04:00
Add .gitattributes rules for text and binary handling
This commit is contained in:
@ -1,68 +1,68 @@
|
||||
/**
|
||||
@file
|
||||
@author Stefan Frings
|
||||
*/
|
||||
|
||||
#ifndef STATIC_H
|
||||
#define STATIC_H
|
||||
|
||||
#include <QString>
|
||||
#include "templatecache.h"
|
||||
#include "httpsessionstore.h"
|
||||
#include "staticfilecontroller.h"
|
||||
|
||||
#include "yacreader_http_session_store.h"
|
||||
|
||||
/**
|
||||
This class contains some static resources that are used by the application.
|
||||
*/
|
||||
|
||||
class Static
|
||||
{
|
||||
public:
|
||||
|
||||
/**
|
||||
Search the main config file and return its full path.
|
||||
On the first call, the INI file gets searched. If not found,
|
||||
the application aborts with an error message.
|
||||
<p>
|
||||
The filename is the applications name plus the ending ".ini". It is searched
|
||||
in the following directories:
|
||||
|
||||
- Same directory as the applications executable file
|
||||
- In ../etc relative to the applications executable file
|
||||
- In ../../etc relative to the applications executable file
|
||||
- In /etc/xdg/{organisation name} on the root drive
|
||||
- In /etc/opt on the root drive
|
||||
- In /etc on the root drive
|
||||
|
||||
*/
|
||||
static QString getConfigFileName();
|
||||
|
||||
/**
|
||||
Gets the directory where the main config file is located.
|
||||
On the first call, the INI file gets searched. If not found,
|
||||
the application aborts with an error message.
|
||||
@see getConfigFileName()
|
||||
*/
|
||||
static QString getConfigDir();
|
||||
|
||||
/** Cache for template files */
|
||||
static TemplateLoader* templateLoader;
|
||||
|
||||
/** Storage for session cookies */
|
||||
static HttpSessionStore* sessionStore;
|
||||
|
||||
static YACReaderHttpSessionStore* yacreaderSessionStore;
|
||||
|
||||
/** Controller for static files */
|
||||
static StaticFileController* staticFileController;
|
||||
|
||||
private:
|
||||
|
||||
/** Directory of the main config file */
|
||||
static QString configDir;
|
||||
|
||||
};
|
||||
|
||||
#endif // STATIC_H
|
||||
/**
|
||||
@file
|
||||
@author Stefan Frings
|
||||
*/
|
||||
|
||||
#ifndef STATIC_H
|
||||
#define STATIC_H
|
||||
|
||||
#include <QString>
|
||||
#include "templatecache.h"
|
||||
#include "httpsessionstore.h"
|
||||
#include "staticfilecontroller.h"
|
||||
|
||||
#include "yacreader_http_session_store.h"
|
||||
|
||||
/**
|
||||
This class contains some static resources that are used by the application.
|
||||
*/
|
||||
|
||||
class Static
|
||||
{
|
||||
public:
|
||||
|
||||
/**
|
||||
Search the main config file and return its full path.
|
||||
On the first call, the INI file gets searched. If not found,
|
||||
the application aborts with an error message.
|
||||
<p>
|
||||
The filename is the applications name plus the ending ".ini". It is searched
|
||||
in the following directories:
|
||||
|
||||
- Same directory as the applications executable file
|
||||
- In ../etc relative to the applications executable file
|
||||
- In ../../etc relative to the applications executable file
|
||||
- In /etc/xdg/{organisation name} on the root drive
|
||||
- In /etc/opt on the root drive
|
||||
- In /etc on the root drive
|
||||
|
||||
*/
|
||||
static QString getConfigFileName();
|
||||
|
||||
/**
|
||||
Gets the directory where the main config file is located.
|
||||
On the first call, the INI file gets searched. If not found,
|
||||
the application aborts with an error message.
|
||||
@see getConfigFileName()
|
||||
*/
|
||||
static QString getConfigDir();
|
||||
|
||||
/** Cache for template files */
|
||||
static TemplateLoader* templateLoader;
|
||||
|
||||
/** Storage for session cookies */
|
||||
static HttpSessionStore* sessionStore;
|
||||
|
||||
static YACReaderHttpSessionStore* yacreaderSessionStore;
|
||||
|
||||
/** Controller for static files */
|
||||
static StaticFileController* staticFileController;
|
||||
|
||||
private:
|
||||
|
||||
/** Directory of the main config file */
|
||||
static QString configDir;
|
||||
|
||||
};
|
||||
|
||||
#endif // STATIC_H
|
||||
|
Reference in New Issue
Block a user