├── .github └── FUNDING.yml ├── .gitignore ├── .smalltalk.ston ├── .travis.yml ├── LICENSE ├── README.md ├── pharo-repository ├── .filetree ├── BaselineOfElasticsearch.package │ ├── .filetree │ ├── BaselineOfElasticsearch.class │ │ ├── README.md │ │ ├── instance │ │ │ └── baseline..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── ConfigurationOfElasticsearch.package │ ├── .filetree │ ├── ConfigurationOfElasticsearch.class │ │ ├── README.md │ │ ├── class │ │ │ ├── DevelopmentSupport.st │ │ │ ├── baseConfigurationClassIfAbsent..st │ │ │ ├── ensureMetacello.st │ │ │ ├── ensureMetacelloBaseConfiguration.st │ │ │ ├── isMetacelloConfig.st │ │ │ ├── load.st │ │ │ ├── loadBleedingEdge.st │ │ │ ├── loadDevelopment.st │ │ │ ├── project.st │ │ │ └── validate.st │ │ ├── instance │ │ │ ├── baseline10..st │ │ │ ├── baseline101..st │ │ │ ├── baseline11..st │ │ │ ├── baselineCreation.st │ │ │ ├── createDevVersion.st │ │ │ ├── customProjectAttributes.st │ │ │ ├── project.st │ │ │ ├── stable..st │ │ │ ├── validateConfiguration.st │ │ │ ├── version10..st │ │ │ ├── version101..st │ │ │ ├── version102..st │ │ │ ├── version103..st │ │ │ ├── version104..st │ │ │ ├── version105..st │ │ │ ├── version106..st │ │ │ ├── version11..st │ │ │ ├── version111..st │ │ │ ├── version112..st │ │ │ ├── version113..st │ │ │ ├── version114..st │ │ │ ├── version116..st │ │ │ └── version117..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json ├── Elasticsearch-Core.package │ ├── .filetree │ ├── DateAndTime.extension │ │ ├── instance │ │ │ └── jsonWriteOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESAPISearch.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── queryUrl.st │ │ │ ├── search.st │ │ │ ├── searchFrom..st │ │ │ ├── searchIndices..st │ │ │ ├── searchScroll..st │ │ │ ├── searchSize..st │ │ │ └── searchUrl.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESAggregation.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── aggregationName..st │ │ │ ├── aggregationName.st │ │ │ ├── field..st │ │ │ ├── field.st │ │ │ ├── jsonStringContents.st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── jsonWriteContentOn..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── jsonWriteOn..st │ │ │ ├── modifiers..st │ │ │ ├── modifiers.st │ │ │ ├── neoJsonOn..st │ │ │ ├── script..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESAggregations.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addAggregation..st │ │ │ ├── aggregations..st │ │ │ ├── aggregations.st │ │ │ ├── hasAggregations.st │ │ │ ├── jsonWriteOn..st │ │ │ └── neoJsonOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESAnalysis.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addAnalyzer..st │ │ │ ├── addCharFilter..st │ │ │ ├── addFilter..st │ │ │ ├── addTokenizer..st │ │ │ ├── analyzers..st │ │ │ ├── analyzers.st │ │ │ ├── charFilters..st │ │ │ ├── charFilters.st │ │ │ ├── filters..st │ │ │ ├── filters.st │ │ │ ├── hasAnalyzers.st │ │ │ ├── hasCharFilter.st │ │ │ ├── hasFilter.st │ │ │ ├── hasTokenizer.st │ │ │ ├── initialize.st │ │ │ ├── jsonContent.st │ │ │ ├── jsonStringFromCollection..st │ │ │ ├── tokenizers..st │ │ │ └── tokenizers.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── asJsonString.st │ │ │ ├── initialize.st │ │ │ ├── jsonContent.st │ │ │ ├── modifiers..st │ │ │ ├── modifiers.st │ │ │ ├── name..st │ │ │ ├── name.st │ │ │ ├── stopwords..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESAndFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ └── filterType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESAvgAggregation.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESBinaryMappingProperty.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESBoolQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── filter..st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── minimum_should_match..st │ │ │ ├── must..st │ │ │ ├── must_not..st │ │ │ ├── queryType.st │ │ │ └── should..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESBooleanFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addFilter..st │ │ │ ├── filterList..st │ │ │ ├── filterList.st │ │ │ └── jsonWriteContentValueOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESBooleanMappingProperty.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESCharFilter.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESClientEvent.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── jsonString..st │ │ │ └── jsonString.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESCustomAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── charFilter..st │ │ │ ├── filter..st │ │ │ ├── tokenizer..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESDateMappingProperty.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── format..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESDisMaxQuery.class │ │ ├── README.md │ │ ├── class │ │ │ └── queries..st │ │ ├── instance │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── queries..st │ │ │ ├── queries.st │ │ │ ├── tieBreaker..st │ │ │ └── tieBreaker.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESDocument.class │ │ ├── README.md │ │ ├── class │ │ │ ├── fromJson..st │ │ │ ├── fromJson.inIndex..st │ │ │ ├── ofType.withContent..st │ │ │ ├── setIdInClient.st │ │ │ └── withContent..st │ │ ├── instance │ │ │ ├── ^equals.st │ │ │ ├── addToIndex..st │ │ │ ├── content..st │ │ │ ├── content.st │ │ │ ├── created..st │ │ │ ├── created.st │ │ │ ├── deleteFromIndex..st │ │ │ ├── hasId.st │ │ │ ├── hasVersion.st │ │ │ ├── hash.st │ │ │ ├── id..st │ │ │ ├── id.st │ │ │ ├── id1.st │ │ │ ├── index..st │ │ │ ├── index.st │ │ │ ├── initialize.st │ │ │ ├── messageJsonContent.st │ │ │ ├── modified..st │ │ │ ├── modified.st │ │ │ ├── newId.st │ │ │ ├── parseContentFromJson.fromIndex..st │ │ │ ├── score..st │ │ │ ├── score.st │ │ │ ├── setId.st │ │ │ ├── setIdInClient.st │ │ │ ├── type..st │ │ │ ├── type.st │ │ │ ├── updateModifiedTime.st │ │ │ ├── urlForIndexing.st │ │ │ ├── version..st │ │ │ └── version.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESDocumentId.class │ │ ├── README.md │ │ ├── class │ │ │ ├── defaultIdStrategy.st │ │ │ └── newId.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESDocumentIdUUIDStrategy.class │ │ ├── README.md │ │ ├── class │ │ │ └── new.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESDocumentIdUnixSecondsStrategy.class │ │ ├── README.md │ │ ├── class │ │ │ └── new.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESEdgeNGramTokenFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── initialize.st │ │ │ └── side..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESException.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── message.st │ │ │ ├── properties..st │ │ │ └── properties.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESExistsFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── filterType.st │ │ │ └── onField.forValue..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── AND..st │ │ │ ├── OR..st │ │ │ ├── asJsonString.st │ │ │ ├── cache..st │ │ │ ├── filterType.st │ │ │ ├── jsonStringContents.st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── jsonWriteContentOn..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── jsonWriteOn..st │ │ │ ├── modifiers..st │ │ │ ├── modifiers.st │ │ │ ├── neoJsonOn..st │ │ │ └── not.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESFilteredQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── filter..st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ └── queryType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESFuzzyLikeThisQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── ignoreTermFrequency..st │ │ │ ├── minimumSimilarity..st │ │ │ ├── minimumSimilaryity..st │ │ │ └── queryType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESHTTPClient.class │ │ ├── README.md │ │ ├── class │ │ │ ├── defaultHostName.st │ │ │ ├── defaultHttpClient.st │ │ │ ├── defaultPort.st │ │ │ ├── httpClient.st │ │ │ └── resetClient.st │ │ ├── instance │ │ │ ├── defaultUnderlyingClientClass.st │ │ │ ├── defaultUrl.st │ │ │ ├── delete..st │ │ │ ├── emitJsonBodyAttachEvent..st │ │ │ ├── emitJsonResponseReceivedEvent..st │ │ │ ├── get..st │ │ │ ├── get.data..st │ │ │ ├── head..st │ │ │ ├── hostName.st │ │ │ ├── indexExistsAt..st │ │ │ ├── jsonStringFrom..st │ │ │ ├── logToTranscript.st │ │ │ ├── loggingOff.st │ │ │ ├── newLogEvent..st │ │ │ ├── newUnderlyingClient.st │ │ │ ├── port.st │ │ │ ├── post.data..st │ │ │ ├── put.data..st │ │ │ ├── typeExistsAt..st │ │ │ ├── underlyingClient.st │ │ │ ├── underlyingClientDo..st │ │ │ └── url.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESHtmlStripCharFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESIndex.class │ │ ├── README.md │ │ ├── class │ │ │ ├── createIndex..st │ │ │ ├── deleteIndex..st │ │ │ └── indexNamed..st │ │ ├── instance │ │ │ ├── addDocument..st │ │ │ ├── analysis..st │ │ │ ├── analysis.st │ │ │ ├── countUrl.st │ │ │ ├── countUrlForType..st │ │ │ ├── create.st │ │ │ ├── createIndexNamed..st │ │ │ ├── delete.st │ │ │ ├── deleteDocument..st │ │ │ ├── deleteIndexNamed..st │ │ │ ├── ensureExistence.st │ │ │ ├── getDocument..st │ │ │ ├── getSettings.st │ │ │ ├── hasAnalysis.st │ │ │ ├── hasMapping.st │ │ │ ├── hasNotDefaultValuesForShardsAndReplicas.st │ │ │ ├── hasSettings.st │ │ │ ├── indexCreationJsonSettings.st │ │ │ ├── indexExists.st │ │ │ ├── indexSettings.st │ │ │ ├── initialize.st │ │ │ ├── mapping..st │ │ │ ├── mapping.st │ │ │ ├── replicas..st │ │ │ ├── replicas.st │ │ │ ├── searchFor..st │ │ │ ├── searchUrl.st │ │ │ ├── searchUrlForType..st │ │ │ ├── settingsJsonContent.st │ │ │ ├── shards..st │ │ │ ├── shards.st │ │ │ ├── shardsAndReplicaSettings.st │ │ │ ├── statusUrl.st │ │ │ ├── type..st │ │ │ ├── type.st │ │ │ ├── url.st │ │ │ └── urlToGetDocument..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESJsonBodyAttachEvent.class │ │ ├── README.md │ │ ├── instance │ │ │ └── printContentsOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESJsonResponseReceivedEvent.class │ │ ├── README.md │ │ ├── instance │ │ │ └── printContentsOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESJsonWriteStream.class │ │ ├── README.md │ │ ├── class │ │ │ └── on.writer..st │ │ ├── instance │ │ │ ├── nextPut..st │ │ │ ├── nextPutAll..st │ │ │ ├── stream..st │ │ │ ├── stream.st │ │ │ ├── writer..st │ │ │ └── writer.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESKeywordAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESLetterTokenizer.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESLikeThisQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── fields..st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── maximumQueryTerms..st │ │ │ └── queryKeyName.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMapping.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addMappingProperty..st │ │ │ ├── analysis..st │ │ │ ├── analysis.st │ │ │ ├── asJsonString.st │ │ │ ├── jsonContent.st │ │ │ ├── properties..st │ │ │ └── properties.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMappingProperties.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addProperty..st │ │ │ ├── initialize.st │ │ │ ├── jsonContent.st │ │ │ ├── properties..st │ │ │ └── properties.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMappingProperty.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── boost..st │ │ │ ├── ignoreMalformed..st │ │ │ ├── includeInAll..st │ │ │ ├── index..st │ │ │ ├── indexName..st │ │ │ ├── initialize.st │ │ │ ├── jsonContent.st │ │ │ ├── modifiers.st │ │ │ ├── nullValue..st │ │ │ ├── precisionStep..st │ │ │ ├── store..st │ │ │ ├── type..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMatchAllQuery.class │ │ ├── README.md │ │ ├── class │ │ │ └── forString..st │ │ ├── instance │ │ │ └── defaultField.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMatchQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── boolean..st │ │ │ ├── cutoffFrequency..st │ │ │ ├── fuzziness..st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── matchPhrase.st │ │ │ ├── matchPhrasePrefix.st │ │ │ ├── maxExpansions..st │ │ │ ├── queryType.st │ │ │ └── type..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMaxAggregation.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMinAggregation.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMoreLikeThisAPISearch.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── docId..st │ │ │ ├── docId.st │ │ │ ├── docType..st │ │ │ ├── docType.st │ │ │ ├── mltFields..st │ │ │ └── searchUrl.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMoreLikeThisQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── boostTerms..st │ │ │ ├── maximumDocumentFrequency..st │ │ │ ├── maximumWordLength..st │ │ │ ├── minimumDocumentFrequency..st │ │ │ ├── minimumTermFrequency..st │ │ │ ├── minimumWordLength..st │ │ │ ├── percentTermsToMatch..st │ │ │ ├── queryType.st │ │ │ └── stopWords..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMultiFieldMappingProperty.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addDefaultField..st │ │ │ ├── addField..st │ │ │ ├── addSecondaryField..st │ │ │ ├── fields.st │ │ │ ├── includeDefaultInAll..st │ │ │ ├── initialize.st │ │ │ ├── jsonContent.st │ │ │ ├── path..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESMultiMatchQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── fields..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── queryType.st │ │ │ ├── tieBreaker..st │ │ │ ├── type..st │ │ │ └── useDisMax..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESNGramTokenFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── maxGram..st │ │ │ ├── minGram..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESNotFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── filterType.st │ │ │ └── setFilter..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESNumberMappingProperty.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── beByte.st │ │ │ ├── beDouble.st │ │ │ ├── beFloat.st │ │ │ ├── beInteger.st │ │ │ ├── beLong.st │ │ │ └── beShort.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESObject.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── baseUrl.st │ │ │ ├── errorMessageFor..st │ │ │ ├── httpClient.st │ │ │ ├── ifResponse.isNotErrorThenDo..st │ │ │ ├── jsonStringFrom..st │ │ │ ├── logToTranscript.st │ │ │ ├── loggingOff.st │ │ │ ├── name..st │ │ │ ├── name.st │ │ │ ├── newHttpClient.st │ │ │ ├── parseJsonFromString..st │ │ │ ├── responseIsError..st │ │ │ ├── settings..st │ │ │ ├── settings.st │ │ │ ├── systemInformation.st │ │ │ └── systemVersion.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESOrFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ └── filterType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESPatternAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── flags..st │ │ │ ├── lowercase..st │ │ │ ├── pattern..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESPrefixFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── filterType.st │ │ │ └── onField.forValue..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESPrefixQuery.class │ │ ├── README.md │ │ ├── class │ │ │ └── forString..st │ │ ├── instance │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── queryKeyName.st │ │ │ └── queryType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── analyzer..st │ │ │ ├── asJsonString.st │ │ │ ├── boost..st │ │ │ ├── boost.st │ │ │ ├── defaultField.st │ │ │ ├── field..st │ │ │ ├── field.st │ │ │ ├── hasField.st │ │ │ ├── hasModifiers.st │ │ │ ├── jsonStringContents.st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── jsonWriteContentOn..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── jsonWriteOn..st │ │ │ ├── modifiers..st │ │ │ ├── modifiers.st │ │ │ ├── neoJsonOn..st │ │ │ ├── prefixLength..st │ │ │ ├── query..st │ │ │ ├── query.st │ │ │ ├── queryKeyName.st │ │ │ ├── queryType.st │ │ │ └── resetModifiers.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESQueryStringQuery.class │ │ ├── README.md │ │ ├── class │ │ │ └── for..st │ │ ├── instance │ │ │ ├── asQueryString.st │ │ │ ├── defaultField.st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── queryString..st │ │ │ ├── queryString.st │ │ │ └── queryType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESRangeFilter.class │ │ ├── README.md │ │ ├── class │ │ │ └── onField..st │ │ ├── instance │ │ │ ├── field..st │ │ │ ├── field.st │ │ │ ├── filterType.st │ │ │ ├── gt..st │ │ │ ├── gte..st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── lt..st │ │ │ └── lte..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESRegexpFilter.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── filterType.st │ │ │ └── onField.forValue..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESRegexpQuery.class │ │ ├── README.md │ │ ├── class │ │ │ └── forString..st │ │ ├── instance │ │ │ ├── flags..st │ │ │ ├── flags.st │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ ├── maxDeterminizedStates..st │ │ │ ├── maxDeterminizedStates.st │ │ │ ├── queryKeyName.st │ │ │ └── queryType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESSearch.class │ │ ├── README.md │ │ ├── class │ │ │ └── index..st │ │ ├── instance │ │ │ ├── addAggregation..st │ │ │ ├── addQuery..st │ │ │ ├── addSortCriteria..st │ │ │ ├── aggregate.st │ │ │ ├── aggregateResult.st │ │ │ ├── aggregations.st │ │ │ ├── count.st │ │ │ ├── countAll.st │ │ │ ├── countUrl.st │ │ │ ├── enumerator.st │ │ │ ├── hasAggregations.st │ │ │ ├── hasResults.st │ │ │ ├── hasSortCriteria.st │ │ │ ├── index..st │ │ │ ├── index.st │ │ │ ├── indexOfFirstResult..st │ │ │ ├── indexOfFirstResult.st │ │ │ ├── initialize.st │ │ │ ├── jsonQuery.st │ │ │ ├── minScore..st │ │ │ ├── minimumScore..st │ │ │ ├── newlyFetchedEntries.st │ │ │ ├── numberOfHits.st │ │ │ ├── numberOfResultsInIndex..st │ │ │ ├── numberOfResultsInIndex.st │ │ │ ├── numberOfResultsMaxtLimit.st │ │ │ ├── numberOfResultsToFetch..st │ │ │ ├── numberOfResultsToFetch.st │ │ │ ├── query..st │ │ │ ├── requestBodyJson..st │ │ │ ├── requestBodyJson.st │ │ │ ├── results..st │ │ │ ├── results.st │ │ │ ├── search.st │ │ │ ├── searchAll.st │ │ │ ├── searchFrom..st │ │ │ ├── searchFrom.size..st │ │ │ ├── searchType..st │ │ │ ├── searchTypes..st │ │ │ ├── searchUrl.st │ │ │ ├── searchUrlFrom.size..st │ │ │ ├── searchUrlWithParams..st │ │ │ ├── setAggregateResultFrom..st │ │ │ ├── setCountResultsFrom..st │ │ │ ├── setResultsFrom..st │ │ │ ├── sortByDateNewestFirst.st │ │ │ ├── sortByScore.st │ │ │ ├── sortParameters.st │ │ │ └── uriParameters.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESSearchResultEnumerator.class │ │ ├── README.md │ │ ├── class │ │ │ └── with..st │ │ ├── instance │ │ │ ├── atEnd.st │ │ │ ├── currentIndex.st │ │ │ ├── fetchNextUnits.st │ │ │ ├── fetchUpToEnd.st │ │ │ ├── maxIndex.st │ │ │ ├── resultStream..st │ │ │ ├── resultStream.st │ │ │ ├── searcher..st │ │ │ └── searcher.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESSettings.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── at..st │ │ │ ├── at.ifAbsent..st │ │ │ ├── at.ifAbsentPut..st │ │ │ ├── at.put..st │ │ │ ├── hostName..st │ │ │ ├── hostName.st │ │ │ ├── httpClientClassName..st │ │ │ ├── httpClientClassName.st │ │ │ ├── port..st │ │ │ ├── port.st │ │ │ └── settingsDict.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESSimpleAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESSort.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addCriteria..st │ │ │ ├── byScore.st │ │ │ ├── criteria..st │ │ │ ├── criteria.st │ │ │ ├── hasSortCriteria.st │ │ │ ├── jsonWriteOn..st │ │ │ └── neoJsonOn..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESSortCriteria.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── fieldName..st │ │ │ ├── fieldName.st │ │ │ ├── jsonWriteContentValueOn..st │ │ │ ├── missing..st │ │ │ ├── mode..st │ │ │ ├── sortAscending.st │ │ │ ├── sortDescending.st │ │ │ ├── useAvg.st │ │ │ ├── useMax.st │ │ │ ├── useMin.st │ │ │ └── useSum.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESStandardAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── maxTokenLength..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESStopAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── stopwordsPath..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESStringMappingProperty.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── analyzer..st │ │ │ ├── ignoreAbove..st │ │ │ ├── indexAnalyzer..st │ │ │ ├── indexOptions..st │ │ │ ├── jsonStringContents.st │ │ │ ├── omitNorms..st │ │ │ ├── omitTermFreqAndPositions..st │ │ │ ├── positionOffsetGap..st │ │ │ ├── searchAnalyzer..st │ │ │ ├── termVector..st │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESSumAggregation.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESTermFilter.class │ │ ├── README.md │ │ ├── class │ │ │ └── onField.forValue..st │ │ ├── instance │ │ │ ├── filterType.st │ │ │ └── onField.forValue..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESTermQuery.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── jsonWriteContentBeginOn..st │ │ │ ├── jsonWriteContentEndOn..st │ │ │ └── queryType.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESTermsAggregation.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESTermsFilter.class │ │ ├── README.md │ │ ├── class │ │ │ └── onField.forValues..st │ │ ├── instance │ │ │ ├── filterType.st │ │ │ └── onField.forValues..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESTokenFilter.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESTokenizer.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESType.class │ │ ├── README.md │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESURISearch.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── analyzeWildcard..st │ │ │ ├── analyzer..st │ │ │ ├── defaultField..st │ │ │ ├── defaultOperator..st │ │ │ ├── explain..st │ │ │ ├── fields..st │ │ │ ├── from..st │ │ │ ├── initialize.st │ │ │ ├── lowercaseExpandedTerms..st │ │ │ ├── queryString..st │ │ │ ├── size..st │ │ │ ├── sort..st │ │ │ ├── timeout..st │ │ │ └── trackScores..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESUrl.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── addToPath..st │ │ │ ├── defaultUrl.st │ │ │ ├── host..st │ │ │ ├── port..st │ │ │ ├── queryAt.put..st │ │ │ └── url.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESWhitespaceAnalyzer.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESWhitespaceTokenizer.class │ │ ├── README.md │ │ ├── instance │ │ │ └── type.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESZnClient.class │ │ ├── README.md │ │ ├── instance │ │ │ ├── baseUrl.st │ │ │ ├── defaultUnderlyingClientClass.st │ │ │ ├── defaultUrl.st │ │ │ └── newUnderlyingClient.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ESZnUrl.class │ │ ├── README.md │ │ ├── instance │ │ │ └── defaultUrl.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── NeoJSONWriter.extension │ │ ├── instance │ │ │ └── writeElasticsearchObject..st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── ZnClient.extension │ │ ├── instance │ │ │ ├── get.contents..st │ │ │ ├── headResponseStatusFor..st │ │ │ └── logLevel.st │ │ ├── methodProperties.json │ │ └── properties.json │ ├── monticello.meta │ │ ├── categories.st │ │ ├── initializers.st │ │ ├── package │ │ └── version │ └── properties.json └── Elasticsearch-Tests.package │ ├── .filetree │ ├── ESAggregationTest.class │ ├── README.md │ ├── instance │ │ ├── setUp.st │ │ └── testAggregationName.st │ ├── methodProperties.json │ └── properties.json │ ├── ESAnalysisTests.class │ ├── README.md │ ├── instance │ │ ├── testAnalyzerFilterTokenizerCharFilter.st │ │ └── testBasic.st │ ├── methodProperties.json │ └── properties.json │ ├── ESAnalyzerTests.class │ ├── README.md │ ├── instance │ │ ├── testCustomAnalyzer.st │ │ └── testStandardAnalyzer.st │ ├── methodProperties.json │ └── properties.json │ ├── ESAndFilterTest.class │ ├── README.md │ ├── instance │ │ ├── testASJsonString1.st │ │ ├── testASJsonString2.st │ │ ├── testASJsonString3.st │ │ └── testASJsonString4.st │ ├── methodProperties.json │ └── properties.json │ ├── ESBoolQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testASJsonString.st │ │ ├── testJsonQuery1.st │ │ └── testJsonQuery2.st │ ├── methodProperties.json │ └── properties.json │ ├── ESDocumentDependentTests.class │ ├── README.md │ ├── instance │ │ ├── newDocument.st │ │ └── setUp.st │ ├── methodProperties.json │ └── properties.json │ ├── ESDocumentTests.class │ ├── README.md │ ├── instance │ │ ├── testAddDocument.st │ │ └── testGetDocument.st │ ├── methodProperties.json │ └── properties.json │ ├── ESExistsFilterTest.class │ ├── README.md │ ├── instance │ │ └── testAsJsonString.st │ ├── methodProperties.json │ └── properties.json │ ├── ESFilteredQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString.st │ │ ├── testJsonQuery1.st │ │ └── testJsonQuery2.st │ ├── methodProperties.json │ └── properties.json │ ├── ESFuzzyLikeThisQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString.st │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESIndexDependentTests.class │ ├── README.md │ ├── instance │ │ ├── deleteIndex.st │ │ ├── indexName.st │ │ ├── setUp.st │ │ └── tearDown.st │ ├── methodProperties.json │ └── properties.json │ ├── ESIndexTests.class │ ├── README.md │ ├── instance │ │ ├── testCreateIndex.st │ │ └── testCreateIndex2.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMappingPropertiesTests.class │ ├── README.md │ ├── instance │ │ └── testStringProperty.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMappingPropertyTests.class │ ├── README.md │ ├── instance │ │ ├── testMultiFieldProperty.st │ │ └── testStringProperty.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMappingTests.class │ ├── README.md │ ├── instance │ │ └── testStringProperty.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMatchAllQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString.st │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMatchQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString.st │ │ ├── testJsonQuery.st │ │ ├── testModifiedJson.st │ │ └── testSimpleJson.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMinAggregationTest.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString1.st │ │ ├── testAsJsonString2.st │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMoreLikeThisQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString.st │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESMultiMatchQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonQuery.st │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESNotFilterTest.class │ ├── README.md │ ├── instance │ │ ├── testASJsonString1.st │ │ └── testASJsonString2.st │ ├── methodProperties.json │ └── properties.json │ ├── ESOrFilterTest.class │ ├── README.md │ ├── instance │ │ ├── testASJsonString1.st │ │ ├── testASJsonString2.st │ │ ├── testASJsonString3.st │ │ └── testASJsonString4.st │ ├── methodProperties.json │ └── properties.json │ ├── ESQueryStringQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString.st │ │ └── testSimpleStringQueryAsURIRequest.st │ ├── methodProperties.json │ └── properties.json │ ├── ESRangeFilterTest.class │ ├── README.md │ ├── instance │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESRegexpFilterTest.class │ ├── README.md │ ├── instance │ │ └── testAsJsonString.st │ ├── methodProperties.json │ └── properties.json │ ├── ESRegexpQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString1.st │ │ ├── testAsJsonString2.st │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESSearchTests.class │ ├── README.md │ ├── instance │ │ ├── createSearch.st │ │ ├── setUp.st │ │ ├── testQueryStringSearch.st │ │ ├── testSearchUsingFuzzyLikeThisQuery.st │ │ ├── testSearchUsingMatchQuery.st │ │ └── testSearchUsingMoreLikeThisQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESSortCriteriaTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString1.st │ │ ├── testAsJsonString2.st │ │ ├── testAsJsonString3.st │ │ ├── testAsJsonString4.st │ │ └── testAsJsonString5.st │ ├── methodProperties.json │ └── properties.json │ ├── ESSortTests.class │ ├── README.md │ ├── instance │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESTermFilterTest.class │ ├── README.md │ ├── instance │ │ └── testAsJsonString.st │ ├── methodProperties.json │ └── properties.json │ ├── ESTermQueryTests.class │ ├── README.md │ ├── instance │ │ ├── testAsJsonString.st │ │ └── testJsonQuery.st │ ├── methodProperties.json │ └── properties.json │ ├── ESTests.class │ ├── README.md │ ├── methodProperties.json │ └── properties.json │ ├── ESTokenFilterTests.class │ ├── README.md │ ├── instance │ │ └── testNGram.st │ ├── methodProperties.json │ └── properties.json │ ├── ESTokenizerTests.class │ ├── README.md │ ├── instance │ │ └── testWhitespace.st │ ├── methodProperties.json │ └── properties.json │ ├── ESURISearchTests.class │ ├── README.md │ ├── instance │ │ ├── createSearch.st │ │ └── testURISearch.st │ ├── methodProperties.json │ └── properties.json │ ├── monticello.meta │ ├── categories.st │ ├── initializers.st │ ├── package │ └── version │ └── properties.json ├── sample.txt └── sample └── sushi.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: newapplesho 2 | -------------------------------------------------------------------------------- /pharo-repository/.filetree: -------------------------------------------------------------------------------- 1 | {"packageExtension" : ".package", 2 | "propertyFileExtension" : ".json" } -------------------------------------------------------------------------------- /pharo-repository/BaselineOfElasticsearch.package/.filetree: -------------------------------------------------------------------------------- 1 | { 2 | "separateMethodMetaAndSource" : false, 3 | "noMethodMetaData" : true, 4 | "useCypressPropertiesFile" : true 5 | } -------------------------------------------------------------------------------- /pharo-repository/BaselineOfElasticsearch.package/BaselineOfElasticsearch.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "baseline:" : "MasashiUmezawa 8/1/2019 09:29" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/BaselineOfElasticsearch.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #BaselineOfElasticsearch! 2 | -------------------------------------------------------------------------------- /pharo-repository/BaselineOfElasticsearch.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/BaselineOfElasticsearch.package/monticello.meta/initializers.st -------------------------------------------------------------------------------- /pharo-repository/BaselineOfElasticsearch.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'BaselineOfElasticsearch') -------------------------------------------------------------------------------- /pharo-repository/BaselineOfElasticsearch.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/.filetree: -------------------------------------------------------------------------------- 1 | { 2 | "noMethodMetaData" : true, 3 | "separateMethodMetaAndSource" : false, 4 | "useCypressPropertiesFile" : true } 5 | -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/ConfigurationOfElasticsearch.class/class/ensureMetacello.st: -------------------------------------------------------------------------------- 1 | private 2 | ensureMetacello 3 | 4 | (self baseConfigurationClassIfAbsent: []) ensureMetacello -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/ConfigurationOfElasticsearch.class/class/isMetacelloConfig.st: -------------------------------------------------------------------------------- 1 | metacello tool support 2 | isMetacelloConfig 3 | "Answer true and the Metacello tools will operate on you" 4 | 5 | ^true -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/ConfigurationOfElasticsearch.class/class/project.st: -------------------------------------------------------------------------------- 1 | accessing 2 | project 3 | 4 | ^self new project -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/ConfigurationOfElasticsearch.class/instance/stable..st: -------------------------------------------------------------------------------- 1 | symbolic versions 2 | stable: spec 3 | 4 | spec for: #common version: '1.1.3' -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/ConfigurationOfElasticsearch.class/instance/validateConfiguration.st: -------------------------------------------------------------------------------- 1 | scripts 2 | validateConfiguration 3 | MetacelloToolBox validateConfiguration: ConfigurationOfElasticsearch -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/monticello.meta/categories.st: -------------------------------------------------------------------------------- 1 | SystemOrganization addCategory: #ConfigurationOfElasticsearch! 2 | -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/ConfigurationOfElasticsearch.package/monticello.meta/initializers.st -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'ConfigurationOfElasticsearch') -------------------------------------------------------------------------------- /pharo-repository/ConfigurationOfElasticsearch.package/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/.filetree: -------------------------------------------------------------------------------- 1 | { 2 | "separateMethodMetaAndSource" : false, 3 | "noMethodMetaData" : true, 4 | "useCypressPropertiesFile" : true 5 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/DateAndTime.extension/instance/jsonWriteOn..st: -------------------------------------------------------------------------------- 1 | *Elasticsearch-Core 2 | jsonWriteOn: aStream 3 | aStream nextPut: $". 4 | self printOn: aStream. 5 | aStream nextPut: $" -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/DateAndTime.extension/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "jsonWriteOn:" : "PaulDeBruicker 4/29/2013 16:07" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/DateAndTime.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "DateAndTime" 3 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/instance/queryUrl.st: -------------------------------------------------------------------------------- 1 | urls 2 | queryUrl 3 | | url | 4 | url := self searchUrl. 5 | self uriParameters keysAndValuesDo: [ :queryKey :queryValue | url queryAt: queryKey put: queryValue ]. 6 | ^ url -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/instance/searchFrom..st: -------------------------------------------------------------------------------- 1 | parameters 2 | searchFrom: aNumber 3 | self uriParameters at: 'search_from' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/instance/searchIndices..st: -------------------------------------------------------------------------------- 1 | parameters 2 | searchIndices: anArrayOfIndexNames 3 | self uriParameters at: 'search_indices' put: anArrayOfIndexNames asCommaString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/instance/searchScroll..st: -------------------------------------------------------------------------------- 1 | parameters 2 | searchScroll: aNumber 3 | self uriParameters at: 'search_scroll' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/instance/searchSize..st: -------------------------------------------------------------------------------- 1 | parameters 2 | searchSize: aNumber 3 | self uriParameters at: 'search_size' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAPISearch.class/instance/searchUrl.st: -------------------------------------------------------------------------------- 1 | accessing 2 | searchUrl 3 | ^ self index searchUrl -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESAggregation.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/aggregationName..st: -------------------------------------------------------------------------------- 1 | accessing 2 | aggregationName: anObject 3 | ^ aggregationName := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/aggregationName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | aggregationName 3 | ^ aggregationName ifNil:[ aggregationName := self type,'_', self field ]. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/field..st: -------------------------------------------------------------------------------- 1 | accessing 2 | field: aString 3 | self modifiers at: 'field' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/field.st: -------------------------------------------------------------------------------- 1 | accessing 2 | field 3 | ^ self modifiers at: 'field' ifAbsent: ['']. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/jsonStringContents.st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonStringContents 3 | ^ NeoJSONWriter toString: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self aggregationName. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/jsonWriteContentOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentOn: aStream 3 | self jsonWriteContentBeginOn: aStream. 4 | self jsonWriteContentValueOn: aStream. 5 | self jsonWriteContentEndOn: aStream. 6 | 7 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/jsonWriteOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteOn: aStream 3 | self jsonWriteContentOn: aStream. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/modifiers..st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers: anObject 3 | modifiers := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/modifiers.st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers 3 | ^ modifiers ifNil:[ modifiers := Dictionary new] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/neoJsonOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | neoJsonOn: neoJSONWriter 3 | neoJSONWriter writeElasticsearchObject: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/script..st: -------------------------------------------------------------------------------- 1 | accessing 2 | script: aString 3 | self modifiers at: 'script' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregation.class/instance/type.st: -------------------------------------------------------------------------------- 1 | constants 2 | type 3 | self subclassResponsibility -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregations.class/instance/addAggregation..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addAggregation: anAggregations 3 | self aggregations add: anAggregations -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregations.class/instance/aggregations..st: -------------------------------------------------------------------------------- 1 | accessing 2 | aggregations: anObject 3 | 4 | aggregations := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregations.class/instance/aggregations.st: -------------------------------------------------------------------------------- 1 | accessing 2 | aggregations 3 | 4 | ^ aggregations ifNil:[ aggregations := OrderedCollection new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregations.class/instance/hasAggregations.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasAggregations 3 | ^ self aggregations isNotEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregations.class/instance/jsonWriteOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteOn: aStream 3 | self aggregations do: [ :v | v jsonWriteOn: aStream ] separatedBy: [ aStream nextPut: $, ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAggregations.class/instance/neoJsonOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | neoJsonOn: neoJSONWriter 3 | neoJSONWriter writeElasticsearchObject: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/README.md: -------------------------------------------------------------------------------- 1 | http://www.elasticsearch.org/guide/reference/index-modules/analysis/ -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/addAnalyzer..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addAnalyzer: anESAnalyzer 3 | self analyzers add: anESAnalyzer -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/addCharFilter..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addCharFilter: aCharFilter 3 | self charFilters add: aCharFilter -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/addFilter..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addFilter: anESAnalyzer 3 | self filters add: anESAnalyzer -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/addTokenizer..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addTokenizer: anESAnalyzer 3 | self tokenizers add: anESAnalyzer -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/analyzers..st: -------------------------------------------------------------------------------- 1 | accessing 2 | analyzers: anObject 3 | analyzers := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/analyzers.st: -------------------------------------------------------------------------------- 1 | accessing 2 | analyzers 3 | ^ analyzers -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/charFilters..st: -------------------------------------------------------------------------------- 1 | accessing 2 | charFilters: anObject 3 | charFilters := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/charFilters.st: -------------------------------------------------------------------------------- 1 | accessing 2 | charFilters 3 | ^ charFilters -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/filters..st: -------------------------------------------------------------------------------- 1 | accessing 2 | filters: anObject 3 | filters := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/filters.st: -------------------------------------------------------------------------------- 1 | accessing 2 | filters 3 | ^ filters -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/hasAnalyzers.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasAnalyzers 3 | ^ self analyzers notEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/hasCharFilter.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasCharFilter 3 | ^ self charFilters notEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/hasFilter.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasFilter 3 | ^ self filters notEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/hasTokenizer.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasTokenizer 3 | ^ self tokenizers notEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | initialize-release 2 | initialize 3 | super initialize. 4 | analyzers := Set new. 5 | tokenizers := Set new. 6 | filters := Set new. 7 | charFilters := Set new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/jsonStringFromCollection..st: -------------------------------------------------------------------------------- 1 | json 2 | jsonStringFromCollection: aSet 3 | | d1 | 4 | d1 := Dictionary new. 5 | aSet do: [ :each | d1 at: each name put: each jsonContent ]. 6 | ^ d1 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/tokenizers..st: -------------------------------------------------------------------------------- 1 | accessing 2 | tokenizers: anObject 3 | tokenizers := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalysis.class/instance/tokenizers.st: -------------------------------------------------------------------------------- 1 | accessing 2 | tokenizers 3 | ^ tokenizers -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | initialization 2 | initialize 3 | super initialize. 4 | modifiers := Dictionary new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/jsonContent.st: -------------------------------------------------------------------------------- 1 | json 2 | jsonContent 3 | | d1 | 4 | d1 := self modifiers copy. 5 | d1 at: 'type' put: self type. 6 | ^ d1 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/modifiers..st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers: anObject 3 | modifiers := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/modifiers.st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers 3 | ^ modifiers -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/name..st: -------------------------------------------------------------------------------- 1 | accessing 2 | name: anObject 3 | name := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/name.st: -------------------------------------------------------------------------------- 1 | accessing 2 | name 3 | ^ name -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/stopwords..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | stopwords: anArrayOfWords 3 | self modifiers at: 'stopwords' put: anArrayOfWords -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | self subclassResponsibility -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAndFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESAndFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAndFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'and' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAndFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "filterType" : "ShoYoshida 6/15/2015 21:25" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAvgAggregation.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESAvgAggregation.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAvgAggregation.class/instance/type.st: -------------------------------------------------------------------------------- 1 | constants 2 | type 3 | ^ 'avg' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESAvgAggregation.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "ShoYoshida 6/12/2015 13:51" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBinaryMappingProperty.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESBinaryMappingProperty.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBinaryMappingProperty.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'binary' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBinaryMappingProperty.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 5/6/2013 14:49" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/filter..st: -------------------------------------------------------------------------------- 1 | accessing 2 | filter: anObject 3 | self modifiers at:'filter' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self queryType. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/jsonWriteContentValueOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentValueOn: aStream 3 | aStream writer nextPut: self modifiers -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/minimum_should_match..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minimum_should_match: anObject 3 | self modifiers at:'minimum_should_match' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/must..st: -------------------------------------------------------------------------------- 1 | accessing 2 | must: anObject 3 | self modifiers at:'must' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/must_not..st: -------------------------------------------------------------------------------- 1 | accessing 2 | must_not: anObject 3 | self modifiers at:'filter' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^ 'bool' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBoolQuery.class/instance/should..st: -------------------------------------------------------------------------------- 1 | accessing 2 | should: aCollection 3 | self modifiers at:'should' put: aCollection -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESBooleanFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanFilter.class/instance/addFilter..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addFilter: aFilter 3 | self filterList add: aFilter -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanFilter.class/instance/filterList..st: -------------------------------------------------------------------------------- 1 | accessing 2 | filterList: anObject 3 | filterList := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanFilter.class/instance/filterList.st: -------------------------------------------------------------------------------- 1 | accessing 2 | filterList 3 | ^ filterList ifNil:[ filterList := OrderedCollection new. ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanFilter.class/instance/jsonWriteContentValueOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentValueOn: aStream 3 | aStream writer nextPut: self filterList -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanMappingProperty.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESBooleanMappingProperty.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanMappingProperty.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'boolean' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESBooleanMappingProperty.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 5/6/2013 14:49" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESCharFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESCharFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESCharFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { }, 3 | "class" : { } 4 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESClientEvent.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESClientEvent.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESClientEvent.class/instance/jsonString..st: -------------------------------------------------------------------------------- 1 | accessing 2 | jsonString: anObject 3 | 4 | jsonString := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESClientEvent.class/instance/jsonString.st: -------------------------------------------------------------------------------- 1 | accessing 2 | jsonString 3 | 4 | ^ jsonString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESClientEvent.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "jsonString" : "MasashiUmezawa 6/10/2015 14:52", 4 | "jsonString:" : "MasashiUmezawa 6/10/2015 14:52" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESCustomAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESCustomAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESCustomAnalyzer.class/instance/charFilter..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | charFilter: anESCharFilter 3 | self modifiers at: 'char_filter' put: anESCharFilter -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESCustomAnalyzer.class/instance/filter..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | filter: anESFilter 3 | self modifiers at: 'filter' put: anESFilter -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESCustomAnalyzer.class/instance/tokenizer..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | tokenizer: anESTokenizer 3 | self modifiers at: 'tokenizer' put: anESTokenizer -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESCustomAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'custom' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDateMappingProperty.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESDateMappingProperty.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDateMappingProperty.class/instance/format..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | format: aString 3 | self modifiers at: 'format' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDateMappingProperty.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'date' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDateMappingProperty.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "format:" : "PaulDeBruicker 5/6/2013 14:45", 4 | "type" : "PaulDeBruicker 5/6/2013 14:49" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/class/queries..st: -------------------------------------------------------------------------------- 1 | instance creation 2 | queries: aCollection 3 | ^self new queries: aCollection; yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | 4 | aStream nextPutAll: '{ "dis_max": ' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | 4 | aStream nextPutAll: '}' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/jsonWriteContentValueOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentValueOn: aStream 3 | aStream writer nextPut: self modifiers 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/queries..st: -------------------------------------------------------------------------------- 1 | accessing 2 | queries: aCollection 3 | self modifiers at:'queries' put: aCollection -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/queries.st: -------------------------------------------------------------------------------- 1 | accessing 2 | queries 3 | ^self modifiers at:'queries' ifAbsentPut: [ #() ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/tieBreaker..st: -------------------------------------------------------------------------------- 1 | accessing 2 | tieBreaker: aNumber 3 | ^ self modifiers at: 'tie_breaker' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDisMaxQuery.class/instance/tieBreaker.st: -------------------------------------------------------------------------------- 1 | accessing 2 | tieBreaker 3 | ^ self modifiers at: 'tie_breaker' ifAbsentPut: [ 0 ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESDocument.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/class/fromJson.inIndex..st: -------------------------------------------------------------------------------- 1 | instance creation 2 | fromJson: aJsonObject inIndex: anESIndex 3 | ^ self new parseContentFromJson: aJsonObject fromIndex: anESIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/class/ofType.withContent..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | ofType: aType withContent: aDictionaryOfDocumentContent 3 | ^ self new 4 | type: aType; 5 | content: aDictionaryOfDocumentContent; 6 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/class/setIdInClient.st: -------------------------------------------------------------------------------- 1 | testing 2 | setIdInClient 3 | ^false -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/class/withContent..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | withContent: aDictionaryOfDocumentContent 3 | ^ self new 4 | content: aDictionaryOfDocumentContent; 5 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/content..st: -------------------------------------------------------------------------------- 1 | accessing 2 | content: aDictionary 3 | content := aDictionary. 4 | self updateModifiedTime -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/content.st: -------------------------------------------------------------------------------- 1 | accessing 2 | content 3 | 4 | ^ content -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/created..st: -------------------------------------------------------------------------------- 1 | accessing 2 | created: aDateAndTime 3 | 4 | created := aDateAndTime -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/created.st: -------------------------------------------------------------------------------- 1 | accessing 2 | created 3 | ^ created -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/hasId.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasId 3 | ^ self id notEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/hasVersion.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasVersion 3 | ^ self version notNil -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/hash.st: -------------------------------------------------------------------------------- 1 | comparing 2 | hash 3 | "Answer an integer value that is related to the identity of the receiver." 4 | 5 | ^ content hash bitXor: id hash -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/id..st: -------------------------------------------------------------------------------- 1 | accessing 2 | id: aByteString 3 | 4 | id := aByteString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/id.st: -------------------------------------------------------------------------------- 1 | accessing 2 | id 3 | 4 | id isNil ifTrue: [self setId] . 5 | 6 | ^id -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/id1.st: -------------------------------------------------------------------------------- 1 | accessing 2 | id1 3 | ^ id -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/index..st: -------------------------------------------------------------------------------- 1 | ids 2 | index: anIndex 3 | index := anIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/index.st: -------------------------------------------------------------------------------- 1 | accessing 2 | index 3 | 4 | ^ index -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | accessing 2 | initialize 3 | super initialize. 4 | created := DateAndTime now. 5 | self updateModifiedTime. 6 | content := Dictionary new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/messageJsonContent.st: -------------------------------------------------------------------------------- 1 | accessing 2 | messageJsonContent 3 | "self content at: 'created' put: self created. 4 | self content at: 'modified' put: self modified." 5 | 6 | ^ self content -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/modified..st: -------------------------------------------------------------------------------- 1 | accessing 2 | modified: aDateAndTime 3 | 4 | modified := aDateAndTime -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/modified.st: -------------------------------------------------------------------------------- 1 | accessing 2 | modified 3 | ^ modified -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/newId.st: -------------------------------------------------------------------------------- 1 | ids 2 | newId 3 | ^ ESDocumentId newId -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/score..st: -------------------------------------------------------------------------------- 1 | accessing 2 | score: anObject 3 | score := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/score.st: -------------------------------------------------------------------------------- 1 | accessing 2 | score 3 | ^ score -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/setId.st: -------------------------------------------------------------------------------- 1 | ids 2 | setId 3 | id := self setIdInClient 4 | ifTrue: [ self newId ] 5 | ifFalse: [ String new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/setIdInClient.st: -------------------------------------------------------------------------------- 1 | testing 2 | setIdInClient 3 | ^self class setIdInClient -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/type..st: -------------------------------------------------------------------------------- 1 | accessing 2 | type: aByteString 3 | 4 | type := aByteString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/type.st: -------------------------------------------------------------------------------- 1 | accessing 2 | type 3 | 4 | ^ type ifNil:['noType'] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/updateModifiedTime.st: -------------------------------------------------------------------------------- 1 | accessing 2 | updateModifiedTime 3 | modified := DateAndTime now -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/urlForIndexing.st: -------------------------------------------------------------------------------- 1 | urls 2 | urlForIndexing 3 | ^ self baseUrl 4 | addToPath: self index name; 5 | addToPath: self type; 6 | addToPath: self id -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/version..st: -------------------------------------------------------------------------------- 1 | accessing 2 | version: aSmallInteger 3 | 4 | version := aSmallInteger -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocument.class/instance/version.st: -------------------------------------------------------------------------------- 1 | accessing 2 | version 3 | ^ version -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentId.class/README.md: -------------------------------------------------------------------------------- 1 | Used to create "unique" ids for documents. Elasticsearch will do it automatically if you leave the id field blank when indexing a document -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentId.class/class/defaultIdStrategy.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | defaultIdStrategy 3 | ^ ESDocumentIdUUIDStrategy -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentId.class/class/newId.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | newId 3 | ^ self defaultIdStrategy new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentId.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { }, 3 | "class" : { 4 | "defaultIdStrategy" : "PaulDeBruicker 4/23/2013 14:54", 5 | "newId" : "PaulDeBruicker 4/23/2013 14:48" 6 | } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentIdUUIDStrategy.class/README.md: -------------------------------------------------------------------------------- 1 | Use this if you want to create your own UUIDs to use as ids for your documents. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentIdUUIDStrategy.class/class/new.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | new 3 | ^ UUID new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentIdUUIDStrategy.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { }, 3 | "class" : { 4 | "new" : "PaulDeBruicker 4/23/2013 14:53" 5 | } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentIdUnixSecondsStrategy.class/README.md: -------------------------------------------------------------------------------- 1 | Use this if you want to create your own timestamps to use as ids for your documents. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentIdUnixSecondsStrategy.class/class/new.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | new 3 | ^ DateAndTime now asUnixTime -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESDocumentIdUnixSecondsStrategy.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { }, 3 | "class" : { 4 | "new" : "PaulDeBruicker 4/23/2013 14:50" 5 | } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESEdgeNGramTokenFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESEdgeNGramTokenFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESEdgeNGramTokenFilter.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | initialize 3 | super initialize. 4 | self side: 'front' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESEdgeNGramTokenFilter.class/instance/side..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | side: aSide 3 | self modifiers at: 'side' put: aSide -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESEdgeNGramTokenFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "initialize" : "PaulDeBruicker 5/9/2013 07:47", 4 | "side:" : "PaulDeBruicker 5/9/2013 07:47" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESException.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESException.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESException.class/instance/message.st: -------------------------------------------------------------------------------- 1 | accessing 2 | message 3 | ^ self properties message -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESException.class/instance/properties..st: -------------------------------------------------------------------------------- 1 | accessing 2 | properties: anObject 3 | properties := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESException.class/instance/properties.st: -------------------------------------------------------------------------------- 1 | accessing 2 | properties 3 | ^ properties -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESExistsFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESExistsFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESExistsFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'exists' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESExistsFilter.class/instance/onField.forValue..st: -------------------------------------------------------------------------------- 1 | tests-printing 2 | onField: aFieldToFilter forValue: aSingleTerm 3 | self modifiers at: aFieldToFilter put: aSingleTerm. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESExistsFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "onField:forValue:" : "ShoYoshida 1/12/2016 21:34", 4 | "filterType" : "ShoYoshida 1/12/2016 21:34" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/AND..st: -------------------------------------------------------------------------------- 1 | operations 2 | AND: aFilter 3 | aFilter ifNil:[ ^ ESAndFilter new addFilter: self; yourself. ]. 4 | ^ ESAndFilter new addFilter: self; addFilter: aFilter; yourself. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/OR..st: -------------------------------------------------------------------------------- 1 | operations 2 | OR: aFilter 3 | aFilter ifNil:[ ^ ESOrFilter new addFilter: self; yourself ]. 4 | ^ ESOrFilter new addFilter: self; addFilter: aFilter; yourself. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/asJsonString.st: -------------------------------------------------------------------------------- 1 | printing 2 | asJsonString 3 | ^self jsonStringContents -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/cache..st: -------------------------------------------------------------------------------- 1 | accessing 2 | cache: aBoolean 3 | self modifiers at: '_cache' put: aBoolean -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | private 2 | filterType 3 | self subclassResponsibility -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/jsonStringContents.st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonStringContents 3 | ^ NeoJSONWriter toString: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self filterType. 5 | aStream nextPut: $:. 6 | 7 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/jsonWriteContentOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentOn: aStream 3 | self jsonWriteContentBeginOn: aStream. 4 | self jsonWriteContentValueOn: aStream. 5 | self jsonWriteContentEndOn: aStream. 6 | 7 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/jsonWriteContentValueOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentValueOn: aStream 3 | aStream writer nextPut: self modifiers 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/jsonWriteOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteOn: aStream 3 | 4 | self jsonWriteContentOn: aStream. 5 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/modifiers..st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers: anObject 3 | modifiers := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/modifiers.st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers 3 | ^ modifiers ifNil:[ modifiers := Dictionary new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/neoJsonOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | neoJsonOn: neoJSONWriter 3 | neoJSONWriter writeElasticsearchObject: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilter.class/instance/not.st: -------------------------------------------------------------------------------- 1 | operations 2 | not 3 | ^ ESNotFilter new setFilter: self; yourself. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilteredQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESFilteredQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilteredQuery.class/instance/filter..st: -------------------------------------------------------------------------------- 1 | accessing 2 | filter: aFilter 3 | self modifiers at:'filter' put: aFilter -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilteredQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self queryType. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilteredQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFilteredQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^ 'filtered' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFuzzyLikeThisQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESFuzzyLikeThisQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFuzzyLikeThisQuery.class/instance/ignoreTermFrequency..st: -------------------------------------------------------------------------------- 1 | accessing 2 | ignoreTermFrequency: aBoolean 3 | ^ self modifiers at: 'ignore_tf' put: aBoolean -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFuzzyLikeThisQuery.class/instance/minimumSimilarity..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minimumSimilarity: aNumber 3 | ^ self modifiers at: 'min_similarity' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFuzzyLikeThisQuery.class/instance/minimumSimilaryity..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minimumSimilaryity: aNumber 3 | ^ self modifiers at: 'min_similarity' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESFuzzyLikeThisQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^ 'fuzzy_like_this' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/README.md: -------------------------------------------------------------------------------- 1 | This class only exists because I'm going to port the package to Squeak and as far as I know Squeak doesn't use Zinc but instead uses WebClient and somebody will have to change all the HTTP client stuff -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/class/defaultHostName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | defaultHostName 3 | ^ 'localhost' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/class/defaultHttpClient.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | defaultHttpClient 3 | ^ ESZnClient -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/class/defaultPort.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | defaultPort 3 | ^ 9200 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/class/httpClient.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | httpClient 3 | ^ self defaultHttpClient new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/class/resetClient.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | resetClient 3 | default:=nil -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/defaultUnderlyingClientClass.st: -------------------------------------------------------------------------------- 1 | defaults 2 | defaultUnderlyingClientClass 3 | self subclassResponsibility -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/defaultUrl.st: -------------------------------------------------------------------------------- 1 | urls 2 | defaultUrl 3 | self subclassResponsibility -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/delete..st: -------------------------------------------------------------------------------- 1 | http-method 2 | delete: aZnUrl 3 | ^ (self underlyingClientDo: [ :cli | cli delete: aZnUrl url ]) -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/emitJsonBodyAttachEvent..st: -------------------------------------------------------------------------------- 1 | logging 2 | emitJsonBodyAttachEvent: aByteString 3 | (self newLogEvent: ESJsonBodyAttachEvent) jsonString: aByteString; emit -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/emitJsonResponseReceivedEvent..st: -------------------------------------------------------------------------------- 1 | logging 2 | emitJsonResponseReceivedEvent: aByteString 3 | (self newLogEvent: ESJsonResponseReceivedEvent) jsonString: aByteString; emit -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/head..st: -------------------------------------------------------------------------------- 1 | http-method 2 | head: aUrl 3 | ^ self underlyingClientDo: [ :cli | cli head: aUrl url ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/hostName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | hostName 3 | ^ self class defaultHostName -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/indexExistsAt..st: -------------------------------------------------------------------------------- 1 | testing 2 | indexExistsAt: aUrl 3 | ^ ((self head: aUrl) code) = 200 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/jsonStringFrom..st: -------------------------------------------------------------------------------- 1 | converting 2 | jsonStringFrom: data 3 | ^ data isString ifTrue: [ data ] ifFalse: [ NeoJSONWriter toString: data ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/logToTranscript.st: -------------------------------------------------------------------------------- 1 | logging 2 | logToTranscript 3 | ^ self underlyingClient logToTranscript -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/loggingOff.st: -------------------------------------------------------------------------------- 1 | logging 2 | loggingOff 3 | ^ self underlyingClient loggingOff -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/newLogEvent..st: -------------------------------------------------------------------------------- 1 | private 2 | newLogEvent: logEventClass 3 | ^ self underlyingClient newLogEvent: logEventClass -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/newUnderlyingClient.st: -------------------------------------------------------------------------------- 1 | factory 2 | newUnderlyingClient 3 | ^ self defaultUnderlyingClientClass new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/port.st: -------------------------------------------------------------------------------- 1 | accessing 2 | port 3 | ^ self class defaultPort -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/typeExistsAt..st: -------------------------------------------------------------------------------- 1 | testing 2 | typeExistsAt: aUrl 3 | ^ ((self head: aUrl) code) = 200 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/underlyingClient.st: -------------------------------------------------------------------------------- 1 | accessing 2 | underlyingClient 3 | ^ underlyingClient ifNil: [ underlyingClient := self newUnderlyingClient] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHTTPClient.class/instance/url.st: -------------------------------------------------------------------------------- 1 | urls 2 | url 3 | ^ self defaultUrl new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHtmlStripCharFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESHtmlStripCharFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHtmlStripCharFilter.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'html_strip' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESHtmlStripCharFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 5/6/2013 13:34" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESIndex.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/class/createIndex..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | createIndex: anIndexName 3 | ^ self new createIndexNamed: anIndexName -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/class/deleteIndex..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | deleteIndex: anIndexName 3 | ^ self new deleteIndexNamed: anIndexName -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/class/indexNamed..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indexNamed: aName 3 | ^ self new 4 | name: aName; 5 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/addDocument..st: -------------------------------------------------------------------------------- 1 | documents 2 | addDocument: anESDocument 3 | anESDocument addToIndex: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/analysis..st: -------------------------------------------------------------------------------- 1 | accessing 2 | analysis: anObject 3 | analysis := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/analysis.st: -------------------------------------------------------------------------------- 1 | accessing 2 | analysis 3 | ^ analysis -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/countUrl.st: -------------------------------------------------------------------------------- 1 | urls 2 | countUrl 3 | ^ self countUrlForType: self type -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/countUrlForType..st: -------------------------------------------------------------------------------- 1 | urls 2 | countUrlForType: aType 3 | | url | 4 | url := self url. 5 | aType notEmpty 6 | ifTrue: [ url addToPath: aType ]. 7 | url addToPath: '_count'. 8 | ^ url -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/createIndexNamed..st: -------------------------------------------------------------------------------- 1 | actions 2 | createIndexNamed: aName 3 | self name: aName. 4 | self create -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/delete.st: -------------------------------------------------------------------------------- 1 | actions 2 | delete 3 | self indexExists 4 | ifTrue: [ self deleteIndexNamed: self name ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/deleteDocument..st: -------------------------------------------------------------------------------- 1 | documents 2 | deleteDocument: anESDocument 3 | anESDocument deleteFromIndex: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/ensureExistence.st: -------------------------------------------------------------------------------- 1 | actions 2 | ensureExistence 3 | self indexExists 4 | ifFalse: [ self createIndexNamed: self name ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/hasAnalysis.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasAnalysis 3 | ^self analysis notNil -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/hasMapping.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasMapping 3 | ^ self mapping notNil -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/hasNotDefaultValuesForShardsAndReplicas.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasNotDefaultValuesForShardsAndReplicas 3 | ^ self shards ~= 5 or: [ self replicas ~= 1 ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/hasSettings.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasSettings 3 | ^ self hasAnalysis or: [ self hasNotDefaultValuesForShardsAndReplicas ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/indexExists.st: -------------------------------------------------------------------------------- 1 | testing 2 | indexExists 3 | ^ self httpClient indexExistsAt: self url -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | initialization 2 | initialize 3 | super initialize. 4 | shards := 5. 5 | replicas := 1 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/mapping..st: -------------------------------------------------------------------------------- 1 | accessing 2 | mapping: anObject 3 | mapping := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/mapping.st: -------------------------------------------------------------------------------- 1 | accessing 2 | mapping 3 | ^ mapping -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/replicas..st: -------------------------------------------------------------------------------- 1 | accessing 2 | replicas: anObject 3 | replicas := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/replicas.st: -------------------------------------------------------------------------------- 1 | accessing 2 | replicas 3 | ^ replicas -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/searchFor..st: -------------------------------------------------------------------------------- 1 | search 2 | searchFor: aQuery 3 | ^ self httpClient get: aQuery searchUrl -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/searchUrl.st: -------------------------------------------------------------------------------- 1 | urls 2 | searchUrl 3 | ^ self searchUrlForType: self type -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/searchUrlForType..st: -------------------------------------------------------------------------------- 1 | urls 2 | searchUrlForType: aType 3 | | url | 4 | url := self url. 5 | aType notEmpty 6 | ifTrue: [ url addToPath: aType ]. 7 | url addToPath: '_search'. 8 | ^ url -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/shards..st: -------------------------------------------------------------------------------- 1 | accessing 2 | shards: anObject 3 | shards := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/shards.st: -------------------------------------------------------------------------------- 1 | accessing 2 | shards 3 | ^ shards -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/statusUrl.st: -------------------------------------------------------------------------------- 1 | urls 2 | statusUrl 3 | ^ self baseUrl addToPath: '_status' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/type..st: -------------------------------------------------------------------------------- 1 | accessing 2 | type: aByteString 3 | type:=aByteString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/type.st: -------------------------------------------------------------------------------- 1 | accessing 2 | type 3 | ^type ifNil:[''] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/url.st: -------------------------------------------------------------------------------- 1 | urls 2 | url 3 | ^ self baseUrl addToPath: self name -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESIndex.class/instance/urlToGetDocument..st: -------------------------------------------------------------------------------- 1 | urls 2 | urlToGetDocument: anESDocument 3 | ^ self baseUrl 4 | addToPath: self name; 5 | addToPath: anESDocument type; 6 | addToPath: anESDocument id -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonBodyAttachEvent.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESJsonBodyAttachEvent.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonBodyAttachEvent.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "printContentsOn:" : "MasashiUmezawa 6/10/2015 14:32" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonResponseReceivedEvent.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "printContentsOn:" : "MasashiUmezawa 6/10/2015 14:58" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/class/on.writer..st: -------------------------------------------------------------------------------- 1 | instance creation 2 | on: aStream writer: writer 3 | ^ self new 4 | stream: aStream; 5 | writer: writer; 6 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/instance/nextPut..st: -------------------------------------------------------------------------------- 1 | stream 2 | nextPut: anObject 3 | self stream nextPut: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/instance/nextPutAll..st: -------------------------------------------------------------------------------- 1 | stream 2 | nextPutAll: anObject 3 | self stream nextPutAll: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/instance/stream..st: -------------------------------------------------------------------------------- 1 | accessing 2 | stream: anObject 3 | stream := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/instance/stream.st: -------------------------------------------------------------------------------- 1 | accessing 2 | stream 3 | ^ stream -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/instance/writer..st: -------------------------------------------------------------------------------- 1 | accessing 2 | writer: anObject 3 | writer := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESJsonWriteStream.class/instance/writer.st: -------------------------------------------------------------------------------- 1 | accessing 2 | writer 3 | ^ writer -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESKeywordAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESKeywordAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESKeywordAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'keyword' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESKeywordAnalyzer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 5/6/2013 13:20" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLetterTokenizer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESLetterTokenizer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLetterTokenizer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'letter' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLetterTokenizer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 1/10/2014 07:43" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLikeThisQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESLikeThisQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLikeThisQuery.class/instance/fields..st: -------------------------------------------------------------------------------- 1 | accessing 2 | fields: aFieldOrArrayOfFields 3 | ^ self modifiers at: 'fields' put: aFieldOrArrayOfFields -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLikeThisQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self queryType. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLikeThisQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLikeThisQuery.class/instance/maximumQueryTerms..st: -------------------------------------------------------------------------------- 1 | accessing 2 | maximumQueryTerms: aNumber 3 | ^ self modifiers at: 'max_query_terms' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESLikeThisQuery.class/instance/queryKeyName.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryKeyName 3 | ^'like_text' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMapping.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/instance/addMappingProperty..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addMappingProperty: aMappingProperty 3 | self properties add: aMappingProperty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/instance/analysis..st: -------------------------------------------------------------------------------- 1 | accessing 2 | analysis: anObject 3 | analysis := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/instance/analysis.st: -------------------------------------------------------------------------------- 1 | accessing 2 | analysis 3 | ^ analysis -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/instance/asJsonString.st: -------------------------------------------------------------------------------- 1 | accessing 2 | asJsonString 3 | | d1 | 4 | d1 := Dictionary new. 5 | d1 at: 'mappings' put: self jsonContent. 6 | ^ d1 asJsonString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/instance/jsonContent.st: -------------------------------------------------------------------------------- 1 | accessing 2 | jsonContent 3 | | d1 | 4 | d1 := Dictionary new. 5 | self properties do: [ :each | d1 at: each name put: each jsonContent ]. 6 | ^ d1 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/instance/properties..st: -------------------------------------------------------------------------------- 1 | accessing 2 | properties: anObject 3 | properties := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMapping.class/instance/properties.st: -------------------------------------------------------------------------------- 1 | accessing 2 | properties 3 | ^ properties ifNil: [ properties := OrderedCollection new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperties.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMappingProperties.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperties.class/instance/addProperty..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addProperty: aProperty 3 | self properties add: aProperty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperties.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | accessing 2 | initialize 3 | super initialize. 4 | properties := OrderedCollection new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperties.class/instance/properties..st: -------------------------------------------------------------------------------- 1 | accessing 2 | properties: anObject 3 | properties := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperties.class/instance/properties.st: -------------------------------------------------------------------------------- 1 | accessing 2 | properties 3 | ^ properties -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/boost..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | boost: aString 3 | self modifiers at: 'boost' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/ignoreMalformed..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | ignoreMalformed: aString 3 | self modifiers at: 'ignore_malformed' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/includeInAll..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | includeInAll: aString 3 | self modifiers at: 'include_in_all' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/indexName..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indexName: aName 3 | self modifiers at: 'index_name' put: aName -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | accessing 2 | initialize 3 | super initialize. 4 | modifiers := Dictionary new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/jsonContent.st: -------------------------------------------------------------------------------- 1 | accessing 2 | jsonContent 3 | | d1 | 4 | d1 := self modifiers copy. 5 | d1 at: 'type' put: self type. 6 | ^ d1 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/modifiers.st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers 3 | 4 | ^ modifiers -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/nullValue..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | nullValue: aString 3 | self modifiers at: 'null_value' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/precisionStep..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | precisionStep: aString 3 | self modifiers at: 'precision_step' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/store..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | store: yesOrNo 3 | self modifiers at: 'store' put: yesOrNo -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/type..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type: aType 3 | type := aType -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMappingProperty.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ type -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchAllQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMatchAllQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchAllQuery.class/class/forString..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | forString: aString 3 | ^ self new 4 | queryString: aString; 5 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchAllQuery.class/instance/defaultField.st: -------------------------------------------------------------------------------- 1 | default 2 | defaultField 3 | ^ 'match_all' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchAllQuery.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "defaultField" : "ShoYoshida 1/9/2016 10:26" 4 | }, 5 | "class" : { 6 | "forString:" : "MasashiUmezawa 6/3/2015 17:01" 7 | } 8 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/boolean..st: -------------------------------------------------------------------------------- 1 | accessing 2 | boolean: aBoolean 3 | ^ self modifiers at: 'operator' put: aBoolean -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/cutoffFrequency..st: -------------------------------------------------------------------------------- 1 | accessing 2 | cutoffFrequency: aNumber 3 | ^ self modifiers at: 'cutoff_frequency' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/fuzziness..st: -------------------------------------------------------------------------------- 1 | accessing 2 | fuzziness: aNumber 3 | ^ self modifiers at: 'fuzziness' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self queryType. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/matchPhrase.st: -------------------------------------------------------------------------------- 1 | accessing 2 | matchPhrase 3 | self type: 'phrase' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/matchPhrasePrefix.st: -------------------------------------------------------------------------------- 1 | accessing 2 | matchPhrasePrefix 3 | self type: 'phrase_prefix' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/maxExpansions..st: -------------------------------------------------------------------------------- 1 | accessing 2 | maxExpansions: aNumber 3 | ^ self modifiers at: 'max_expansions' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^'match' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMatchQuery.class/instance/type..st: -------------------------------------------------------------------------------- 1 | accessing 2 | type: aString 3 | ^ self modifiers at: 'type' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMaxAggregation.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMaxAggregation.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMaxAggregation.class/instance/type.st: -------------------------------------------------------------------------------- 1 | constants 2 | type 3 | ^ 'max' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMaxAggregation.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "ShoYoshida 6/12/2015 13:53" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMinAggregation.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMinAggregation.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMinAggregation.class/instance/type.st: -------------------------------------------------------------------------------- 1 | constants 2 | type 3 | ^ 'min' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMinAggregation.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "ShoYoshida 6/12/2015 13:53" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisAPISearch.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisAPISearch.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisAPISearch.class/instance/docId..st: -------------------------------------------------------------------------------- 1 | accessing 2 | docId: anObject 3 | docId := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisAPISearch.class/instance/docId.st: -------------------------------------------------------------------------------- 1 | accessing 2 | docId 3 | ^ docId -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisAPISearch.class/instance/docType..st: -------------------------------------------------------------------------------- 1 | accessing 2 | docType: anObject 3 | docType := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisAPISearch.class/instance/docType.st: -------------------------------------------------------------------------------- 1 | accessing 2 | docType 3 | ^ docType -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisAPISearch.class/instance/mltFields..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | mltFields: anArrayOfSearchFields 3 | self uriParameters at: 'mlt_fields' put: anArrayOfSearchFields asCommaString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/boostTerms..st: -------------------------------------------------------------------------------- 1 | accessing 2 | boostTerms: aNumber 3 | ^ self modifiers at: 'boost_terms' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/maximumDocumentFrequency..st: -------------------------------------------------------------------------------- 1 | accessing 2 | maximumDocumentFrequency: aNumber 3 | ^ self modifiers at: 'max_doc_freq' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/maximumWordLength..st: -------------------------------------------------------------------------------- 1 | accessing 2 | maximumWordLength: aNumber 3 | ^ self modifiers at: 'max_word_len' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/minimumDocumentFrequency..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minimumDocumentFrequency: aNumber 3 | ^ self modifiers at: 'min_doc_freq' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/minimumTermFrequency..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minimumTermFrequency: aNumber 3 | ^ self modifiers at: 'min_term_freq' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/minimumWordLength..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minimumWordLength: aNumber 3 | ^ self modifiers at: 'min_word_len' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/percentTermsToMatch..st: -------------------------------------------------------------------------------- 1 | accessing 2 | percentTermsToMatch: aNumber 3 | ^ self modifiers at: 'percent_terms_to_match' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^ 'more_like_this' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMoreLikeThisQuery.class/instance/stopWords..st: -------------------------------------------------------------------------------- 1 | accessing 2 | stopWords: anArrayOfWords 3 | ^ self modifiers at: 'stop_words' put: anArrayOfWords -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/addDefaultField..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addDefaultField: aMappingProperty 3 | self fields add: aMappingProperty. 4 | self name: aMappingProperty name -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/addField..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addField: aMappingProperty 3 | self fields add: aMappingProperty. 4 | self fields isEmpty 5 | ifTrue: [ self name: aMappingProperty name ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/addSecondaryField..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addSecondaryField: aMappingProperty 3 | self fields add: aMappingProperty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/fields.st: -------------------------------------------------------------------------------- 1 | accessing 2 | fields 3 | 4 | ^ fields -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/includeDefaultInAll..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | includeDefaultInAll: aBoolean 3 | includeDefaultInAll := aBoolean -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | initialize 3 | super initialize. 4 | fields := OrderedCollection new. 5 | includeDefaultInAll := true -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/path..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | path: aName 3 | self modifiers at: 'path' put: aName -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiFieldMappingProperty.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'multi_field' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/instance/fields..st: -------------------------------------------------------------------------------- 1 | acccessing 2 | fields: aCollection 3 | ^ self modifiers at: 'fields' put: aCollection -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^'multi_match' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/instance/tieBreaker..st: -------------------------------------------------------------------------------- 1 | acccessing 2 | tieBreaker: aNumber 3 | ^ self modifiers at: 'tie_breaker' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/instance/type..st: -------------------------------------------------------------------------------- 1 | acccessing 2 | type: aString 3 | ^ self modifiers at: 'type' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESMultiMatchQuery.class/instance/useDisMax..st: -------------------------------------------------------------------------------- 1 | acccessing 2 | useDisMax: aBoolean 3 | ^ self modifiers at: 'use_dis_max' put: aBoolean -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNGramTokenFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESNGramTokenFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNGramTokenFilter.class/instance/maxGram..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | maxGram: aNumber 3 | self modifiers at: 'max_gram' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNGramTokenFilter.class/instance/minGram..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | minGram: aNumber 3 | self modifiers at: 'min_gram' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNGramTokenFilter.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'nGram' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNotFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESNotFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNotFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'not' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNotFilter.class/instance/setFilter..st: -------------------------------------------------------------------------------- 1 | accessing 2 | setFilter: aFilter 3 | self modifiers at: 'filter' put: aFilter. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNotFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "setFilter:" : "ShoYoshida 1/11/2016 15:22", 4 | "filterType" : "ShoYoshida 6/15/2015 22:02" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/instance/beByte.st: -------------------------------------------------------------------------------- 1 | convenience 2 | beByte 3 | self type: 'byte' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/instance/beDouble.st: -------------------------------------------------------------------------------- 1 | convenience 2 | beDouble 3 | self type: 'double' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/instance/beFloat.st: -------------------------------------------------------------------------------- 1 | convenience 2 | beFloat 3 | self type: 'float' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/instance/beInteger.st: -------------------------------------------------------------------------------- 1 | convenience 2 | beInteger 3 | self type: 'integer' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/instance/beLong.st: -------------------------------------------------------------------------------- 1 | convenience 2 | beLong 3 | self type: 'long' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESNumberMappingProperty.class/instance/beShort.st: -------------------------------------------------------------------------------- 1 | convenience 2 | beShort 3 | self type: 'short' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESObject.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/baseUrl.st: -------------------------------------------------------------------------------- 1 | accessing 2 | baseUrl 3 | ^ self httpClient baseUrl -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/errorMessageFor..st: -------------------------------------------------------------------------------- 1 | json 2 | errorMessageFor: aJsonObject 3 | ^ aJsonObject at:'error' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/httpClient.st: -------------------------------------------------------------------------------- 1 | accessing 2 | httpClient 3 | ^ self newHttpClient -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/jsonStringFrom..st: -------------------------------------------------------------------------------- 1 | json 2 | jsonStringFrom: data 3 | ^ data isString ifTrue: [ data ] ifFalse: [ NeoJSONWriter toString: data ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/logToTranscript.st: -------------------------------------------------------------------------------- 1 | logging 2 | logToTranscript 3 | ^ self httpClient logToTranscript -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/loggingOff.st: -------------------------------------------------------------------------------- 1 | logging 2 | loggingOff 3 | ^ self httpClient loggingOff -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/name..st: -------------------------------------------------------------------------------- 1 | accessing 2 | name: anObject 3 | name := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/name.st: -------------------------------------------------------------------------------- 1 | accessing 2 | name 3 | ^ name 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/parseJsonFromString..st: -------------------------------------------------------------------------------- 1 | json 2 | parseJsonFromString: aString 3 | ^ NeoJSONReader fromString: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/responseIsError..st: -------------------------------------------------------------------------------- 1 | json 2 | responseIsError: someJson 3 | ^ someJson includesKey: 'error' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/settings..st: -------------------------------------------------------------------------------- 1 | accessing 2 | settings: anObject 3 | settings := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/settings.st: -------------------------------------------------------------------------------- 1 | accessing 2 | settings 3 | ^ settings -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/systemInformation.st: -------------------------------------------------------------------------------- 1 | accessing 2 | systemInformation 3 | ^self parseJsonFromString: (self httpClient get: self baseUrl) -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESObject.class/instance/systemVersion.st: -------------------------------------------------------------------------------- 1 | accessing 2 | systemVersion 3 | ^self systemInformation at: 'version' ifAbsent: [ ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESOrFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESOrFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESOrFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'or' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESOrFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "filterType" : "ShoYoshida 6/15/2015 20:46" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPatternAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESPatternAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPatternAnalyzer.class/instance/flags..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | flags: aRegexFlags 3 | self modifiers at: 'flags' put: aRegexFlags -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPatternAnalyzer.class/instance/lowercase..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | lowercase: aBoolean 3 | self modifiers at: 'lowercase' put: aBoolean -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPatternAnalyzer.class/instance/pattern..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | pattern: aRegex 3 | self modifiers at: 'pattern' put: aRegex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPatternAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'pattern' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESPrefixFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'prefix' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixFilter.class/instance/onField.forValue..st: -------------------------------------------------------------------------------- 1 | accessing 2 | onField: aField forValue: anObject 3 | self modifiers at: aField put: anObject. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "onField:forValue:" : "ShoYoshida 1/12/2016 21:38", 4 | "filterType" : "ShoYoshida 1/12/2016 21:38" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESPrefixQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixQuery.class/class/forString..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | forString: aString 3 | ^ self new 4 | queryString: aString; 5 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | self queryType jsonWriteOn: aStream. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixQuery.class/instance/queryKeyName.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryKeyName 3 | ^'value' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESPrefixQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^'prefix' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/README.md: -------------------------------------------------------------------------------- 1 | Elasticesearch uses a big QueryDSL to fine tune searching. Its not implemented in this client at all yet. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/analyzer..st: -------------------------------------------------------------------------------- 1 | accessing 2 | analyzer: anAnalyzer 3 | ^ self modifiers at: 'analyzer' put: anAnalyzer -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/asJsonString.st: -------------------------------------------------------------------------------- 1 | printing 2 | asJsonString 3 | "For migration" 4 | ^self jsonStringContents -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/boost..st: -------------------------------------------------------------------------------- 1 | accessing 2 | boost: aNumber 3 | self modifiers at: 'boost' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/boost.st: -------------------------------------------------------------------------------- 1 | accessing 2 | boost 3 | ^self modifiers at: 'boost' ifAbsentPut: [] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/defaultField.st: -------------------------------------------------------------------------------- 1 | defaults 2 | defaultField 3 | ^ '_all' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/field..st: -------------------------------------------------------------------------------- 1 | accessing 2 | field: anObject 3 | field := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/field.st: -------------------------------------------------------------------------------- 1 | accessing 2 | field 3 | ^ field ifNil: [field := self defaultField] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/hasField.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasField 3 | ^ field notNil -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/hasModifiers.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasModifiers 3 | ^ (self modifiers size = 1 and: [ self modifiers includesKey: self queryKeyName]) not -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/jsonStringContents.st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonStringContents 3 | ^ NeoJSONWriter toString: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/jsonWriteContentOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentOn: aStream 3 | self jsonWriteContentBeginOn: aStream. 4 | self jsonWriteContentValueOn: aStream. 5 | self jsonWriteContentEndOn: aStream. 6 | 7 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/jsonWriteOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteOn: aStream 3 | 4 | self jsonWriteContentOn: aStream. 5 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/modifiers..st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers: anObject 3 | modifiers := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/modifiers.st: -------------------------------------------------------------------------------- 1 | accessing 2 | modifiers 3 | ^ modifiers ifNil: [modifiers := Dictionary new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/neoJsonOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | neoJsonOn: neoJSONWriter 3 | neoJSONWriter writeElasticsearchObject: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/prefixLength..st: -------------------------------------------------------------------------------- 1 | accessing 2 | prefixLength: aNumber 3 | ^ self modifiers at: 'prefix_length' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/query..st: -------------------------------------------------------------------------------- 1 | accessing 2 | query: anObject 3 | self modifiers at: self queryKeyName put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/query.st: -------------------------------------------------------------------------------- 1 | accessing 2 | query 3 | ^ self modifiers at: 'query' ifAbsent:[] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/queryKeyName.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryKeyName 3 | ^'query' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^'query' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQuery.class/instance/resetModifiers.st: -------------------------------------------------------------------------------- 1 | modifiers 2 | resetModifiers 3 | modifiers := nil -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/class/for..st: -------------------------------------------------------------------------------- 1 | instance creation 2 | for: queryString 3 | ^self new queryString: queryString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/instance/asQueryString.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | asQueryString 3 | ^ 'q=' , self queryString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/instance/defaultField.st: -------------------------------------------------------------------------------- 1 | constants 2 | defaultField 3 | ^ 'query' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self queryType. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/instance/queryString..st: -------------------------------------------------------------------------------- 1 | accessing 2 | queryString: anObject 3 | self query: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/instance/queryString.st: -------------------------------------------------------------------------------- 1 | accessing 2 | queryString 3 | ^ self query -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESQueryStringQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^ 'query_string' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/class/onField..st: -------------------------------------------------------------------------------- 1 | public 2 | onField: aFieldNameString 3 | ^ self new field: aFieldNameString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/instance/field..st: -------------------------------------------------------------------------------- 1 | accessing 2 | field: anObject 3 | field := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/instance/field.st: -------------------------------------------------------------------------------- 1 | accessing 2 | field 3 | ^ field -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'range' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/instance/gt..st: -------------------------------------------------------------------------------- 1 | accessing 2 | gt: anObject 3 | self modifiers at:'gt' put: anObject. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/instance/gte..st: -------------------------------------------------------------------------------- 1 | accessing 2 | gte: anObject 3 | self modifiers at:'gte' put: anObject. 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/instance/lt..st: -------------------------------------------------------------------------------- 1 | accessing 2 | lt: anObject 3 | self modifiers at:'lt' put: anObject. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRangeFilter.class/instance/lte..st: -------------------------------------------------------------------------------- 1 | accessing 2 | lte: anObject 3 | self modifiers at:'lte' put: anObject. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESRegexpFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'regexp' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpFilter.class/instance/onField.forValue..st: -------------------------------------------------------------------------------- 1 | accessing 2 | onField: aField forValue: anObject 3 | self modifiers at: aField put: anObject. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "onField:forValue:" : "ShoYoshida 1/12/2016 21:38", 4 | "filterType" : "ShoYoshida 1/12/2016 21:30" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/class/forString..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | forString: aString 3 | ^ self new 4 | queryString: aString; 5 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/flags..st: -------------------------------------------------------------------------------- 1 | accessing 2 | flags: anObject 3 | flags := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/flags.st: -------------------------------------------------------------------------------- 1 | accessing 2 | flags 3 | ^ flags -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self queryType. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. 4 | -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/maxDeterminizedStates..st: -------------------------------------------------------------------------------- 1 | accessing 2 | maxDeterminizedStates: anObject 3 | maxDeterminizedStates := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/maxDeterminizedStates.st: -------------------------------------------------------------------------------- 1 | accessing 2 | maxDeterminizedStates 3 | ^ maxDeterminizedStates -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/queryKeyName.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryKeyName 3 | ^'value' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESRegexpQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^'regexp' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/class/index..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | index: anESIndex 3 | ^ self new 4 | index: anESIndex; 5 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/addAggregation..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addAggregation: anAggregations 3 | self aggregations addAggregation: anAggregations -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/addQuery..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addQuery: aQuery 3 | self deprecated: 'Use #query:'. 4 | self requestBodyJson at:'query' put: aQuery. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/addSortCriteria..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addSortCriteria: aSortCriteria 3 | self sortParameters addCriteria: aSortCriteria -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/aggregateResult.st: -------------------------------------------------------------------------------- 1 | accessing 2 | aggregateResult 3 | ^ aggregateResult -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/aggregations.st: -------------------------------------------------------------------------------- 1 | accessing 2 | aggregations 3 | ^ aggregations ifNil: [ aggregations := ESAggregations new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/countAll.st: -------------------------------------------------------------------------------- 1 | actions 2 | countAll 3 | | query | 4 | query := ESMatchAllQuery new. 5 | self addQuery: query. 6 | ^self count -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/countUrl.st: -------------------------------------------------------------------------------- 1 | url creation 2 | countUrl 3 | | countUrl | 4 | countUrl := self index countUrl. 5 | ^countUrl -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/enumerator.st: -------------------------------------------------------------------------------- 1 | enumerating 2 | enumerator 3 | ^ESSearchResultEnumerator with: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/hasAggregations.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasAggregations 3 | ^ self aggregations hasAggregations -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/hasResults.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasResults 3 | ^self results notEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/hasSortCriteria.st: -------------------------------------------------------------------------------- 1 | sorting 2 | hasSortCriteria 3 | ^ self sortParameters hasSortCriteria -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/index..st: -------------------------------------------------------------------------------- 1 | accessing 2 | index: anESIndex 3 | index := anESIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/index.st: -------------------------------------------------------------------------------- 1 | accessing 2 | index 3 | ^ index -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/indexOfFirstResult..st: -------------------------------------------------------------------------------- 1 | pagination 2 | indexOfFirstResult: anObject 3 | indexOfFirstResult := (anObject min: self numberOfResultsMaxtLimit) max: 0 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/indexOfFirstResult.st: -------------------------------------------------------------------------------- 1 | pagination 2 | indexOfFirstResult 3 | ^ indexOfFirstResult ifNil: [ 0 ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | parameters 2 | initialize 3 | super initialize. 4 | uriParameters := Dictionary new -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/minScore..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minScore: aNumber 3 | self minimumScore: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/minimumScore..st: -------------------------------------------------------------------------------- 1 | accessing 2 | minimumScore: aNumber 3 | self requestBodyJson at:'min_score' put: aNumber. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/newlyFetchedEntries.st: -------------------------------------------------------------------------------- 1 | enumerating 2 | newlyFetchedEntries 3 | ^self results copyFrom:self indexOfFirstResult + 1 to: ((self indexOfFirstResult + self numberOfResultsToFetch) min: self numberOfResultsInIndex ) -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/numberOfHits.st: -------------------------------------------------------------------------------- 1 | accessing 2 | numberOfHits 3 | ^ numberOfHits -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/numberOfResultsInIndex..st: -------------------------------------------------------------------------------- 1 | accessing 2 | numberOfResultsInIndex: anObject 3 | numberOfResultsInIndex := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/numberOfResultsInIndex.st: -------------------------------------------------------------------------------- 1 | accessing 2 | numberOfResultsInIndex 3 | ^ numberOfResultsInIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/numberOfResultsMaxtLimit.st: -------------------------------------------------------------------------------- 1 | pagination 2 | numberOfResultsMaxtLimit 3 | ^ 1000 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/numberOfResultsToFetch..st: -------------------------------------------------------------------------------- 1 | pagination 2 | numberOfResultsToFetch: anObject 3 | numberOfResultsToFetch := (anObject min: self numberOfResultsMaxtLimit) max: 1 -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/numberOfResultsToFetch.st: -------------------------------------------------------------------------------- 1 | pagination 2 | numberOfResultsToFetch 3 | ^ numberOfResultsToFetch ifNil: [ 10 ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/query..st: -------------------------------------------------------------------------------- 1 | accessing 2 | query: aQuery 3 | self requestBodyJson at:'query' put: aQuery. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/requestBodyJson..st: -------------------------------------------------------------------------------- 1 | accessing 2 | requestBodyJson: anObject 3 | requestBodyJson := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/requestBodyJson.st: -------------------------------------------------------------------------------- 1 | accessing 2 | requestBodyJson 3 | ^ requestBodyJson ifNil:[ requestBodyJson := Dictionary new ]. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/results..st: -------------------------------------------------------------------------------- 1 | accessing 2 | results: anObject 3 | results := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/results.st: -------------------------------------------------------------------------------- 1 | accessing 2 | results 3 | ^ results ifNil: [ results := Array new: self numberOfResultsInIndex ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/searchAll.st: -------------------------------------------------------------------------------- 1 | actions 2 | searchAll 3 | | query | 4 | query := ESMatchAllQuery new. 5 | self query: query. 6 | ^self search. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/searchFrom..st: -------------------------------------------------------------------------------- 1 | actions 2 | searchFrom: fromIndex 3 | ^self searchFrom: fromIndex size: self numberOfResultsToFetch -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/searchTypes..st: -------------------------------------------------------------------------------- 1 | parameters 2 | searchTypes: anArrayOfTypeNames 3 | self uriParameters at: 'search_types' put: anArrayOfTypeNames asCommaString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/searchUrl.st: -------------------------------------------------------------------------------- 1 | url creation 2 | searchUrl 3 | ^ self searchUrlWithParams: self uriParameters -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/searchUrlFrom.size..st: -------------------------------------------------------------------------------- 1 | url creation 2 | searchUrlFrom: fromIndex size: itemsSize 3 | ^ self 4 | searchUrlWithParams: 5 | {('size' -> itemsSize). 6 | ('from' -> fromIndex)} asDictionary -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/setAggregateResultFrom..st: -------------------------------------------------------------------------------- 1 | private 2 | setAggregateResultFrom: response 3 | aggregateResult := (response at: 'aggregations'). 4 | ^aggregateResult -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/setCountResultsFrom..st: -------------------------------------------------------------------------------- 1 | private 2 | setCountResultsFrom: response 3 | numberOfResultsInIndex := ((response at: 'hits') at: 'total'). 4 | ^numberOfResultsInIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/sortByDateNewestFirst.st: -------------------------------------------------------------------------------- 1 | sorting 2 | sortByDateNewestFirst 3 | self 4 | addSortCriteria: 5 | (ESSortCriteria new 6 | fieldName: 'date'; 7 | sortDescending; 8 | yourself) -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/sortByScore.st: -------------------------------------------------------------------------------- 1 | sorting 2 | sortByScore 3 | self 4 | addSortCriteria: 5 | (ESSortCriteria new 6 | fieldName: '_score'; 7 | sortDescending; 8 | yourself) -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/sortParameters.st: -------------------------------------------------------------------------------- 1 | accessing 2 | sortParameters 3 | ^ sortParameters ifNil: [ sortParameters := ESSort new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearch.class/instance/uriParameters.st: -------------------------------------------------------------------------------- 1 | accessing 2 | uriParameters 3 | 4 | ^ uriParameters -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearchResultEnumerator.class/instance/atEnd.st: -------------------------------------------------------------------------------- 1 | testing 2 | atEnd 3 | ^self currentIndex = self maxIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearchResultEnumerator.class/instance/currentIndex.st: -------------------------------------------------------------------------------- 1 | accessing 2 | currentIndex 3 | ^self resultStream size -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearchResultEnumerator.class/instance/maxIndex.st: -------------------------------------------------------------------------------- 1 | accessing 2 | maxIndex 3 | ^self searcher numberOfResultsInIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearchResultEnumerator.class/instance/resultStream..st: -------------------------------------------------------------------------------- 1 | accessing 2 | resultStream: anObject 3 | resultStream := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearchResultEnumerator.class/instance/resultStream.st: -------------------------------------------------------------------------------- 1 | accessing 2 | resultStream 3 | ^ resultStream ifNil: [resultStream := WriteStream on: OrderedCollection new] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearchResultEnumerator.class/instance/searcher..st: -------------------------------------------------------------------------------- 1 | accessing 2 | searcher: anObject 3 | searcher := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSearchResultEnumerator.class/instance/searcher.st: -------------------------------------------------------------------------------- 1 | accessing 2 | searcher 3 | ^ searcher -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESSettings.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/at..st: -------------------------------------------------------------------------------- 1 | actions-dictionary 2 | at: key 3 | ^ self settingsDict at: key -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/at.ifAbsent..st: -------------------------------------------------------------------------------- 1 | actions-dictionary 2 | at: key ifAbsent: aBlock 3 | ^ self settingsDict at: key ifAbsent: aBlock -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/at.ifAbsentPut..st: -------------------------------------------------------------------------------- 1 | actions-dictionary 2 | at: key ifAbsentPut: aBlock 3 | ^ self settingsDict at: key ifAbsentPut: aBlock -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/at.put..st: -------------------------------------------------------------------------------- 1 | actions-dictionary 2 | at: key put: value 3 | ^ self settingsDict at: key put: value -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/hostName..st: -------------------------------------------------------------------------------- 1 | accessing 2 | hostName: anObject 3 | self at: #hostName put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/hostName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | hostName 3 | ^ self at: #hostName ifAbsentPut: [ 'localhost' ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/httpClientClassName..st: -------------------------------------------------------------------------------- 1 | accessing 2 | httpClientClassName: anObject 3 | ^ self at: #httpClientClassName put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/httpClientClassName.st: -------------------------------------------------------------------------------- 1 | accessing 2 | httpClientClassName 3 | ^ self at: #httpClientClassName ifAbsentPut: [''] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/port..st: -------------------------------------------------------------------------------- 1 | accessing 2 | port: anObject 3 | self at: #port put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/port.st: -------------------------------------------------------------------------------- 1 | accessing 2 | port 3 | ^ self at: #port ifAbsentPut: [ 9200 ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSettings.class/instance/settingsDict.st: -------------------------------------------------------------------------------- 1 | accessing-private 2 | settingsDict 3 | ^ settingsDict ifNil: [settingsDict := IdentityDictionary new] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSimpleAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESSimpleAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSimpleAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'simple' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSimpleAnalyzer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 5/6/2013 13:20" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESSort.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/instance/addCriteria..st: -------------------------------------------------------------------------------- 1 | accessing 2 | addCriteria: anESSortCriteria 3 | self criteria add: anESSortCriteria -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/instance/byScore.st: -------------------------------------------------------------------------------- 1 | accessing 2 | byScore 3 | self criteria add: '_score' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/instance/criteria..st: -------------------------------------------------------------------------------- 1 | accessing 2 | criteria: anObject 3 | criteria := anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/instance/criteria.st: -------------------------------------------------------------------------------- 1 | accessing 2 | criteria 3 | ^ criteria ifNil:[ criteria := OrderedCollection new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/instance/hasSortCriteria.st: -------------------------------------------------------------------------------- 1 | testing 2 | hasSortCriteria 3 | ^ self criteria notEmpty -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/instance/jsonWriteOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteOn: aStream 3 | aStream writer nextPut: self criteria -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSort.class/instance/neoJsonOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | neoJsonOn: neoJSONWriter 3 | neoJSONWriter writeElasticsearchObject: self -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/fieldName..st: -------------------------------------------------------------------------------- 1 | deprecated 2 | fieldName: anObject 3 | self field: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/fieldName.st: -------------------------------------------------------------------------------- 1 | deprecated 2 | fieldName 3 | ^ self field -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/missing..st: -------------------------------------------------------------------------------- 1 | accessing 2 | missing: aString 3 | self modifiers at:'missing' put: aString. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/mode..st: -------------------------------------------------------------------------------- 1 | accessing 2 | mode: aString 3 | self modifiers at:'mode' put: aString. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/sortAscending.st: -------------------------------------------------------------------------------- 1 | accessing 2 | sortAscending 3 | self modifiers at:'order' put:'asc'. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/sortDescending.st: -------------------------------------------------------------------------------- 1 | accessing 2 | sortDescending 3 | self modifiers at:'order' put:'desc'. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/useAvg.st: -------------------------------------------------------------------------------- 1 | accessing 2 | useAvg 3 | self mode: 'avg' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/useMax.st: -------------------------------------------------------------------------------- 1 | accessing 2 | useMax 3 | self mode: 'max' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/useMin.st: -------------------------------------------------------------------------------- 1 | accessing 2 | useMin 3 | self mode: 'min' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSortCriteria.class/instance/useSum.st: -------------------------------------------------------------------------------- 1 | accessing 2 | useSum 3 | self mode: 'sum' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStandardAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESStandardAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStandardAnalyzer.class/instance/maxTokenLength..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | maxTokenLength: aNumber 3 | self modifiers at: 'max_token_length' put: aNumber -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStandardAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'standard' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStandardAnalyzer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "maxTokenLength:" : "PaulDeBruicker 5/6/2013 13:13", 4 | "type" : "PaulDeBruicker 5/6/2013 13:20" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStopAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESStopAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStopAnalyzer.class/instance/stopwordsPath..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | stopwordsPath: aPathString 3 | self modifiers at: 'stopwords_path' put: aPathString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStopAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'stop' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStopAnalyzer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "stopwordsPath:" : "PaulDeBruicker 5/6/2013 13:15", 4 | "type" : "PaulDeBruicker 5/6/2013 13:20" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/analyzer..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | analyzer: aString 3 | self modifiers at: 'analyzer' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/ignoreAbove..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | ignoreAbove: aString 3 | self modifiers at: 'ignore_above' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/indexAnalyzer..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indexAnalyzer: aString 3 | self modifiers at: 'index_analyzer' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/indexOptions..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indexOptions: aString 3 | self modifiers at: 'index_options' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/omitNorms..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | omitNorms: aString 3 | self modifiers at: 'omit_norms' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/omitTermFreqAndPositions..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | omitTermFreqAndPositions: aString 3 | self modifiers at: 'omit_term_freq_and_positions' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/positionOffsetGap..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | positionOffsetGap: aString 3 | self modifiers at: 'position_offset_gap' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/searchAnalyzer..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | searchAnalyzer: aString 3 | self modifiers at: 'search_analyzer' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/termVector..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | termVector: aString 3 | self modifiers at: 'term_vector' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESStringMappingProperty.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'string' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSumAggregation.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESSumAggregation.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSumAggregation.class/instance/type.st: -------------------------------------------------------------------------------- 1 | constants 2 | type 3 | ^ 'sum' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESSumAggregation.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "ShoYoshida 6/12/2015 14:18" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESTermFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermFilter.class/class/onField.forValue..st: -------------------------------------------------------------------------------- 1 | public 2 | onField: aFieldToFilter forValue: aSingleTerm 3 | ^ self new onField: aFieldToFilter forValue: aSingleTerm -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'term' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermFilter.class/instance/onField.forValue..st: -------------------------------------------------------------------------------- 1 | public 2 | onField: aField forValue: anObject 3 | self modifiers at: aField put: anObject. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermQuery.class/instance/jsonWriteContentBeginOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentBeginOn: aStream 3 | aStream nextPut: ${. 4 | aStream writer nextPut: self queryType. 5 | aStream nextPut: $:. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermQuery.class/instance/jsonWriteContentEndOn..st: -------------------------------------------------------------------------------- 1 | printing 2 | jsonWriteContentEndOn: aStream 3 | aStream nextPut: $}. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermQuery.class/instance/queryType.st: -------------------------------------------------------------------------------- 1 | constants 2 | queryType 3 | ^ 'term' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermsAggregation.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESTermsAggregation.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermsAggregation.class/instance/type.st: -------------------------------------------------------------------------------- 1 | constants 2 | type 3 | ^ 'terms' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermsAggregation.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "ShoYoshida 6/12/2015 13:13" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermsFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESTermsFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermsFilter.class/class/onField.forValues..st: -------------------------------------------------------------------------------- 1 | public 2 | onField: aFieldToFilter forValues: aTerms 3 | ^ self new onField: aFieldToFilter forValues: aTerms -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermsFilter.class/instance/filterType.st: -------------------------------------------------------------------------------- 1 | constants 2 | filterType 3 | ^ 'terms' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTermsFilter.class/instance/onField.forValues..st: -------------------------------------------------------------------------------- 1 | public 2 | onField: aFieldToFilter forValues: aTerms 3 | self modifiers at: aFieldToFilter put: aTerms. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTokenFilter.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESTokenFilter.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTokenFilter.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { }, 3 | "class" : { } 4 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTokenizer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESTokenizer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTokenizer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | self subclassResponsibility -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESTokenizer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 1/10/2014 07:43" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESType.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESType.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESType.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { }, 3 | "class" : { } 4 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/analyzer..st: -------------------------------------------------------------------------------- 1 | parameters 2 | analyzer: anObject 3 | "The analyzer name to be used when analyzing the query string." 4 | 5 | self uriParameters at: 'analyzer' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/defaultField..st: -------------------------------------------------------------------------------- 1 | parameters 2 | defaultField: anObject 3 | "The default field to use when no field prefix is defined within the query." 4 | 5 | self uriParameters at: 'df' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/defaultOperator..st: -------------------------------------------------------------------------------- 1 | parameters 2 | defaultOperator: anObject 3 | "The default operator to be used, can be AND or OR. Defaults to OR." 4 | 5 | self uriParameters at: 'default_operator' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/explain..st: -------------------------------------------------------------------------------- 1 | parameters 2 | explain: anObject 3 | "For each hit, contain an explanation of how scoring of the hits was computed." 4 | 5 | self uriParameters at: 'explain' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/from..st: -------------------------------------------------------------------------------- 1 | parameters 2 | from: anObject 3 | "The starting from index of the hits to return. Defaults to 0." 4 | 5 | self uriParameters at: 'from' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/initialize.st: -------------------------------------------------------------------------------- 1 | initialize-release 2 | initialize 3 | super initialize. 4 | uriParameters at: 'q' put: 'no query' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/queryString..st: -------------------------------------------------------------------------------- 1 | parameters 2 | queryString: aString 3 | "The query string (maps to the query_string query, see Query String Query for more details)." 4 | 5 | self uriParameters at: 'q' put: aString -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESURISearch.class/instance/size..st: -------------------------------------------------------------------------------- 1 | parameters 2 | size: anObject 3 | "The number of hits to return. Defaults to 10." 4 | 5 | self uriParameters at: 'size' put: anObject -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESUrl.class/README.md: -------------------------------------------------------------------------------- 1 | This class only exists because I'm going to port it to Squeak and as far as I know Squeak doesn't use Zinc but instead uses WebClient and somebody will have to change all the HTTP client stuff -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESUrl.class/instance/addToPath..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | addToPath: aPath 3 | self url addPathSegment: aPath -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESUrl.class/instance/defaultUrl.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | defaultUrl 3 | self subclassResponsibility -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESUrl.class/instance/host..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | host: aHostname 3 | self url host: aHostname -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESUrl.class/instance/port..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | port: aHostname 3 | self url port: aHostname -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESUrl.class/instance/queryAt.put..st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | queryAt: aKey put: aValue 3 | self url queryAt: aKey put: aValue -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESUrl.class/instance/url.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | url 3 | ^ url ifNil: [ url := self defaultUrl new ] -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESWhitespaceAnalyzer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESWhitespaceAnalyzer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESWhitespaceAnalyzer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'whitespace' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESWhitespaceAnalyzer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 5/6/2013 13:20" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESWhitespaceTokenizer.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESWhitespaceTokenizer.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESWhitespaceTokenizer.class/instance/type.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | type 3 | ^ 'whitespace' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESWhitespaceTokenizer.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "type" : "PaulDeBruicker 5/6/2013 13:30" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnClient.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESZnClient.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnClient.class/instance/baseUrl.st: -------------------------------------------------------------------------------- 1 | accessing 2 | baseUrl 3 | ^ self url 4 | host: self hostName; 5 | port: self port; 6 | yourself -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnClient.class/instance/defaultUnderlyingClientClass.st: -------------------------------------------------------------------------------- 1 | defaults 2 | defaultUnderlyingClientClass 3 | ^ ZnClient -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnClient.class/instance/defaultUrl.st: -------------------------------------------------------------------------------- 1 | accessing 2 | defaultUrl 3 | ^ ESZnUrl -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnClient.class/instance/newUnderlyingClient.st: -------------------------------------------------------------------------------- 1 | factory 2 | newUnderlyingClient 3 | | cli | 4 | cli := super newUnderlyingClient. 5 | cli enforceHttpSuccess: true. 6 | ^cli -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnUrl.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/ESZnUrl.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnUrl.class/instance/defaultUrl.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | defaultUrl 3 | ^ ZnUrl -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ESZnUrl.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "defaultUrl" : "PaulDeBruicker 4/24/2013 10:01" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/NeoJSONWriter.extension/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "writeElasticsearchObject:" : "MasashiUmezawa 8/1/2019 10:03" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/NeoJSONWriter.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "NeoJSONWriter" 3 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ZnClient.extension/instance/logLevel.st: -------------------------------------------------------------------------------- 1 | *Elasticsearch-Core 2 | logLevel 3 | ^logLevel -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/ZnClient.extension/properties.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "ZnClient" 3 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Core.package/monticello.meta/initializers.st -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'Elasticsearch-Core') -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Core.package/properties.json: -------------------------------------------------------------------------------- 1 | { } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/.filetree: -------------------------------------------------------------------------------- 1 | { 2 | "separateMethodMetaAndSource" : false, 3 | "noMethodMetaData" : true, 4 | "useCypressPropertiesFile" : true 5 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAggregationTest.class/README.md: -------------------------------------------------------------------------------- 1 | An ESAggregationTest is a test class for testing the behavior of ESAggregation -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAggregationTest.class/instance/setUp.st: -------------------------------------------------------------------------------- 1 | set up 2 | setUp 3 | 4 | aggregation := ESMinAggregation new. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAggregationTest.class/instance/testAggregationName.st: -------------------------------------------------------------------------------- 1 | tests-accessing 2 | testAggregationName 3 | 4 | aggregation aggregationName:'price'. 5 | self assert: aggregation aggregationName = 'price'. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAggregationTest.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testAggregationName" : "ShoYoshida 6/12/2015 14:00", 4 | "setUp" : "ShoYoshida 6/10/2015 16:42" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAnalysisTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESAnalysisTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAnalyzerTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESAnalyzerTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAnalyzerTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testStandardAnalyzer" : "MasashiUmezawa 8/1/2019 09:35", 4 | "testCustomAnalyzer" : "MasashiUmezawa 8/1/2019 09:35" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESAndFilterTest.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESAndFilterTest.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESBoolQueryTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESBoolQueryTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESDocumentDependentTests.class/instance/setUp.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | setUp 3 | super setUp. 4 | document := self newDocument -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESDocumentDependentTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "newDocument" : "MasashiUmezawa 7/31/2019 19:30", 4 | "setUp" : "PaulDeBruicker 4/23/2013 11:14" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESDocumentTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESDocumentTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESDocumentTests.class/instance/testAddDocument.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | testAddDocument 3 | document addToIndex: index. 4 | self assert: document hasId. 5 | self assert: document hasVersion -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESDocumentTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testGetDocument" : "pad 09/05/2013 10:57", 4 | "testAddDocument" : "PaulDeBruicker 4/22/2013 17:13" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESExistsFilterTest.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESExistsFilterTest.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESExistsFilterTest.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testAsJsonString" : "ShoYoshida 1/12/2016 21:35" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESFilteredQueryTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESFilteredQueryTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESFuzzyLikeThisQueryTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testJsonQuery" : "MasashiUmezawa 8/1/2019 10:29", 4 | "testAsJsonString" : "MasashiUmezawa 8/1/2019 10:28" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESIndexDependentTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESIndexDependentTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESIndexDependentTests.class/instance/deleteIndex.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | deleteIndex 3 | ESIndex deleteIndex: self indexName -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESIndexDependentTests.class/instance/indexName.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | indexName 3 | ^ 'test-index' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESIndexDependentTests.class/instance/setUp.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | setUp 3 | super setUp. 4 | index := ESIndex createIndex: self indexName -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESIndexDependentTests.class/instance/tearDown.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | tearDown 3 | self deleteIndex -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESIndexTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESIndexTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESIndexTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testCreateIndex" : "MasashiUmezawa 8/1/2019 09:35", 4 | "testCreateIndex2" : "ShoYoshida 6/15/2016 18:57" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMappingPropertiesTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testStringProperty" : "MasashiUmezawa 8/1/2019 09:35" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMappingPropertyTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESMappingPropertyTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMappingTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESMappingTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMappingTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testStringProperty" : "MasashiUmezawa 8/1/2019 09:34" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMatchAllQueryTests.class/README.md: -------------------------------------------------------------------------------- 1 | An ESMatchAllQueryTest is a test class for testing the behavior of ESMatchAllQuery -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMatchAllQueryTests.class/instance/testAsJsonString.st: -------------------------------------------------------------------------------- 1 | tests-printing 2 | testAsJsonString 3 | | query| 4 | query := ESMatchAllQuery new. 5 | self assert: query asJsonString equals: '{"match_all":{}}'. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMatchAllQueryTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testJsonQuery" : "ShoYoshida 6/15/2016 18:43", 4 | "testAsJsonString" : "ShoYoshida 1/9/2016 11:07" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMatchQueryTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESMatchQueryTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMatchQueryTests.class/instance/testAsJsonString.st: -------------------------------------------------------------------------------- 1 | tests-printing 2 | testAsJsonString 3 | | q | 4 | q := ESMatchQuery new. 5 | q query: 'Tuna'. 6 | self assert: q asJsonString equals: '{"match":{"_all":"Tuna"}}' -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMinAggregationTest.class/README.md: -------------------------------------------------------------------------------- 1 | An ESMinAggregationTest is a test class for testing the behavior of ESMinAggregation -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMoreLikeThisQueryTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testJsonQuery" : "MasashiUmezawa 8/1/2019 10:31", 4 | "testAsJsonString" : "MasashiUmezawa 8/1/2019 10:30" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMultiMatchQueryTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESMultiMatchQueryTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESMultiMatchQueryTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testJsonQuery" : "MasashiUmezawa 8/1/2019 10:30", 4 | "testAsJsonQuery" : "MasashiUmezawa 8/1/2019 10:30" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESNotFilterTest.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESNotFilterTest.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESNotFilterTest.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testASJsonString2" : "MasashiUmezawa 8/1/2019 10:37", 4 | "testASJsonString1" : "ShoYoshida 1/11/2016 15:24" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESOrFilterTest.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESOrFilterTest.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESRangeFilterTest.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESRangeFilterTest.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESRangeFilterTest.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testJsonQuery" : "ShoYoshida 1/11/2016 19:36" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESRegexpFilterTest.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESRegexpFilterTest.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESRegexpFilterTest.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testAsJsonString" : "ShoYoshida 1/12/2016 21:32" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESRegexpQueryTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESRegexpQueryTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESSearchTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESSearchTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESSearchTests.class/instance/createSearch.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | createSearch 3 | search := ESSearch index: index -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESSortCriteriaTests.class/README.md: -------------------------------------------------------------------------------- 1 | An ESSortCriteriaTest is a test class for testing the behavior of ESSortCriteria -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESSortCriteriaTests.class/instance/testAsJsonString3.st: -------------------------------------------------------------------------------- 1 | tests-converting 2 | testAsJsonString3 3 | | sort | 4 | sort := ESSortCriteria new field: 'title'; yourself. 5 | self assert: sort asJsonString equals: '"title"'. -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESSortTests.class/README.md: -------------------------------------------------------------------------------- 1 | An ESSortTest is a test class for testing the behavior of ESSort -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESSortTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testJsonQuery" : "ShoYoshida 1/11/2016 11:20" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTermFilterTest.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESTermFilterTest.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTermFilterTest.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testAsJsonString" : "ShoYoshida 1/9/2016 12:21" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTermQueryTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESTermQueryTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTermQueryTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testJsonQuery" : "ShoYoshida 1/9/2016 11:20", 4 | "testAsJsonString" : "ShoYoshida 1/9/2016 11:20" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { }, 3 | "class" : { } 4 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTokenFilterTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESTokenFilterTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTokenFilterTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testNGram" : "MasashiUmezawa 8/1/2019 09:34" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTokenizerTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESTokenizerTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESTokenizerTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testWhitespace" : "MasashiUmezawa 8/1/2019 09:34" 4 | }, 5 | "class" : { } 6 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESURISearchTests.class/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/ESURISearchTests.class/README.md -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESURISearchTests.class/instance/createSearch.st: -------------------------------------------------------------------------------- 1 | as yet unclassified 2 | createSearch 3 | search := ESURISearch index: index -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/ESURISearchTests.class/methodProperties.json: -------------------------------------------------------------------------------- 1 | { 2 | "instance" : { 3 | "testURISearch" : "PaulDeBruicker 4/26/2013 08:52", 4 | "createSearch" : "PaulDeBruicker 4/26/2013 08:51" 5 | }, 6 | "class" : { } 7 | } -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/monticello.meta/initializers.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newapplesho/elasticsearch-smalltalk/46a66787359f2189244872ee270be76dc9446824/pharo-repository/Elasticsearch-Tests.package/monticello.meta/initializers.st -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/monticello.meta/package: -------------------------------------------------------------------------------- 1 | (name 'Elasticsearch-Tests') -------------------------------------------------------------------------------- /pharo-repository/Elasticsearch-Tests.package/properties.json: -------------------------------------------------------------------------------- 1 | { } --------------------------------------------------------------------------------