├── LICENSE.txt ├── README.md ├── config.json ├── css ├── style.css └── tablet.css ├── data.json ├── data ├── IntellectualCooperation_edges.csv ├── IntellectualCooperation_metrics.csv ├── IntellectualCooperation_metrics.pdf ├── IntellectualCooperation_nodes.csv ├── Multilayer_edges.xlsx ├── Multilayer_nodes.xlsx └── classification.csv ├── htaccess_example ├── images ├── 1mode.png ├── CC.png ├── blank.gif ├── fancybox_loading.gif ├── fancybox_sprite.png ├── illustration.png ├── info.png ├── intellectualcooperation.png ├── multilayer.png ├── rainbow.png ├── sprite.png ├── zoom_in.png ├── zoom_out.png └── zoom_reset.png ├── index.html ├── js ├── excanvas.js ├── fancybox │ ├── jquery.fancybox.css │ └── jquery.fancybox.pack.js ├── jquery │ └── jquery.min.js ├── main.js └── sigma │ ├── _sigma.min.js │ ├── parseGexf_fin.js │ ├── sigma.js │ ├── sigma.min.js │ ├── sigma.parseGexf.js │ └── sigma.parseJson.js └── web.config /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/config.json -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/css/style.css -------------------------------------------------------------------------------- /css/tablet.css: -------------------------------------------------------------------------------- 1 | #developercontainer { 2 | display:none; 3 | } -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data.json -------------------------------------------------------------------------------- /data/IntellectualCooperation_edges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data/IntellectualCooperation_edges.csv -------------------------------------------------------------------------------- /data/IntellectualCooperation_metrics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data/IntellectualCooperation_metrics.csv -------------------------------------------------------------------------------- /data/IntellectualCooperation_metrics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data/IntellectualCooperation_metrics.pdf -------------------------------------------------------------------------------- /data/IntellectualCooperation_nodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data/IntellectualCooperation_nodes.csv -------------------------------------------------------------------------------- /data/Multilayer_edges.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data/Multilayer_edges.xlsx -------------------------------------------------------------------------------- /data/Multilayer_nodes.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data/Multilayer_nodes.xlsx -------------------------------------------------------------------------------- /data/classification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/data/classification.csv -------------------------------------------------------------------------------- /htaccess_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/htaccess_example -------------------------------------------------------------------------------- /images/1mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/1mode.png -------------------------------------------------------------------------------- /images/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/CC.png -------------------------------------------------------------------------------- /images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/blank.gif -------------------------------------------------------------------------------- /images/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/fancybox_loading.gif -------------------------------------------------------------------------------- /images/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/fancybox_sprite.png -------------------------------------------------------------------------------- /images/illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/illustration.png -------------------------------------------------------------------------------- /images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/info.png -------------------------------------------------------------------------------- /images/intellectualcooperation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/intellectualcooperation.png -------------------------------------------------------------------------------- /images/multilayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/multilayer.png -------------------------------------------------------------------------------- /images/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/rainbow.png -------------------------------------------------------------------------------- /images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/sprite.png -------------------------------------------------------------------------------- /images/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/zoom_in.png -------------------------------------------------------------------------------- /images/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/zoom_out.png -------------------------------------------------------------------------------- /images/zoom_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/images/zoom_reset.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/index.html -------------------------------------------------------------------------------- /js/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/excanvas.js -------------------------------------------------------------------------------- /js/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /js/fancybox/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/fancybox/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /js/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/jquery/jquery.min.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/main.js -------------------------------------------------------------------------------- /js/sigma/_sigma.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/sigma/_sigma.min.js -------------------------------------------------------------------------------- /js/sigma/parseGexf_fin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/sigma/parseGexf_fin.js -------------------------------------------------------------------------------- /js/sigma/sigma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/sigma/sigma.js -------------------------------------------------------------------------------- /js/sigma/sigma.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/sigma/sigma.min.js -------------------------------------------------------------------------------- /js/sigma/sigma.parseGexf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/sigma/sigma.parseGexf.js -------------------------------------------------------------------------------- /js/sigma/sigma.parseJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/js/sigma/sigma.parseJson.js -------------------------------------------------------------------------------- /web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grandjeanmartin/intellectual-cooperation/HEAD/web.config --------------------------------------------------------------------------------