Skip to content

Commit f25dccc

Browse files
committed
refactored out old code and put everything into the proper directories
1 parent 1e18d4c commit f25dccc

File tree

158 files changed

+483
-19890
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+483
-19890
lines changed

ModulesToPort.txt

-73
This file was deleted.

_SpecRunner.html

-33
This file was deleted.

bower.json

+7-14
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"name": "metamaps",
3-
"version": "0.1.0",
2+
"name": "Junto",
3+
"version": "0.0.1",
44
"authors": [
55
"Connor Turland <[email protected]>"
66
],
7-
"description": "Map Complexity",
8-
"main": "metamaps_renderer.js",
7+
"description": "Discover and connect with people with similar intentions",
8+
"main": "junto.js",
99
"moduleType": [
1010
"globals"
1111
],
1212
"license": "AGPL",
13-
"homepage": "http://metamaps.cc",
13+
"homepage": "http://junto.cc",
1414
"private": true,
1515
"ignore": [
1616
"**/.*",
@@ -20,17 +20,10 @@
2020
"tests"
2121
],
2222
"dependencies": {
23+
"SimpleWebRTC": "*",
2324
"backbone": "1.0.0",
2425
"underscore": "1.4.4",
25-
"Countable": "~2.1.0",
26-
"typeahead.js": "0.9.3",
2726
"socket.io-client": "0.9.11",
28-
"CloudCarousel": "https://github.com/Connoropolous/CloudCarousel.git",
29-
"embedly": "https://github.com/Connoropolous/embedly.git",
30-
"famous": "~0.3.4",
31-
"hogan": "https://github.com/Connoropolous/Hogan.git"
32-
},
33-
"devDependencies": {
3427
"jquery": "1.9.0"
3528
}
36-
}
29+
}

grunt/concat.js

+12-22
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,24 @@ module.exports = {
55
},
66
dist: {
77
src: [
8-
'bower_components/snap.svg/dist/snap.svg-min.js',
8+
'bower_components/jquery/jquery.js',
99
'bower_components/underscore/underscore.js',
1010
'bower_components/backbone/backbone.js',
11-
'bower_components/Countable/Countable.js',
1211
'bower_components/socket.io-client/dist/socket.io.js',
13-
'bower_components/typeahead.js/dist/typeahead.bundle.min.js',
14-
'bower_components/CloudCarousel/cloudcarousel.js',
15-
'bower_components/embedly/embedly.js',
16-
'bower_components/hogan/hogan-2.0.0.js',
17-
'bower_components/famous/dist/famous-global.min.js',
18-
'lib/JIT.js',
19-
'lib/utility.js',
20-
'lib/views/mixins.js',
21-
'lib/views/juntoView.js',
12+
'bower_components/SimpleWebRTC/simplewebrtc.bundle.js',
13+
'lib/libraries/require.js',
14+
'lib/libraries/classList.js',
15+
'lib/libraries/libraries.js',
16+
'lib/libraries/requestAnimationFrame.js',
17+
'lib/libraries/famous.js',
18+
'lib/libraries/firebase.js',
19+
// we only modify code that appears below here
2220
'lib/views/videoView.js',
2321
'lib/views/roomTopicView.js',
2422
'lib/views/chatView.js',
25-
'lib/models/mapper.js',
26-
'lib/modules/control.js',
27-
'lib/modules/create.js',
28-
'lib/modules/jit.js',
29-
'lib/modules/realtime.js',
30-
'lib/modules/visualize.js',
31-
'lib/maker.js',
32-
'lib/junto.js',
33-
'lib/buildMaker.js',
34-
'lib/models/collections.js',
23+
'lib/room.js',
24+
'lib/app.js'
3525
],
36-
dest: 'dist/metamaps_renderer.js'
26+
dest: 'dist/junto.js'
3727
}
3828
};

grunt/copy.js

