Newer
Older
Digital_Repository / Repositories / ADT / Settings.pm
nstanger on 16 Dec 2005 755 bytes - Changed to correct deployment values.
  1. # MySQL database parameters
  2. $DB_NAME = "otago_eprints";
  3. $DB_HOST = "localhost";
  4. $DB_USER= "otago_adt";
  5. $DB_PASS = "ComethTheThesis";
  6.  
  7. # University Specific Code
  8. $UNI_CODE = 'OU';
  9.  
  10. # University Description Text
  11. $UNI_TEXT = 'University of Otago';
  12.  
  13. # E-print Archive Short Name
  14. $EPRINT_SHORT_NAME = "Otago EPrints";
  15.  
  16. # Where the eprints archive is physically located
  17. $ARCHIVE_DIR = "/home/eprints2/archives/otago_eprints/html/en";
  18.  
  19. # Base Eprints URL
  20. $BASE_URL = "http://eprints.otago.ac.nz";
  21.  
  22. # ADT relative URL
  23. $ADT_URL = "/ADT";
  24.  
  25. # Where to store the ADT exported HTML files
  26. $ADT_DIR = $ARCHIVE_DIR . "/ADT";
  27.  
  28. # Starting URL for eprints attached documents
  29. $DOCS_URL = "http://eprints.otago.ac.nz/archive/";
  30.  
  31. # University copyright URL
  32. $COPY_URL = "";
  33.  
  34. 1;