28 |
29 |
30 |
--------------------------------------------------------------------------------
/MIT-LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2011 DaWanda GmbH
2 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
4 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "author": "DaWanda GmbH (http://dawanda.com)",
3 | "name": "jquery-rss",
4 | "description": "An easy-to-use rss plugin for jquery with templating.",
5 | "version": "1.2.0",
6 | "homepage": "https://github.com/dawanda/jquery-rss",
7 | "keywords": ["rss", "jquery", "ender"],
8 | "ender": "noop",
9 | "repository": {
10 | "type": "git",
11 | "url": "git://github.com/dawanda/jquery-rss.git"
12 | },
13 | "contributors": [
14 | {
15 | "name": "Sascha Depold",
16 | "email": "sascha@depold.com"
17 | },
18 | {
19 | "name": "Steffen Schröder",
20 | "email": "steffen@schroeder-blog.de"
21 | }
22 | ],
23 | "main": "src/jquery.rss.js",
24 | "scripts": {
25 | "test": "java -jar dist/compiler.jar src/jquery.rss.js --js_output_file=dist/jquery.rss.min.js && node_modules/.bin/buster-test"
26 | },
27 | "engines": {
28 | "node": ">=v0.4.8"
29 | },
30 | "dependencies": {},
31 | "devDependencies": {
32 | "buster": "~0.6.0"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # v1.2.0
2 | - [FEATURE] added possibility to define effects for the appearance of entries
3 |
4 | # v1.1.0
5 | - [TEST] switched to busterjs for tests
6 | - [TEST] implemented tests for XSS protection
7 | - [FEATURE] XSS protection
8 |
9 | # v1.0.0
10 | - [TEST] complete test coverage with mocha
11 |
12 | # v0.4.0
13 | - [FEATURE] added possibility to define the output method of google request
14 | - [FEATURE] separated layout template from entry template (thanks to ChaosSteffen)
15 |
16 | # v0.3.0
17 | - [IMPROVEMENT] evaluate token map before passing it to custom token functions
18 | - [GENERAL] moved minified version into dist folder (thanks to markrambow)
19 | - [FEATURE] added callback, which is triggered after rendering of all entries (thanks to cm0s)
20 |
21 | # v0.2.2
22 | - [BUG] fixed Array#indexOf IE bug
23 |
24 | # v0.2.1
25 | - [BUG] catch failures while extracting images
26 |
27 | # v0.2.0
28 | - [TOKEN] added index and totalEntries
29 | - [TEST] preparation for jasmine tests
30 |
31 | # v0.1.1
32 | - added entry filtering
33 |
--------------------------------------------------------------------------------
/examples/accordion.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jquery.rss accordion example
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
29 |
30 |
35 |
36 |
37 |