Commit 7495e02261ac0cd081f131c9b705613fb033e69e

Small meta fixes

  - remove example.json (not needed anymore)
  - updated ISSUES.md and humans.txt
  • Diff rendering mode:
  • inline
  • side by side

ISSUES.md

1Current Issues with Mouchak1Current Issues with Mouchak
2---------------------------2---------------------------
33
4
5- In some pages nav links are not there....each page has its own nav links if they have children, if they dont they **should** get its parents nav link(highest priority)
6
7- a config option to disable nav ?
8
9- when plugins are used to manipulate existing images, event listeners might not work properly.4- when plugins are used to manipulate existing images, event listeners might not work properly.
10This is beacuse there is no wrapper element around it. Hence plugins that will listen to the parent5This is beacuse there is no wrapper element around it. Hence plugins that will listen to the parent
11element of the image, will eventually end up listening to the page(that being directly the parent element6element of the image, will eventually end up listening to the page(that being directly the parent element

humans.txt

6 Anon Ray <rayanon004@gmail.com> (@rayanon)6 Anon Ray <rayanon004@gmail.com> (@rayanon)
7 Arvind Khadri <arvindkhadri@gmail.com> (@arvindkhadri)7 Arvind Khadri <arvindkhadri@gmail.com> (@arvindkhadri)
88
9# THANKS
10
11 <name>
12
13# TECHNOLOGY COLOPHON9# TECHNOLOGY COLOPHON
1410
15 HTML5, CSS311 HTML5, CSS3
13 Underscore.js, Backbone.js13 Underscore.js, Backbone.js
14 Bootstrap14 Bootstrap
15 15
16 Python, Flask
16 Python, Flask, PyMongo
17
18 MongoDB

mouchak/static/example.json

1[
2 {
3 "name": "index",
4 "children": ["Motivation", "The JSON file"],
5 "title": "Mouchak",
6 "content": [
7 {
8 "type": "image",
9 "src": "/static/img/mouchak.jpg"
10 },
11 {
12 "type": "text",
13 "title": "What's this?",
14 "data": "<p> Mouchak is a Javascript framework for building websites quickly.</p><p>It takes the components and the content of the website in a JSON format. The content in the JSON can be of type text or multimedia like images and videos.</p> <p>It also has the capabilities to load external JS and CSS files to customize the website.</p><br><b>PS</b>: Incase you are wondering, Mouchak is a Bengali word, which means Honeycomb."
15 }
16 ]
17 },
18 {
19 "name": "Motivation",
20 "title": "Motivation",
21 "children": [],
22 "content": [
23 {
24 "type": "text",
25 "title": "Why Mouchak?",
26 "data": "Explanation of why we built this framework..."
27 }
28 ]
29 },
30 {
31 "name": "The JSON file",
32 "title": "The JSON format",
33 "children": [],
34 "content": [
35 {
36 "type": "text",
37 "title": "",
38 "data": "{ } Explain the JSON format here.."
39 }
40 ]
41 }
42]