Remove trailing spaces
This commit is contained in:
parent
9f5f00e114
commit
0f09ef5f8c
21 changed files with 478 additions and 478 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
if (!isset($config))
|
||||
$config = array();
|
||||
|
||||
|
||||
/*
|
||||
* The directory containing calibre's metadata.db file, with sub-directories
|
||||
* containing all the formats.
|
||||
|
@ -17,26 +17,26 @@
|
|||
* $config['calibre_directory'] = array ("My database name" => "/home/directory/calibre1/", "My other database name" => "/home/directory/calibre2/");
|
||||
*/
|
||||
$config['calibre_directory'] = './';
|
||||
|
||||
|
||||
/*
|
||||
* SPECIFIC TO NGINX
|
||||
* The internal directory set in nginx config file
|
||||
* Leave empty if you don't know what you're doing
|
||||
*/
|
||||
$config['calibre_internal_directory'] = '';
|
||||
$config['calibre_internal_directory'] = '';
|
||||
|
||||
/*
|
||||
* Full URL prefix (with trailing /)
|
||||
* usefull especially for Opensearch where a full URL is often required
|
||||
* For example Mantano, Aldiko and Marvin require it.
|
||||
*/
|
||||
$config['cops_full_url'] = '';
|
||||
|
||||
$config['cops_full_url'] = '';
|
||||
|
||||
/*
|
||||
* Number of recent books to show
|
||||
*/
|
||||
$config['cops_recentbooks_limit'] = '50';
|
||||
|
||||
$config['cops_recentbooks_limit'] = '50';
|
||||
|
||||
/*
|
||||
* Catalog's author name
|
||||
*/
|
||||
|
@ -56,12 +56,12 @@
|
|||
* Catalog's title
|
||||
*/
|
||||
$config['cops_title_default'] = "COPS";
|
||||
|
||||
|
||||
/*
|
||||
* Catalog's subtitle
|
||||
*/
|
||||
$config['cops_subtitle_default'] = "";
|
||||
|
||||
$config['cops_subtitle_default'] = "";
|
||||
|
||||
/*
|
||||
* Wich header to use when downloading books outside the web directory
|
||||
* Possible values are :
|
||||
|
@ -70,12 +70,12 @@
|
|||
* No value (default) : Let PHP handle the download
|
||||
*/
|
||||
$config['cops_x_accel_redirect'] = "";
|
||||
|
||||
|
||||
/*
|
||||
* Height of thumbnail image for OPDS
|
||||
*/
|
||||
$config['cops_opds_thumbnail_height'] = "164";
|
||||
|
||||
|
||||
/*
|
||||
* Height of thumbnail image for HTML
|
||||
*/
|
||||
|
@ -93,21 +93,21 @@
|
|||
* 0 : disable
|
||||
*/
|
||||
$config['cops_show_icons'] = "1";
|
||||
|
||||
|
||||
/*
|
||||
* Default timezone
|
||||
* Default timezone
|
||||
* Check following link for other timezones :
|
||||
* http://www.php.net/manual/en/timezones.php
|
||||
*/
|
||||
$config['default_timezone'] = "Europe/Paris";
|
||||
|
||||
|
||||
/*
|
||||
* Prefered format for HTML catalog
|
||||
* The two first will be displayed in book entries
|
||||
* The other only appear in book detail
|
||||
*/
|
||||
$config['cops_prefered_format'] = array ("EPUB", "PDF", "AZW3", "AZW", "MOBI", "CBR", "CBZ");
|
||||
|
||||
|
||||
/*
|
||||
* use URL rewriting for downloading of ebook in HTML catalog
|
||||
* See Github wiki for more information
|
||||
|
@ -115,7 +115,7 @@
|
|||
* 0 : disable
|
||||
*/
|
||||
$config['cops_use_url_rewriting'] = "0";
|
||||
|
||||
|
||||
/*
|
||||
* generate a invalid OPDS stream to allow bad OPDS client to use search
|
||||
* Example of non compliant OPDS client : Moon+ Reader
|
||||
|
@ -123,63 +123,63 @@
|
|||
* 1 : enable support for non compliant OPDS client
|
||||
* 0 : always generate valid OPDS code
|
||||
*/
|
||||
$config['cops_generate_invalid_opds_stream'] = "0";
|
||||
|
||||
$config['cops_generate_invalid_opds_stream'] = "0";
|
||||
|
||||
/*
|
||||
* Max number of items per page
|
||||
* -1 unlimited
|
||||
*/
|
||||
$config['cops_max_item_per_page'] = "-1";
|
||||
$config['cops_max_item_per_page'] = "-1";
|
||||
|
||||
/*
|
||||
* split authors by first letter
|
||||
* 1 : Yes
|
||||
* 0 : No
|
||||
*/
|
||||
$config['cops_author_split_first_letter'] = "1";
|
||||
$config['cops_author_split_first_letter'] = "1";
|
||||
|
||||
/*
|
||||
* split titles by first letter
|
||||
* 1 : Yes
|
||||
* 0 : No
|
||||
*/
|
||||
$config['cops_titles_split_first_letter'] = "1";
|
||||
|
||||
$config['cops_titles_split_first_letter'] = "1";
|
||||
|
||||
/*
|
||||
* Enable the Lightboxes (for popups)
|
||||
* 1 : Yes (enable)
|
||||
* 0 : No
|
||||
*/
|
||||
$config['cops_use_fancyapps'] = "1";
|
||||
|
||||
$config['cops_use_fancyapps'] = "1";
|
||||
|
||||
/*
|
||||
* Update Epub metadata before download
|
||||
* 1 : Yes (enable)
|
||||
* 0 : No
|
||||
*/
|
||||
$config['cops_update_epub-metadata'] = "0";
|
||||
|
||||
|
||||
/*
|
||||
* Filter on tags to book list
|
||||
* Only works with the OPDS catalog
|
||||
* Usage : array ("I only want to see books using the tag : Tag1" => "Tag1",
|
||||
* Usage : array ("I only want to see books using the tag : Tag1" => "Tag1",
|
||||
* "I only want to see books not using the tag : Tag1" => "!Tag1",
|
||||
* "I want to see every books" => "",
|
||||
*
|
||||
* Example : array ("All" => "", "Unread" => "!Read", "Read" => "Read")
|
||||
*/
|
||||
$config['cops_books_filter'] = array ();
|
||||
|
||||
|
||||
/*
|
||||
* Custom Columns to add as an array containing the lookup names
|
||||
* Custom Columns to add as an array containing the lookup names
|
||||
* configured in Calibre
|
||||
*
|
||||
* For example : array ("genre", "mycolumn");
|
||||
* For example : array ("genre", "mycolumn");
|
||||
*
|
||||
* Note that for now only the first, second and forth type of custom columns are supported
|
||||
*/
|
||||
$config['cops_calibre_custom_column'] = array ();
|
||||
|
||||
|
||||
/*
|
||||
* Rename .epub to .kepub.epub if downloaded from a Kobo eReader
|
||||
* The ebook will then be recognized a Kepub so with chaptered paging, statistics, ...
|
||||
|
@ -189,10 +189,10 @@
|
|||
*/
|
||||
$config['cops_provide_kepub'] = "0";
|
||||
|
||||
/*
|
||||
/*
|
||||
* Enable and configure Send To Kindle (or Email) feature.
|
||||
*
|
||||
* Don't forget to authorize the sender email you configured in your Kindle's Approved Personal Document E-mail List.
|
||||
* Don't forget to authorize the sender email you configured in your Kindle's Approved Personal Document E-mail List.
|
||||
*
|
||||
* If you want to use a simple smtp server (provided by your ISP for example), you can configure it like that :
|
||||
* $config['cops_mail_configuration'] = array( "smtp.host" => "smtp.free.fr",
|
||||
|
@ -211,14 +211,14 @@
|
|||
* );
|
||||
*/
|
||||
$config['cops_mail_configuration'] = NULL;
|
||||
|
||||
|
||||
/*
|
||||
* Use filter in HTML catalog
|
||||
* 1 : Yes (enable)
|
||||
* 0 : No
|
||||
*/
|
||||
$config['cops_html_tag_filter'] = "0";
|
||||
|
||||
|
||||
/*
|
||||
* Thumbnails are generated on-the-fly so it can be problematic on servers with slow CPU (Raspberry Pi, Dockstar, Piratebox, ...).
|
||||
* This configuration item allow to customize how thumbnail will be generated
|
||||
|
@ -227,7 +227,7 @@
|
|||
* any url : Send a constant image as the thumbnail (you can try "images/bookcover.png")
|
||||
*/
|
||||
$config['cops_thumbnail_handling'] = "";
|
||||
|
||||
|
||||
/*
|
||||
* Contains a list of user agent for browsers not compatible with client side rendering
|
||||
* For now : Kindle, Sony PRS-T1, Sony PRS-T2, All Cybook devices (maybe a little extreme).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue