TY - JOUR T1 - Fisurando las soldaduras de la cultura argentina : El matadero de Esteban Echeverría y su reescritura comentada de Emilio García Whebi JF - Orbis Tertius. VO - Vol. 29 No. 40 (2024),e316 29 A1 - Barbieri, Analía Graciela UL - http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.ARTI18437 AB - Según Ricardo Piglia, El matadero de Esteban Echeverría es la primera ficción inaugural de la historia de la violencia argentina. Allí el pueblo es representado en ese espacio bárbaro bajo el poder político de Juan Manuel de Rosas (1829-1852). Por su parte, Gabo Ferro observa las representaciones literarias de la sangre para definirla como una metáfora esencial que conforma la figura de la barbarie en los discursos antirrosistas, para impregnarse -hasta el día de hoy- en la cultura argentina. A partir de dichas propuestas, esta investigación propone estudiar los corrimientos que la escena actual evidencia en relación con este texto fundacional. En este artículo, analizaremos El matadero. Un comentario (2009)de Emilio García Whebi; una ópera trágica compuesta fragmentariamente desde la puesta escénica, la música y el texto. Aquí, los personajes conviven en un matadero donde la sangre se vuelve barro. Este pasaje connota el acabamiento de la dicotomía civilización/barbarie y de los grandes relatos de la civilización occidental que, en sintonía con los planteamientos filosóficos de Lyotard, prometían a las sociedades prosperidad. Al revés, esta obra expone la civilización y la barbarie como entidades mal convivientes en el espacio lodoso de una Argentina signada por la tragedia social. AB - According to Ricardo Piglia, El mataderoby Esteban Echeverría is the first inaugural fiction in the history of Argentine violence. There, the people are represented in that barbaric space under the political power of Juan Manuel de Rosas (1829-1852). For his part, Gabo Ferro observes the literary representations of blood to define it as an essential metaphor that makes up the figure of barbarism in the opposition discourses, to permeate -to these days- in Argentine culture. Based on these proposals, this research proposes to study the displacements that the current scene shows in relation to this founding text. In this article, we will analyze El matadero. Un comentario(2009) by Emilio García Whebi; a tragic opera composed fragmentarily from the staging, the music and the text. Here, the characters live together in a slaughterhouse where blood turns into mud. This passage connotes the end of the civilization/barbarism dichotomy and of the great stories of Western civilization that, in line with Lyotard's philosophical approaches, promised societies prosperity. On the contrary, this work exposes civilization and barbarism as poorly coexisting entities in the muddy space of an Argentina marked by social tragedy. AB - Segundo Ricardo Piglia, El matadero de Esteban Echeverría é a primeira ficção inaugural da história da violência argentina. Ali o povo está representado naquele espaço bárbaro sob o poder político de Juan Manuel De Rosas (1829-1852). Nesse sentido, Gabo Ferro reconhece o sangue como metáfora essencial que compõe a figura da barbárie. A partir dessas propostas, esta pesquisa se propõe a estudar os deslocamentos que o cenário atual apresenta em relação a esse texto fundador. Estratégias de desvio apresentadas em obras como O Banquete. Abordagens El matadero de Esteban Echeverría (2009), de Germán Maziéres ou Olvídate del Matadero (2022) de Pablo Finamore e Claudio Martínez Bel. Portanto, neste artigo analisaremos El matadero. Un comentario (2009) de Emilio García Whebi. Aqui os personagens vivem juntos em um matadouro onde o sangue vira lama. Esta passagem conota o fim da dicotomia civilização/barbárie e das grandes histórias da civilização ocidental que, em linha com as abordagens filosóficas de Lyotard, prometiam prosperidade às sociedades. Pelo contrário, este trabalho expõe a civilização e a barbárie como entidades que coexistem mal no espaço lamacento de uma Argentina marcada pela tragédia social. KW - Matadero KW - Ficción KW - Sangre KW - Cadáver KW - Nación KW - Slaughterhouse KW - Fiction KW - Blood KW - Corpse KW - Nation KW - Matadouro^lpt KW - Ficção KW - Sangue KW - Nação ER - Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_WARNING)
fopen(/tmp/vufind_sessions/sess_i2ifqqru5h4n5fjgfpm5o2nrii): Failed to open stream: No space left on device Whoops\Exception\ErrorException thrown with message "fopen(/tmp/vufind_sessions/sess_i2ifqqru5h4n5fjgfpm5o2nrii): Failed to open stream: No space left on device" Stacktrace: #5 Whoops\Exception\ErrorException in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:158 #4 fopen in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:158 #3 VuFind\Session\File:saveSession in /usr/local/vufind/module/VuFind/src/VuFind/Session/AbstractBase.php:193 #2 VuFind\Session\AbstractBase:write in [internal]:0 #1 session_write_close in /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php:242 #0 Laminas\Session\SessionManager:writeClose in [internal]:0
5
Whoops\Exception\ErrorException
/module/VuFind/src/VuFind/Session/File.php158
4
fopen
/module/VuFind/src/VuFind/Session/File.php158
3
VuFind\Session\File saveSession
/module/VuFind/src/VuFind/Session/AbstractBase.php193
2
VuFind\Session\AbstractBase write
[internal]0
1
session_write_close
/vendor/laminas/laminas-session/src/SessionManager.php242
0
Laminas\Session\SessionManager writeClose
[internal]0
        foreach (glob($this->path . '/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 $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    protected function saveSession($sessId, $data): bool
    {
        $sessFile = $this->path . '/sess_' . $sessId;
        if ($handle = fopen($sessFile, 'w')) {
            $return = false;
            // Lock the file for exclusive access to avoid issues with multiple
            // processes writing session simultaneously:
            if (flock($handle, LOCK_EX)) {
                $return = fwrite($handle, $data);
                // Make sure that there's no trailing data by truncating the file to
                // the correct length:
                ftruncate($handle, strlen($data));
                fflush($handle);
                flock($handle, LOCK_UN);
            }
            fclose($handle);
            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.
Arguments
  1. "fopen(/tmp/vufind_sessions/sess_i2ifqqru5h4n5fjgfpm5o2nrii): Failed to open stream: No space left on device"
    
        foreach (glob($this->path . '/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 $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    protected function saveSession($sessId, $data): bool
    {
        $sessFile = $this->path . '/sess_' . $sessId;
        if ($handle = fopen($sessFile, 'w')) {
            $return = false;
            // Lock the file for exclusive access to avoid issues with multiple
            // processes writing session simultaneously:
            if (flock($handle, LOCK_EX)) {
                $return = fwrite($handle, $data);
                // Make sure that there's no trailing data by truncating the file to
                // the correct length:
                ftruncate($handle, strlen($data));
                fflush($handle);
                flock($handle, LOCK_UN);
            }
            fclose($handle);
            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.
        // 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 $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    public function write($sessId, $data): bool
    {
        if ($this->writesDisabled) {
            return true;
        }
        return $this->saveSession($sessId, $data);
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    abstract protected function saveSession($sessId, $data): bool;
}
 
     *
     * @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'

Environment & details:

Key Value
style
"EndNoteWeb"
empty
empty
Key Value
ui
"standard"
VUFIND_SESSION
"i2ifqqru5h4n5fjgfpm5o2nrii"
language
"es"
Key Value
__Laminas
array:2 [
  "_REQUEST_ACCESS_TIME" => 1749407559.5735
  "_VALID" => array:1 [
    "Laminas\Session\Validator\Id" => "i2ifqqru5h4n5fjgfpm5o2nrii"
  ]
]
SessionState
Laminas\Stdlib\ArrayObject {#906}
Key Value
REDIRECT_SCRIPT_URL
"/Record/dhu.ARTI18437/Export"
REDIRECT_SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.ARTI18437/Export"
REDIRECT_VUFIND_ENV
"development"
REDIRECT_VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
REDIRECT_STATUS
"200"
SCRIPT_URL
"/Record/dhu.ARTI18437/Export"
SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.ARTI18437/Export"
VUFIND_ENV
"development"
VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_COOKIE
"ui=standard; VUFIND_SESSION=i2ifqqru5h4n5fjgfpm5o2nrii; language=es"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
HTTP_VIA
"1.1 squid-proxy-5b5d847c96-wwc6j (squid/6.10)"
HTTP_X_FORWARDED_FOR
"10.1.8.200"
HTTP_CACHE_CONTROL
"max-age=0"
HTTP_CONNECTION
"keep-alive"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.52 (Ubuntu) Server at vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar Port 80</address>\n"
SERVER_SOFTWARE
"Apache/2.4.52 (Ubuntu)"
SERVER_NAME
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
SERVER_ADDR
"172.17.0.170"
SERVER_PORT
"80"
REMOTE_ADDR
"216.73.216.97"
DOCUMENT_ROOT
"/usr/local/vufind/public"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/usr/local/vufind/public"
SERVER_ADMIN
"webmaster@bibliotecas.unlp.edu.ar"
SCRIPT_FILENAME
"/usr/local/vufind/public/index.php"
REMOTE_PORT
"4050"
REDIRECT_URL
"/Record/dhu.ARTI18437/Export"
REDIRECT_QUERY_STRING
"style=EndNoteWeb"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
"style=EndNoteWeb"
REQUEST_URI
"/Record/dhu.ARTI18437/Export?style=EndNoteWeb"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1749407559.5632
REQUEST_TIME
1749407559
empty
0. Whoops\Handler\PrettyPageHandler
Cannot write session to /tmp/vufind_sessions/sess_i2ifqqru5h4n5fjgfpm5o2nrii Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_WARNING)
session_write_close(): Failed to write session data using user defined save handler. (session.save_path: /var/lib/php/sessions) Whoops\Exception\ErrorException thrown with message "session_write_close(): Failed to write session data using user defined save handler. (session.save_path: /var/lib/php/sessions)" Stacktrace: #2 Whoops\Exception\ErrorException in /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php:242 #1 session_write_close in /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php:242 #0 Laminas\Session\SessionManager:writeClose in [internal]:0
2
Whoops\Exception\ErrorException
/vendor/laminas/laminas-session/src/SessionManager.php242
1
session_write_close
/vendor/laminas/laminas-session/src/SessionManager.php242
0
Laminas\Session\SessionManager writeClose
[internal]0
     *
     * @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'
Arguments
  1. "session_write_close(): Failed to write session data using user defined save handler. (session.save_path: /var/lib/php/sessions)"
    
     *
     * @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'

Environment & details:

Key Value
style
"EndNoteWeb"
empty
empty
Key Value
ui
"standard"
VUFIND_SESSION
"i2ifqqru5h4n5fjgfpm5o2nrii"
language
"es"
Key Value
__Laminas
array:2 [
  "_REQUEST_ACCESS_TIME" => 1749407559.5735
  "_VALID" => array:1 [
    "Laminas\Session\Validator\Id" => "i2ifqqru5h4n5fjgfpm5o2nrii"
  ]
]
SessionState
Laminas\Stdlib\ArrayObject {#906}
Key Value
REDIRECT_SCRIPT_URL
"/Record/dhu.ARTI18437/Export"
REDIRECT_SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.ARTI18437/Export"
REDIRECT_VUFIND_ENV
"development"
REDIRECT_VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
REDIRECT_STATUS
"200"
SCRIPT_URL
"/Record/dhu.ARTI18437/Export"
SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.ARTI18437/Export"
VUFIND_ENV
"development"
VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_COOKIE
"ui=standard; VUFIND_SESSION=i2ifqqru5h4n5fjgfpm5o2nrii; language=es"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
HTTP_VIA
"1.1 squid-proxy-5b5d847c96-wwc6j (squid/6.10)"
HTTP_X_FORWARDED_FOR
"10.1.8.200"
HTTP_CACHE_CONTROL
"max-age=0"
HTTP_CONNECTION
"keep-alive"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.52 (Ubuntu) Server at vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar Port 80</address>\n"
SERVER_SOFTWARE
"Apache/2.4.52 (Ubuntu)"
SERVER_NAME
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
SERVER_ADDR
"172.17.0.170"
SERVER_PORT
"80"
REMOTE_ADDR
"216.73.216.97"
DOCUMENT_ROOT
"/usr/local/vufind/public"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/usr/local/vufind/public"
SERVER_ADMIN
"webmaster@bibliotecas.unlp.edu.ar"
SCRIPT_FILENAME
"/usr/local/vufind/public/index.php"
REMOTE_PORT
"4050"
REDIRECT_URL
"/Record/dhu.ARTI18437/Export"
REDIRECT_QUERY_STRING
"style=EndNoteWeb"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
"style=EndNoteWeb"
REQUEST_URI
"/Record/dhu.ARTI18437/Export?style=EndNoteWeb"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1749407559.5632
REQUEST_TIME
1749407559
empty
0. Whoops\Handler\PrettyPageHandler