- "Peter Pan (1911)" by J.M. Barrie
- "Grunt: The Curious Science of Humans at War (2016)" by Mary Roach
- "No Country for Old Men (2005)" by Cormac McCarthy
- "Alien: Out of the Shadows: An Audible Original Drama (Canonical Alien Trilogy #1) (2013)" by Tim Lebbon
- "The Traitor's Story (2016)" by Kevin Wignall
- "Blade Runner - Do Androids Dream of Electric Sheep? (1968)" by Philip K. Dick
- "Homage to Catalonia (1938) by George Orwell
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
/* requires jQuery 1.3.2 minimum */ | |
$.trocaAcentosECaracteresEspeciais = function (texto) { | |
var afrom = "á,à,ã,â,ä,Á,À,Ã,Â,Ä"; | |
var efrom = "é,è,ê,ë,É,È,Ê,Ë"; | |
var ifrom = "í,ì,î,ï,Í,Ì,Î,Ï"; | |
var ofrom = "ó,ò,õ,ô,ö,Ó,Ò,Õ,Ô,Ö"; | |
var ufrom = "ú,ù,û,ü,Ú,Ù,Û,Ü"; | |
var outrosfrom = "ñ,Ñ,ç,Ç,&,@"; | |
var from = afrom + "," + efrom + "," + ifrom + "," + ofrom + "," + ufrom + "," + outrosfrom; |
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<schema name="basecamp" version="1.3"> | |
<types> | |
<!-- indexed/stored verbatim --> | |
<fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true" omitTermFreqAndPositions="true"/> | |
<!-- "true" or "false" --> | |
<fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" omitNorms="true" omitTermFreqAndPositions="true"/> | |
<!-- binary data, base64 --> |