+5-13
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,6 @@ module.exports = {
2121
nonull: true,
2222
flatten: true,
2323
filter: 'isFile'
24-
}, {
25-
src: 'maps/*',
26-
expand: true,
27-
dest: 'serve/json/'
28-
}, {
29-
src: 'metacodes/*',
30-
expand: true,
31-
dest: 'serve/json/'
3224
}, {
3325
src: 'img/**/*',
3426
expand: true,
@@ -42,27 +34,27 @@ module.exports = {
4234
files: [{
4335
src: 'lib/**/*',
4436
expand: true,
45-
dest: 'deploy/maprenderer/static/js/ds/',
37+
dest: 'deploy/junto/static/js/',
4638
flatten: true,
4739
nonull: true,
4840
filter: 'isFile'
4941
}, {
5042
src: 'css/*',
5143
expand: true,
52-
dest: 'deploy/maprenderer/static/css/',
44+
dest: 'deploy/junto/static/css/',
5345
flatten: true,
5446
nonull: true,
5547
filter: 'isFile'
5648
}, {
5749
src: 'img/*',
5850
expand: true,
59-
dest: 'deploy/maprenderer/static/img/',
51+
dest: 'deploy/junto/static/img/',
6052
flatten: true,
6153
nonull: true,
6254
filter: 'isFile'
6355
}, {
64-
src: 'dist/metamaps_renderer.js',
65-
dest: 'deploy/maprenderer/static/js/dist/metamaps_renderer.js'
56+
src: 'dist/junto.js',
57+
dest: 'deploy/junto/static/js/dist/junto.js'
6658
}]
6759
}
6860
};

grunt/less.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
paths: "less/"
66
},
77
files: {
8-
"css/metamapsMapRender.css": "less/metamapsMapRenderer.less"
8+
"css/junto.css": "less/junto.less"
99
}
1010
},
1111
dist: {
@@ -14,7 +14,7 @@ module.exports = {
1414
paths: "less/"
1515
},
1616
files: {
17-
"css/metamapsMapRender.css": "less/metamapsMapRenderer.less"
17+
"css/junto.css": "less/junto.less"
1818
}
1919
}
2020
};

grunt/uglify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module.exports =
55
},
66
dist: {
77
src: '<%= concat.dist.dest %>',
8-
dest: 'dist/metamaps_renderer.min.js'
8+
dest: 'dist/junto.min.js'
99
}
1010
};
File renamed without changes.

serve/content/bg.jpg img/bg.jpg

File renamed without changes.

img/blueprint_96px/bp_action.png

-4.08 KB
Binary file not shown.

img/blueprint_96px/bp_activity.png

-5.54 KB
Binary file not shown.

img/blueprint_96px/bp_catalyst.png

-4.86 KB
Binary file not shown.

img/blueprint_96px/bp_closedissue.png

-4.83 KB
Binary file not shown.

img/blueprint_96px/bp_futuredev.png

-4.88 KB
Binary file not shown.

img/blueprint_96px/bp_group.png

-5.03 KB
Binary file not shown.

img/blueprint_96px/bp_implication.png

-4.98 KB
Binary file not shown.

img/blueprint_96px/bp_insight.png

-5.08 KB
Binary file not shown.

img/blueprint_96px/bp_intention.png

-4.87 KB
Binary file not shown.

img/blueprint_96px/bp_knowledge.png

-4.98 KB
Binary file not shown.

img/blueprint_96px/bp_location.png

-4.75 KB
Binary file not shown.

img/blueprint_96px/bp_need.png

-4.67 KB
Binary file not shown.

img/blueprint_96px/bp_openissue.png

-5.11 KB
Binary file not shown.

img/blueprint_96px/bp_opportunity.png

-5.21 KB
Binary file not shown.

img/blueprint_96px/bp_person.png

-3.78 KB
Binary file not shown.

img/blueprint_96px/bp_platform.png

-5 KB
Binary file not shown.

img/blueprint_96px/bp_problem.png

-5.36 KB
Binary file not shown.

img/blueprint_96px/bp_process.png

-5.33 KB
Binary file not shown.

img/blueprint_96px/bp_resource.png

-4.84 KB
Binary file not shown.

img/blueprint_96px/bp_role.png

-4.64 KB
Binary file not shown.

img/blueprint_96px/bp_task.png

-3.11 KB
Binary file not shown.

img/blueprint_96px/bp_trajectory.png

-4.9 KB
Binary file not shown.
File renamed without changes.

img/generics_96px/gen_aim.png

-3.55 KB
Binary file not shown.

img/generics_96px/gen_argument.png

-3.34 KB
Binary file not shown.

img/generics_96px/gen_con.png

-3.2 KB
Binary file not shown.

img/generics_96px/gen_decision.png

-3.76 KB
Binary file not shown.

img/generics_96px/gen_event.png

-2.22 KB
Binary file not shown.

img/generics_96px/gen_example.png

-4.06 KB
Binary file not shown.

img/generics_96px/gen_experience.png

-4.11 KB
Binary file not shown.

