5 Commits

Author SHA1 Message Date
  root 61b18352fe Drush_Update_2021-01-28_17_01 4 years ago
  root 32af510299 Merge branch 'master' of ssh://sargas.org:2240/Refbase/Refbase2X 4 years ago
  root fd76a59d98 ad gitignore 4 years ago
  root b6d0568dc8 Refbase update_2021-01-28_16_25 4 years ago
  root 3d11dd7f65 Refbase update_2021-01-28_16_12 4 years ago
41 changed files with 107 additions and 4 deletions
Unified View
  1. +4
    -0
      advanced_search.php
  2. +3
    -0
      duplicate_manager.php
  3. +2
    -0
      duplicate_modify.php
  4. +3
    -0
      duplicate_search.php
  5. +2
    -0
      error.php
  6. +3
    -0
      extract.php
  7. +2
    -0
      import.php
  8. +2
    -0
      import_csa.php
  9. +2
    -0
      import_csa_modify.php
  10. +2
    -0
      import_modify.php
  11. +2
    -0
      index.php
  12. +6
    -0
      initialize/PhpErrorSettings.inc.php
  13. +4
    -3
      initialize/db.inc.php
  14. +8
    -0
      initialize/default.ini.live.php
  15. +5
    -1
      initialize/ini.inc.php
  16. +3
    -0
      library_search.php
  17. +2
    -0
      modify.php
  18. +2
    -0
      opensearch.php
  19. +2
    -0
      queries.php
  20. +2
    -0
      query_history.php
  21. +2
    -0
      query_manager.php
  22. +2
    -0
      query_modify.php
  23. +2
    -0
      receipt.php
  24. +2
    -0
      record.php
  25. +2
    -0
      rss.php
  26. +3
    -0
      search.php
  27. +2
    -0
      show.php
  28. +2
    -0
      simple_search.php
  29. +2
    -0
      sitemap.php
  30. +2
    -0
      sql_search.php
  31. +3
    -0
      sru.php
  32. +2
    -0
      unapi.php
  33. +2
    -0
      user_details.php
  34. +3
    -0
      user_login.php
  35. +2
    -0
      user_logout.php
  36. +2
    -0
      user_options.php
  37. +2
    -0
      user_options_modify.php
  38. +3
    -0
      user_receipt.php
  39. +2
    -0
      user_removal.php
  40. +2
    -0
      user_validation.php
  41. +2
    -0
      users.php

+ 4
- 0
advanced_search.php View File

@ -1,4 +1,8 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 3
- 0
duplicate_manager.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
duplicate_modify.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 3
- 0
duplicate_search.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
error.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 3
- 0
extract.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
import.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
import_csa.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
import_csa_modify.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
import_modify.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
index.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 6
- 0
initialize/PhpErrorSettings.inc.php View File

@ -0,0 +1,6 @@
<?PHP
// produchtion
error_reporting(E_ERROR);
//developement
//error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
?>

+ 4
- 3
initialize/db.inc.php View File

@ -64,9 +64,10 @@
// The table name prefix used for refbase MySQL tables: // The table name prefix used for refbase MySQL tables:
$tablePrefix = ""; // e.g.: "rb_" $tablePrefix = ""; // e.g.: "rb_"
// database values for security not in resporitory
// include('db.dev.php');
include('initialize/db.live.php');
// database values for security not in resporitory
// include('db.dev.php');
include('db.live.php');
// The names of the MySQL database tables used by refbase: // The names of the MySQL database tables used by refbase:
// -> in code comments referred to as table: // -> in code comments referred to as table:


+ 8
- 0
initialize/default.ini.live.php View File

@ -44,4 +44,12 @@
// The URL of the institution hosting this literature database: // The URL of the institution hosting this literature database:
$hostInstitutionURL = "https://yourdomain.com/"; // e.g. "https://www.uni-kiel.de/ipoe/" $hostInstitutionURL = "https://yourdomain.com/"; // e.g. "https://www.uni-kiel.de/ipoe/"
// The keywords/tags that describe or categorize the content of this literature database:
// These keywords/tags should be single words delimited by a space character. They'll be
// included on every HTML page (in the <head> section) as well as in the OpenSearch description
// document. A good selection of keywords may help to increase search engine visibility.
$databaseKeywords = " science academic literature scientific references publication search citation web bibliography database mysql php refbase"; // e.g. "academic literature refbase"
?> ?>

+ 5
- 1
initialize/ini.inc.php View File

@ -88,8 +88,12 @@
// These keywords/tags should be single words delimited by a space character. They'll be // These keywords/tags should be single words delimited by a space character. They'll be
// included on every HTML page (in the <head> section) as well as in the OpenSearch description // included on every HTML page (in the <head> section) as well as in the OpenSearch description
// document. A good selection of keywords may help to increase search engine visibility. // document. A good selection of keywords may help to increase search engine visibility.
$databaseKeywords = "equine behaviour science academic literature scientific references publication search citation web bibliography database mysql php refbase"; // e.g. "academic literature refbase"
$databaseKeywords = " science academic literature scientific references publication search citation web bibliography database mysql php refbase"; // e.g. "academic literature refbase"
//Overrride settings above
// values for security not in resporitory
// include('ini.dev.php');
include('ini.live.php');
// The character encoding that's used as content-type for HTML, RSS and email output: // The character encoding that's used as content-type for HTML, RSS and email output:
// IMPORTANT NOTES: - the encoding type specified here must match the default character set you've // IMPORTANT NOTES: - the encoding type specified here must match the default character set you've


+ 3
- 0
library_search.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
modify.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
opensearch.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
queries.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
query_history.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
query_manager.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
query_modify.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
receipt.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
record.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
rss.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 3
- 0
search.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
show.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
simple_search.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
sitemap.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
sql_search.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 3
- 0
sru.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
unapi.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
user_details.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 3
- 0
user_login.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
user_logout.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
user_options.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
user_options_modify.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 3
- 0
user_receipt.php View File

@ -1,4 +1,7 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
user_removal.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
user_validation.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


+ 2
- 0
users.php View File

@ -1,4 +1,6 @@
<?php <?php
// turn on warnings and notice during developement
include('initialize/PhpErrorSettings.inc.php');
// Project: Web Reference Database (refbase) <http://www.refbase.net> // Project: Web Reference Database (refbase) <http://www.refbase.net>
// Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's // Copyright: Matthias Steffens <mailto:refbase@extracts.de> and the file's
// original author(s). // original author(s).


Loading…
Cancel
Save