Skip to content

Commit 8379eea

Browse files
committed
v1.1.0 - see CHANGELOG
1 parent 4239e03 commit 8379eea

30 files changed

Lines changed: 676 additions & 131512 deletions

.DS_Store

6 KB
Binary file not shown.

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22

3-
## 1.1.0 - Oct 18 2014
4-
- Add Pagination
5-
- Add time taken for query
6-
- Add hits count for query
3+
## 1.1.0 - Oct 19 2014
4+
- Add pagination
5+
- Add time taken and hits count for query
6+
- Add bower.json
7+
- Split js files
78

89
## 1.0.1 - Jul 24 2014
910
- Add documentation to show how to configure results.

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Calaca
22
=========
33

4-
Calaca is a simple, easy to use search client for Elasticsearch. It's made for you if all you need to do is quick searches for your documents and don't need anything fancy or hard to setup, use.
4+
Calaca is a beautiful, easy to use, search UI for Elasticsearch. It's made for you if you need to do quick searches for your documents and don't need anything hard to setup, use.
55
- Quick, easy and instant search
66
- Looks good
77
- Minimum configs required
8-
8+
- Displays hits count and time taken for query
9+
- Supports pagination
910

1011
Demo
1112
=========
@@ -14,11 +15,12 @@ Demo
1415
Dependencies(Already included)
1516
----
1617
- angular.js
18+
- angular-animate.js
1719
- elasticsearch.angular.js
1820

1921
Get Started
2022
----
21-
In **calaca.js** change the configs to match your Elasticsearch cluster.
23+
In **config.js** change the configs to match your Elasticsearch cluster.
2224
```js
2325
/* Configs */
2426
var indexName = "name"; //Ex: twitter
@@ -50,11 +52,10 @@ You can easily change the look and feel of Calaca by implementing the below CSS
5052
Version
5153
----
5254

53-
1.0.1
55+
1.1.0
5456

5557
Author
5658
----
57-
Roman Sanchez
5859

5960
[romansanchez.me]
6061

bower.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "Calaca",
3+
"version": "1.1.0",
4+
"homepage": "https://github.com/romansanchez/Calaca",
5+
"authors": [
6+
"Roman Sanchez http://romansanchez.me"
7+
],
8+
"description": "Search UI for Elasticsearch",
9+
"main": "index.html",
10+
"keywords": [
11+
"elasticsearch",
12+
"search"
13+
],
14+
"license": "MIT",
15+
"ignore": [
16+
"**/.*",
17+
"node_modules",
18+
"bower_components",
19+
"test",
20+
"tests"
21+
],
22+
"dependencies": {
23+
"angular": "1.2.26",
24+
"elasticsearch": "~2.2.0",
25+
"angular-animate": "1.2.26"
26+
}
27+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "angular-animate",
3+
"version": "1.2.26",
4+
"main": "./angular-animate.js",
5+
"dependencies": {
6+
"angular": "1.2.26"
7+
},
8+
"homepage": "https://github.com/angular/bower-angular-animate",
9+
"_release": "1.2.26",
10+
"_resolution": {
11+
"type": "version",
12+
"tag": "v1.2.26",
13+
"commit": "453c5ac3ad0beb28e8296655c2e4079b5e0f31da"
14+
},
15+
"_source": "git://github.com/angular/bower-angular-animate.git",
16+
"_target": "1.2.26",
17+
"_originalSource": "angular-animate"
18+
}
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# bower-angular-animate
2+
3+
This repo is for distribution on `bower`. The source for this module is in the
4+
[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngAnimate).
5+
Please file issues and pull requests against that repo.
6+
7+
## Install
8+
9+
Install with `bower`:
10+
11+
```shell
12+
bower install angular-animate
13+
```
14+
15+
Add a `<script>` to your `index.html`:
16+
17+
```html
18+
<script src="/bower_components/angular-animate/angular-animate.js"></script>
19+
```
20+
21+
And add `ngAnimate` as a dependency for your app:
22+
23+
```javascript
24+
angular.module('myApp', ['ngAnimate']);
25+
```
26+
27+
## Documentation
28+
29+
Documentation is available on the
30+
[AngularJS docs site](http://docs.angularjs.org/api/ngAnimate).
31+
32+
## License
33+
34+
The MIT License
35+
36+
Copyright (c) 2010-2012 Google, Inc. http://angularjs.org
37+
38+
Permission is hereby granted, free of charge, to any person obtaining a copy
39+
of this software and associated documentation files (the "Software"), to deal
40+
in the Software without restriction, including without limitation the rights
41+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
42+
copies of the Software, and to permit persons to whom the Software is
43+
furnished to do so, subject to the following conditions:
44+
45+
The above copyright notice and this permission notice shall be included in
46+
all copies or substantial portions of the Software.
47+
48+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
49+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
50+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
51+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
52+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
53+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
54+
THE SOFTWARE.

bower_components/angular-animate/angular-animate.min.js

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower_components/angular-animate/angular-animate.min.js.map

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "angular-animate",
3+
"version": "1.2.26",
4+
"main": "./angular-animate.js",
5+
"dependencies": {
6+
"angular": "1.2.26"
7+
}
8+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "angular-animate",
3+
"version": "",
4+
"description": "AngularJS module for animations",
5+
"main": "angular-animate.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/angular/angular.js.git"
12+
},
13+
"keywords": [
14+
"angular",
15+
"framework",
16+
"browser",
17+
"animation",
18+
"client-side"
19+
],
20+
"author": "Angular Core Team <angular-core+npm@google.com>",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/angular/angular.js/issues"
24+
},
25+
"homepage": "http://angularjs.org"
26+
}

0 commit comments

Comments
 (0)