Download this gist and create a symbolic link
$ ln -s catmandu.yml config.yml
This is necessary for the dancer app. In this case Catmandu and Dancer are using the same configuration file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# produces a csv file, if it matches a doi | |
# for more information see http://search.crossref.org/help/api | |
use Catmandu::Sane; | |
use Catmandu; | |
use JSON; | |
use Catmandu::Importer::CSV; | |
use Catmandu::Exporter::CSV; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use lib qw(/srv/www/sbcat/lib/extension /srv/www/sbcat/lib/default); | |
use Orms; | |
use luurCfg; | |
use CQL::Parser; | |
use cql2sql; | |
my $basic_url = 'http://pub.uni-bielefeld.de/publication/' ; | |
my $outfile = '/srv/www/sbcat/htdocs/pub_index.txt' ; |