Skip to content
  • Feedback
  • Your Account
  • Log Out
  • Login
  • Česky
For information on the current operation of libraries, see their websites.
  • Advanced Search
  • Advanced Search
  • E-loans Filter

Browse by Call Number

  • A - General Works
  • B - Philosophy, Psychology, Religion
  • C - Historical Sciences
  • D - World History
  • E - United States History
  • F - General American History
  • G - Geography, Anthropology, Recreation
  • H - Social Science
  • J - Political Science
  • K - Law
  • L - Education
  • M - Music
  • N - Fine Arts
  • P - Language and Literature
  • Q - Science
  • R - Medicine
  • S - Agriculture
  • T - Technology
  • U - Military Science
  • Z - Library Science

Browse by Language

  • Ancient Greek
  • Bulgarian
  • Croatian
  • Czech
  • Dutch
  • English
  • French
  • German
  • Greek
  • Hungarian
  • More options...

Browse by Format

  • Article
  • Audio
  • Book
  • Graphics
  • Map
  • Musical Score
  • Serial
  • Thesis Manuscript
  • Video
Yosemite Valley. Photo by John Towner.

Search Options

  • Search History
  • Browse Alphabetically
  • New Items

Find More

  • Portal of Information Resources
  • Discovery.muni
  • Database of theses (IS MU)
  • Libraries of MU

Need Help?

  • Search Tips
  • Agreement on MU library services
  • Guide to E-loans
© 2019 Masaryk University
kic_admins zavinac | at ics tecka | dot muni tecka | dot cz

Powered by
Institute of Computer Science, Masaryk University

Institute of Computer Science icon
Loading...
Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_WARNING)
fopen(/tmp/vufind_sessions/sess_m7qngsgliihr88g8cnf179vp15): failed to open stream: Na zařízení není volné místo
Whoops\Exception\ErrorException thrown with message "fopen(/tmp/vufind_sessions/sess_m7qngsgliihr88g8cnf179vp15): failed to open stream: Na zařízení není volné místo" Stacktrace: #7 Whoops\Exception\ErrorException in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:153 #6 fopen in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:153 #5 VuFind\Session\File:saveSession in /usr/local/vufind/module/VuFind/src/VuFind/Session/AbstractBase.php:195 #4 VuFind\Session\AbstractBase:write in /usr/local/vufind/module/VuFind/src/VuFind/Session/SecureDelegator.php:131 #3 VuFind\Session\SecureDelegator:write in /usr/local/vufind/vendor/ocramius/proxy-manager/src/ProxyManager/GeneratorStrategy/EvaluatingGeneratorStrategy.php:68 #2 ProxyManagerGeneratedProxy\__PM__\VuFind\Session\HandlerInterface\Generatedf36ee8331b2159947836779c1d7ac6ee:write in [internal]:0 #1 session_write_close in /usr/local/vufind/vendor/zendframework/zend-session/src/SessionManager.php:236 #0 Zend\Session\SessionManager:writeClose in [internal]:0
Stack frames (8)
7
Whoops
\
Exception
\
ErrorException
…
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
File.php
153
6
fopen
…
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
File.php
153
5
VuFind
\
Session
\
File
saveSession
…
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
AbstractBase.php
195
4
VuFind
\
Session
\
AbstractBase
write
…
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
SecureDelegator.php
131
3
VuFind
\
Session
\
SecureDelegator
write
…
/
vendor
/
ocramius
/
proxy-manager
/
src
/
ProxyManager
/
GeneratorStrategy
/
EvaluatingGeneratorStrategy.php
68
2
ProxyManagerGeneratedProxy
\
__PM__
\
VuFind
\
Session
\
HandlerInterface
\
Generatedf36ee8331b2159947836779c1d7ac6ee
write
[internal]
0
1
session_write_close
…
/
vendor
/
zendframework
/
zend-session
/
src
/
SessionManager.php
236
0
Zend
\
Session
\
SessionManager
writeClose
[internal]
0
/
usr
/
local
/
vufind
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
File.php
        foreach (glob($this->getPath() . "/sess_*") as $filename) {
            if (filemtime($filename) + $maxlifetime < time()) {
                unlink($filename);
            }
        }
        return true;
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sess_id The current session ID
     * @param string $data    The session data to write
     *
     * @return bool
     */
    protected function saveSession($sess_id, $data)
    {
        $sess_file = $this->getPath() . '/sess_' . $sess_id;
        if ($fp = fopen($sess_file, "w")) {
            $return = fwrite($fp, $data);
            fclose($fp);
            if ($return !== false) {
                return true;
            }
        }
        // If we got this far, something went wrong with the file output...
        // It is tempting to throw an exception here, but this code is called
        // outside of the context of exception handling, so all we can do is
        // echo a message.
        echo 'Cannot write session to ' . $sess_file . "\n";
        return false;
    }
}
 
/
usr
/
local
/
vufind
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
File.php
        foreach (glob($this->getPath() . "/sess_*") as $filename) {
            if (filemtime($filename) + $maxlifetime < time()) {
                unlink($filename);
            }
        }
        return true;
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sess_id The current session ID
     * @param string $data    The session data to write
     *
     * @return bool
     */
    protected function saveSession($sess_id, $data)
    {
        $sess_file = $this->getPath() . '/sess_' . $sess_id;
        if ($fp = fopen($sess_file, "w")) {
            $return = fwrite($fp, $data);
            fclose($fp);
            if ($return !== false) {
                return true;
            }
        }
        // If we got this far, something went wrong with the file output...
        // It is tempting to throw an exception here, but this code is called
        // outside of the context of exception handling, so all we can do is
        // echo a message.
        echo 'Cannot write session to ' . $sess_file . "\n";
        return false;
    }
}
 
/
usr
/
local
/
vufind
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
AbstractBase.php
        // Anecdotal testing Today and Yesterday seems to indicate destroy()
        //   is called by the garbage collector and everything is good.
        // Something to keep in mind though.
        return true;
    }
 
    /**
     * Write function that is called when session data is to be saved.
     *
     * @param string $sess_id The current session ID
     * @param string $data    The session data to write
     *
     * @return bool
     */
    public function write($sess_id, $data)
    {
        if ($this->writesDisabled) {
            return true;
        }
        return $this->saveSession($sess_id, $data);
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sess_id The current session ID
     * @param string $data    The session data to write
     *
     * @return bool
     */
    abstract protected function saveSession($sess_id, $data);
}
 
/
usr
/
local
/
vufind
/
module
/
VuFind
/
src
/
VuFind
/
Session
/
SecureDelegator.php
     * @return bool|string
     */
    public function read($session_id)
    {
        $data = $this->handler->read($session_id);
        return $data ? $this->cipher->decrypt($data) : $data;
    }
 
    /**
     * Writes session data.
     *
     * @param string $session_id   Session id
     * @param string $session_data Session data
     *
     * @return bool
     */
    public function write($session_id, $session_data)
    {
        $data = $this->cipher->encrypt($session_data);
        return $this->handler->write($session_id, $data);
    }
 
    /**
     * Pass calls to non-existing methods to the wrapped Handler
     *
     * @param string $name      Name of the method being called
     * @param array  $arguments Passed Arguments
     *
     * @return mixed
     */
    public function __call($name, $arguments)
    {
        return $this->handler->{$name}(...$arguments);
    }
}
 
/
usr
/
local
/
vufind
/
vendor
/
ocramius
/
proxy-manager
/
src
/
ProxyManager
/
GeneratorStrategy
/
EvaluatingGeneratorStrategy.php
     * {@inheritDoc}
     */
    public function generate(ClassGenerator $classGenerator) : string
    {
        $code = $classGenerator->generate();
 
        if (! $this->canEval) {
            // @codeCoverageIgnoreStart
            $fileName = sys_get_temp_dir() . '/EvaluatingGeneratorStrategy.php.tmp.' . uniqid('', true);
 
            file_put_contents($fileName, "<?php\n" . $code);
            /* @noinspection PhpIncludeInspection */
            require $fileName;
            unlink($fileName);
 
            return $code;
            // @codeCoverageIgnoreEnd
        }
 
        eval($code);
 
        return $code;
    }
}
 
[internal]
/
usr
/
local
/
vufind
/
vendor
/
zendframework
/
zend-session
/
src
/
SessionManager.php
     *
     * @return void
     */
    public function writeClose()
    {
        // The assumption is that we're using PHP's ext/session.
        // session_write_close() will actually overwrite $_SESSION with an
        // empty array on completion -- which leads to a mismatch between what
        // is in the storage object and $_SESSION. To get around this, we
        // temporarily reset $_SESSION to an array, and then re-link it to
        // the storage object.
        //
        // Additionally, while you _can_ write to $_SESSION following a
        // session_write_close() operation, no changes made to it will be
        // flushed to the session handler. As such, we now mark the storage
        // object isImmutable.
        $storage  = $this->getStorage();
        if (! $storage->isImmutable()) {
            $_SESSION = $storage->toArray(true);
            session_write_close();
            $storage->fromArray($_SESSION);
            $storage->markImmutable();
        }
    }
 
    /**
     * Attempt to set the session name
     *
     * If the session has already been started, or if the name provided fails
     * validation, an exception will be raised.
     *
     * @param  string $name
     * @return SessionManager
     * @throws Exception\InvalidArgumentException
     */
    public function setName($name)
    {
        if ($this->sessionExists()) {
            throw new Exception\InvalidArgumentException(
                'Cannot set session name after a session has already started'
[internal]

Environment & details:

Key Value
filter Array ( [0] => topic_facet:"modernismus (umění)" [1] => topic_facet:"intellectual life" [2] => topic_facet:"modernism (art)" )
lookfor "moderní společnost Rakousko"
type Subject
empty
empty
empty
Key Value
__ZF Array ( [_REQUEST_ACCESS_TIME] => 1610770143,8522 [_VALID] => Array ( [Zend\Session\Validator\Id] => m7qngsgliihr88g8cnf179vp15 ) )
SessionState Zend\Stdlib\ArrayObject Object ( [storage:protected] => Array ( [cookiePath] => / ) [flag:protected] => 2 [iteratorClass:protected] => ArrayIterator [protectedProperties:protected] => Array ( [0] => storage [1] => flag [2] => iteratorClass [3] => protectedProperties ) )
Key Value
REDIRECT_SCRIPT_URL /Search/
REDIRECT_SCRIPT_URI https://katalog.muni.cz/Search/
REDIRECT_VUFIND_ENV development
REDIRECT_VUFIND_LOCAL_DIR /usr/local/vufind/local
REDIRECT_VUFIND_LOCAL_MODULES Muni
REDIRECT_Shib-Handler https://katalog.muni.cz/Shibboleth.sso
REDIRECT_HTTPS on
REDIRECT_SSL_TLS_SNI katalog.muni.cz
REDIRECT_STATUS 200
SCRIPT_URL /Search/
SCRIPT_URI https://katalog.muni.cz/Search/
VUFIND_ENV development
VUFIND_LOCAL_DIR /usr/local/vufind/local
VUFIND_LOCAL_MODULES Muni
Shib-Handler https://katalog.muni.cz/Shibboleth.sso
HTTPS on
SSL_TLS_SNI katalog.muni.cz
HTTP_USER_AGENT CCBot/2.0 (https://commoncrawl.org/faq/)
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE en-US,en;q=0.5
HTTP_ACCEPT_ENCODING br,gzip
HTTP_HOST katalog.muni.cz
HTTP_CONNECTION Keep-Alive
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE <address>Apache/2.4.25 (Debian) Server at katalog.muni.cz Port 443</address>
SERVER_SOFTWARE Apache/2.4.25 (Debian)
SERVER_NAME katalog.muni.cz
SERVER_ADDR 147.251.4.86
SERVER_PORT 443
REMOTE_ADDR 54.208.73.179
DOCUMENT_ROOT /var/www/html
REQUEST_SCHEME https
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/html
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /usr/local/vufind/public/index.php
REMOTE_PORT 42954
REMOTE_USER
REDIRECT_URL /Search/
REDIRECT_QUERY_STRING filter%5B%5D=topic_facet%3A%22modernismus+%28um%C4%9Bn%C3%AD%29%22&filter%5B%5D=topic_facet%3A%22intellectual+life%22&filter%5B%5D=topic_facet%3A%22modernism+%28art%29%22&lookfor=%22modern%C3%AD+spole%C4%8Dnost+Rakousko%22&type=Subject
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING filter%5B%5D=topic_facet%3A%22modernismus+%28um%C4%9Bn%C3%AD%29%22&filter%5B%5D=topic_facet%3A%22intellectual+life%22&filter%5B%5D=topic_facet%3A%22modernism+%28art%29%22&lookfor=%22modern%C3%AD+spole%C4%8Dnost+Rakousko%22&type=Subject
REQUEST_URI /Search/?filter%5B%5D=topic_facet%3A%22modernismus+%28um%C4%9Bn%C3%AD%29%22&filter%5B%5D=topic_facet%3A%22intellectual+life%22&filter%5B%5D=topic_facet%3A%22modernism+%28art%29%22&lookfor=%22modern%C3%AD+spole%C4%8Dnost+Rakousko%22&type=Subject
SCRIPT_NAME /index.php
PHP_SELF /index.php
PHP_AUTH_USER
REQUEST_TIME_FLOAT 1610770143,831
REQUEST_TIME 1610770143
empty
0. Whoops\Handler\PrettyPageHandler