Skip to content

Commit

Permalink
added fixes for Issue #2
Browse files Browse the repository at this point in the history
  • Loading branch information
cegme committed Aug 30, 2012
1 parent 1dd0697 commit c872fd9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions web/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ function showPaper(tid) {

$.ajax({
type: 'GET',
url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
url: '/grisham/paper/web/query.php',
//url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
dataType: 'json',
data: {q: tid,
type: 'rank',
Expand Down Expand Up @@ -244,7 +245,8 @@ function kwQuery(offsetval, limitval) {
toggleLoading(true);
$.ajax({
type: "GET",
url: "http://neo.cise.ufl.edu/grisham/paper/web/query.php",
url: '/grisham/paper/web/query.php',
//url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
dataType: "json",
data: {q: escape($("#kwrd").val()),
type: "keyword_realtime",
Expand Down
3 changes: 2 additions & 1 deletion web/papergraph.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ function updatePaperGraph(paperid) {
toggleLoading(true);
$.ajax({
type: 'GET',
url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
url: '/grisham/paper/web/query.php',
//url: 'http://neo.cise.ufl.edu/grisham/paper/web/query.php',
dataType: 'json',
data: {q: paperid,
type: 'citations',
Expand Down

0 comments on commit c872fd9

Please sign in to comment.