diff --git a/public/FriendsGraph.html b/public/FriendsGraph.html index d845911..1a254e4 100644 --- a/public/FriendsGraph.html +++ b/public/FriendsGraph.html @@ -70,7 +70,6 @@ options.height = "700px"; createFriendsGraph(username, "myGraph", "graphLoading"); profileGen(username, "profileGen"); - $("#searchBarTop").html(""); } if(findGetParameter("name") !== null) diff --git a/public/GraphGenerator.html b/public/GraphGenerator.html index ea681a9..6b99e5c 100644 --- a/public/GraphGenerator.html +++ b/public/GraphGenerator.html @@ -110,7 +110,7 @@ Creates a web chart of the specified organization and all associated repos.

- +

@@ -145,5 +145,5 @@ var oname = fetchOrgInput(); window.location.href = "./OrgRepoGraph.html?name=" + oname; } - + \ No newline at end of file diff --git a/public/OrgRepoGraph.html b/public/OrgRepoGraph.html new file mode 100644 index 0000000..71a0906 --- /dev/null +++ b/public/OrgRepoGraph.html @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + +
+
+ + + +
+ +
+
+ +
+
+

+
+

+            
+
+
+
+
+ + +
+ + + + \ No newline at end of file diff --git a/public/about.html b/public/about.html index c6db7a5..22bf82e 100644 --- a/public/about.html +++ b/public/about.html @@ -46,7 +46,14 @@

- jeff this is where you can write a bunch about the project + This is an interactive website which allows you to make graphs of the github network. + Currently we have three types of graphs-- the most popular of which is our friends graph. + The friends graphs helps you visualize clusters of friends/collaborators on GitHub. + This can be used to spot clusters within organizations and schools. +

+

+ This is an open source project, all the source code can be found on github. + New collaborators are always welcomed; look at our github repository for contributing guidelines.

@@ -55,6 +62,8 @@

This project was completed in 24 hours for participation in BrickHack V at the Rochester Institute of Technology. + We hope that this project will make people more interested in learning about big data analytics. + The visual aspect of this website makes learning about topics such as clustering and graph databases more intuitive.

@@ -68,7 +77,7 @@

- did stuff + I did a large chunk of work with the backend pulling data from github and generating the graphs with visJS.

- also did stuff + Worked on pulling api data from github to create the mini profile display and some graphs.

- kinda did stuff + Worked on the front end design of the website and designed graphic art for this website.

" +
"; $("#"+container).html(html); }) }, () => { @@ -79,8 +79,7 @@ function parseOrgs(name) { resolve(orgs_final.join(" ")); }) }, (error) => { - console.error("error getting orgs"); - reject(error); + resolve([]); }); }) }