Skip to content

Commit 3caf01b

Browse files
authored
Merge pull request #390 from OpenKnowledgeMaps/secUpdate
Sec update
2 parents f61f08c + fd030c0 commit 3caf01b

18 files changed

+10817
-1300
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Head Start is a web-based knowledge mapping software intended to give researcher
77
## Getting Started
88

99
### Client
10-
To get started, clone this repository. Next, duplicate the file `config.example.js` in the root folder and rename it to `config.js`.
10+
To get started, clone this repository. Next, duplicate the file `config.example.js` in the root folder and rename it to `config.js`.
1111

12-
Make sure to have `npm` version 3.10.10 installed (it comes with Node.js 6.12.0, you can [download installers here](https://nodejs.org/dist/latest-v6.x/)) and run the following two commands to build the Headstart client:
12+
Make sure to have `npm` version 6.11.3 installed (it comes with Node.js 10.17.0, best way to install is with [nvm](https://github.com/nvm-sh/nvm), `nvm install 10.17.0`) and run the following two commands to build the Headstart client:
1313

1414
npm install
1515
npm run dev

config.example.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
module.exports = {
3-
publicPath : "http://localhost:8080/dist"
3+
publicPath : "http://localhost:8080/dist/"
44
, skin : ""
55
};

doc/server_config.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ If you want to do more than just displaying static CSV files, you need to config
66

77
Make sure you have the following packages installed:
88

9-
* PHP 5.3+ with the following extensions:
9+
* PHP 7.2 with the following extensions:
1010
* curl
1111
* pdo_sqlite
1212
* mbstring
1313
* fileinfo
1414
* xml
15-
* R 3.3+ (https://www.r-project.org/) with current updates, with the following libraries. **Make sure you install these packages for all users, so that Apache can load them.**
15+
* R 3.5 (https://www.r-project.org/) with current updates, with the following libraries. **Make sure you install these packages for all users, so that Apache can load them.**
1616
* arsenal (for snapshot tests)
1717
* knitr (for test reports)
1818
* logging

examples/cris_vis/index2_de.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
data_config.server_url = window.location.href.replace(/[^/]*$/, '') + "../../server/";
2121
headstart.start();
2222
</script>
23-
23+
2424
<!-- Piwik -->
2525
<script type="text/javascript">
2626
var _paq = _paq || [];

examples/cris_vis/index2_en.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script type="text/javascript">
2020
headstart.start();
2121
</script>
22-
22+
2323
<!-- Piwik -->
2424
<script type="text/javascript">
2525
var _paq = _paq || [];

examples/linkedcat/headstart.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
?>
55
<html>
66
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
7+
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet">
88
</head>
99

1010
<body style="margin:0px; padding:0px">

examples/local_files/data-config.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ var data_config = {
88
use_area_uri: false,
99
is_force_areas: false,
1010
url_prefix: "http://mendeley.com/catalog/",
11-
12-
show_multiples: true,
13-
show_dropdown: true,
11+
12+
show_multiples: false,
13+
show_dropdown: false,
1414
show_intro: false,
1515
show_list:true,
1616
is_force_papers:true,
17-
17+
1818
show_context: false,
1919
create_title_from_context: false,
2020

0 commit comments

Comments
 (0)