img/generics_96px/gen_feedback.png

-3.81 KB
Binary file not shown.
-4.4 KB
Binary file not shown.

img/generics_96px/gen_idea.png

-3.88 KB
Binary file not shown.

img/generics_96px/gen_list.png

-3.65 KB
Binary file not shown.

img/generics_96px/gen_media.png

-2.78 KB
Binary file not shown.

img/generics_96px/gen_metamap.png

-3.84 KB
Binary file not shown.

img/generics_96px/gen_model.png

-3.16 KB
Binary file not shown.

img/generics_96px/gen_note.png

-4.47 KB
Binary file not shown.

img/generics_96px/gen_perspective.png

-2.23 KB
Binary file not shown.

img/generics_96px/gen_pro.png

-3.49 KB
Binary file not shown.

img/generics_96px/gen_project.png

-2.94 KB
Binary file not shown.

img/generics_96px/gen_question.png

-3.5 KB
Binary file not shown.

img/generics_96px/gen_reference.png

-3.17 KB
Binary file not shown.

img/generics_96px/gen_research.png

-4.43 KB
Binary file not shown.

img/generics_96px/gen_status.png

-2.37 KB
Binary file not shown.

img/generics_96px/gen_story.png

-3.95 KB
Binary file not shown.

img/generics_96px/gen_subject.png

-2.27 KB
Binary file not shown.

img/generics_96px/gen_tool.png

-3.01 KB
Binary file not shown.

img/generics_96px/gen_wildcard.png

-3.73 KB
Binary file not shown.
File renamed without changes.

img/junto-bg-glow.jpg

122 KB
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

img/system/arrow_sprite-alt.png

-715 Bytes
Binary file not shown.

img/system/arrowperms_sprite.png

-543 Bytes
Binary file not shown.

img/system/arrowpermswhite_sprite.png

-540 Bytes
Binary file not shown.

img/system/compass_arrow.png

-145 Bytes
Binary file not shown.

img/system/edit.png

-324 Bytes
Binary file not shown.

img/system/link_sprite.png

-601 Bytes
Binary file not shown.

img/system/map32_sprite.png

-744 Bytes
Binary file not shown.
-475 Bytes
Binary file not shown.

img/system/permissions32_sprite.png

-2.87 KB
Binary file not shown.

img/system/permissions36_sprite.png

-2.23 KB
Binary file not shown.

img/system/remove.png

-328 Bytes
Binary file not shown.

img/system/synapse16.png

-333 Bytes
Binary file not shown.

img/system/synapse32.png

-467 Bytes
Binary file not shown.

img/system/synapse32_sprite.png

-627 Bytes
Binary file not shown.

img/system/synapse32padded.png

-423 Bytes
Binary file not shown.
-494 Bytes
Binary file not shown.
-501 Bytes
Binary file not shown.

img/system/topic16.png

-533 Bytes
Binary file not shown.

img/system/topic32.png

-770 Bytes
Binary file not shown.
-450 Bytes
Binary file not shown.

img/system/topic_link_signifier.png

-621 Bytes
Binary file not shown.

img/system/upload_sprite.png

-476 Bytes
Binary file not shown.

img/system/user.png

-1.91 KB
Binary file not shown.

img/system/zoom_sprite.png

-364 Bytes
Binary file not shown.
File renamed without changes.
File renamed without changes.

less/.DS_Store

6 KB
Binary file not shown.

serve/content/app.css less/app.less

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
body {
22
/*background-image: url('../content/bg.jpg'); */
3-
background-image: url('http://junto.cc/wsimages/junto-bg-glow.jpg');
3+
background-image: url('/img/junto-bg-glow.jpg');
44
background-repeat: no-repeat;
55
background-size: cover;
66
background-position: center center;
@@ -132,7 +132,7 @@ body {
132132
.play-button {
133133
width: 200px;
134134
height: 200px;
135-
background-image: url('../content/play-button.png');
135+
background-image: url('/img/play-button.png');
136136
background-repeat: no-repeat;
137137
background-position: center center;
138138
cursor: pointer;

less/collaboratorsCompass.less

-48
This file was deleted.
File renamed without changes.

less/junto.less

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@import 'core';
2+
@import 'chatClient';
3+
@import 'topicView';
4+
@import 'famous';
5+
@import 'app';

less/metamapsMapRenderer.less

-6
This file was deleted.

less/newTopicView.less

-30
This file was deleted.

0 commit comments

Comments
 (0)