Skip to content
This repository was archived by the owner on Oct 5, 2025. It is now read-only.

Commit a0e5157

Browse files
committed
init commit
1 parent 554da0a commit a0e5157

139 files changed

Lines changed: 337164 additions & 1 deletion

File tree

Some content is hidden

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

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
node_modules
3+
Gemfile*
4+
.DS_Store
5+
*.swp

Gruntfile.js

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
module.exports = function(grunt) {
2+
3+
// Project configuration.
4+
grunt.initConfig({
5+
pkg: grunt.file.readJSON('package.json'),
6+
uglify: {
7+
main: {
8+
src: 'js/<%= pkg.name %>.js',
9+
dest: 'js/<%= pkg.name %>.min.js'
10+
}
11+
},
12+
less: {
13+
expanded: {
14+
options: {
15+
paths: ["css"]
16+
},
17+
files: {
18+
"css/<%= pkg.name %>.css": "less/<%= pkg.name %>.less"
19+
}
20+
},
21+
minified: {
22+
options: {
23+
paths: ["css"],
24+
cleancss: true
25+
},
26+
files: {
27+
"css/<%= pkg.name %>.min.css": "less/<%= pkg.name %>.less"
28+
}
29+
}
30+
},
31+
banner: '/*!\n' +
32+
' * <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
33+
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
34+
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' +
35+
' */\n',
36+
usebanner: {
37+
dist: {
38+
options: {
39+
position: 'top',
40+
banner: '<%= banner %>'
41+
},
42+
files: {
43+
src: ['css/<%= pkg.name %>.css', 'css/<%= pkg.name %>.min.css', 'js/<%= pkg.name %>.min.js']
44+
}
45+
}
46+
},
47+
watch: {
48+
scripts: {
49+
files: ['js/<%= pkg.name %>.js'],
50+
tasks: ['uglify'],
51+
options: {
52+
spawn: false,
53+
},
54+
},
55+
less: {
56+
files: ['less/*.less'],
57+
tasks: ['less'],
58+
options: {
59+
spawn: false,
60+
}
61+
},
62+
},
63+
});
64+
65+
// Load the plugins.
66+
grunt.loadNpmTasks('grunt-contrib-uglify');
67+
grunt.loadNpmTasks('grunt-contrib-less');
68+
grunt.loadNpmTasks('grunt-banner');
69+
grunt.loadNpmTasks('grunt-contrib-watch');
70+
71+
// Default task(s).
72+
grunt.registerTask('default', ['uglify', 'less', 'usebanner']);
73+
74+
};

LICENSE

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
# Copyright 2015 Ahmet Cecen and MINED Group @ Gatech
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.
14+
15+
---
16+
17+
## LICENSES FOR INTEGRATED WORKS:
18+
19+
---
20+
datacratic/data-projector @ Commit SHA: e7061f15857d252966aae0a95d22dd8006a8b301
21+
---
22+
23+
The MIT License (MIT)
24+
25+
Copyright (c) 2014 Datacratic
26+
27+
Permission is hereby granted, free of charge, to any person obtaining a copy
28+
of this software and associated documentation files (the "Software"), to deal
29+
in the Software without restriction, including without limitation the rights
30+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
31+
copies of the Software, and to permit persons to whom the Software is
32+
furnished to do so, subject to the following conditions:
33+
34+
The above copyright notice and this permission notice shall be included in all
35+
copies or substantial portions of the Software.
36+
37+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
43+
SOFTWARE.
44+
45+
---
46+
hakimel/reveal.js @ Commit SHA: 5bdbc2dc7b4c957f6df6540bdccc29e00c2e49a3
47+
---
48+
49+
Copyright (C) 2014 Hakim El Hattab, http://hakim.se
50+
51+
Permission is hereby granted, free of charge, to any person obtaining a copy
52+
of this software and associated documentation files (the "Software"), to deal
53+
in the Software without restriction, including without limitation the rights
54+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
55+
copies of the Software, and to permit persons to whom the Software is
56+
furnished to do so, subject to the following conditions:
57+
58+
The above copyright notice and this permission notice shall be included in
59+
all copies or substantial portions of the Software.
60+
61+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
62+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
63+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
64+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
65+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
66+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
67+
THE SOFTWARE.
68+
69+
---
70+
IronSummitMedia/startbootstrap-clean-blog @ Commit SHA: db72e00153c5f3cc7af5b9a6cb92acb03703507c
71+
---
72+
73+
The MIT License (MIT)
74+
75+
Copyright (c) 2013-2016 Blackrock Digital LLC.
76+
77+
Permission is hereby granted, free of charge, to any person obtaining a copy
78+
of this software and associated documentation files (the "Software"), to deal
79+
in the Software without restriction, including without limitation the rights
80+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
81+
copies of the Software, and to permit persons to whom the Software is
82+
furnished to do so, subject to the following conditions:
83+
84+
The above copyright notice and this permission notice shall be included in
85+
all copies or substantial portions of the Software.
86+
87+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
88+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
89+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
90+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
91+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
92+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
93+
THE SOFTWARE.
94+
95+
96+
---
97+
three.js and misc_controls_transform @ Commit SHA: 03d73a64eb44d0101836a048bcd691b3465fcf90
98+
---
99+
100+
The MIT License (MIT)
101+
102+
Copyright © 2010-2016 three.js authors
103+
104+
Permission is hereby granted, free of charge, to any person obtaining a copy
105+
of this software and associated documentation files (the "Software"), to deal
106+
in the Software without restriction, including without limitation the rights
107+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
108+
copies of the Software, and to permit persons to whom the Software is
109+
furnished to do so, subject to the following conditions:
110+
111+
The above copyright notice and this permission notice shall be included in
112+
all copies or substantial portions of the Software.
113+
114+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
115+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
116+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
117+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
118+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
119+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
120+
THE SOFTWARE.
121+
122+
---
123+
mermaid.js @ Commit SHA:5302ca38da572aaaf623b986ccf6f646a6b6f773
124+
---
125+
126+
The MIT License (MIT)
127+
128+
Copyright (c) 2014 Knut Sveidqvist
129+
130+
Permission is hereby granted, free of charge, to any person obtaining a copy
131+
of this software and associated documentation files (the "Software"), to deal
132+
in the Software without restriction, including without limitation the rights
133+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
134+
copies of the Software, and to permit persons to whom the Software is
135+
furnished to do so, subject to the following conditions:
136+
137+
The above copyright notice and this permission notice shall be included in all
138+
copies or substantial portions of the Software.
139+
140+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
141+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
142+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
143+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
144+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
145+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
146+
SOFTWARE.

README.md

100644100755
Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
# pythonchile.cl
1+
# Python-Chile
2+
3+
Sitio estatico y blog de la comunidad de pythonchile
4+
5+
6+
### Basado en Project Pages
7+
8+
Project Pages is Jekyll Template specifically geared towards collaborative science. For more information, click [here](https://github.com/projectpages/project-pages/wiki/Project-Pages---Guides,-Tips,-Discussions).

_config.yml

Lines changed: 159 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
# Site settings
2+
title: Python Chile
3+
description: "Comunidad Python Chile"
4+
url: "https://pythonchile.cl"
5+
6+
7+
8+
9+
# Secondary Parameters
10+
baseurl: ""
11+
header-img: img/home-bg.jpg
12+
headercolor: "#FFFFFF"
13+
logo: /img/logos/Project-Pages-New-Logo-Inverted.png
14+
15+
# Tertiary Parameters
16+
github_username: python-chile
17+
project_repository: pythonchile.cl
18+
disqus_shortname: python-chile
19+
facebook_username : groups/pythonchileprogramadores
20+
g-analytics: UA-113857044-1
21+
altmetric: true
22+
23+
# Build settings
24+
gems: [jekyll-paginate]
25+
markdown: kramdown
26+
highlighter: rouge
27+
permalink: pretty
28+
paginate: 10
29+
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
30+
31+
# Jekyll Settings
32+
33+
defaults:
34+
-
35+
scope:
36+
path: "projects"
37+
type: "pages"
38+
values:
39+
layout: "project"
40+
header-img: "img/home-bg.jpg"
41+
42+
# Prose Settings
43+
prose:
44+
ignore: ['feed.xml', '/stl', '/ply', '/js', '/plugin', '/lib', '/projectors', '_layouts', '/_includes', 'Gruntfile.js', 'package.json', 'proselinks.jsonp', 'ppanchor.matin', '.gitignore', '/search', '/css', '/img', 'favicon.png','_data/*.json','LICENSES.md','README.md','colorscheme.scss','members.html','mentions.html','index.html']
45+
siteurl: 'https://pythonchile.cl'
46+
ispp: true
47+
media: 'img'
48+
metadata:
49+
projects:
50+
- name: "title"
51+
field:
52+
element: "text"
53+
label: "Title"
54+
value: ""
55+
- name: "description"
56+
field:
57+
element: "text"
58+
label: "Description"
59+
value: ""
60+
- name: "category"
61+
field:
62+
element: "text"
63+
label: "Project"
64+
value: ""
65+
_posts:
66+
- name: "subtitle"
67+
field:
68+
element: "text"
69+
label: "Sub-Title (Short Description)"
70+
value: ""
71+
- name: "layout"
72+
field:
73+
element: "select"
74+
label: "Choose Layout"
75+
placeholder: "Layouts"
76+
options:
77+
- name: "Post"
78+
value: "post"
79+
- name: "Slide"
80+
value: "slide"
81+
- name: "Projector"
82+
value: "projector"
83+
- name: "Notebook"
84+
value: "notebook"
85+
- name: "Ply Surface"
86+
value: "plysurface"
87+
- name: "title"
88+
field:
89+
element: "text"
90+
label: "Title"
91+
value: ""
92+
- name: "author"
93+
field:
94+
element: "text"
95+
label: "Author"
96+
value: ""
97+
- name: "tags"
98+
field:
99+
element: "text"
100+
label: "Tags (seperate with whitespace)"
101+
value: ""
102+
- name: "category"
103+
field:
104+
element: "text"
105+
label: "Project"
106+
value: ""
107+
- name: "horizontal"
108+
field:
109+
element: "hidden"
110+
value: </section></section><section markdown="1" data-background="https://pythonchile.cl/project-pages/img/slidebackground.png"><section markdown="1">
111+
- name: "vertical"
112+
field:
113+
element: "hidden"
114+
value: </section><section markdown="1">
115+
- name: "slideinit"
116+
field:
117+
element: "hidden"
118+
value: <section markdown="1" data-background="https://pythonchile.cl/project-pages/img/slidebackground.png"><section markdown="1">
119+
- name: "theme"
120+
field:
121+
element: "select"
122+
label: "Theme (Slide)"
123+
placeholder: "Theme (Slide)"
124+
options:
125+
- name: "Beige"
126+
value: "beige"
127+
- name: "Blood"
128+
value: "blood"
129+
- name: "Moon"
130+
value: "moon"
131+
- name: "Night"
132+
value: "night"
133+
- name: "Sky"
134+
value: "sky"
135+
- name: "Solarized"
136+
value: "solarized"
137+
- name: "trans"
138+
field:
139+
element: "select"
140+
label: "Transition (Slide)"
141+
placeholder: "Transition (Slide)"
142+
options:
143+
- name: "Cube"
144+
value: "cube"
145+
- name: "Page"
146+
value: "page"
147+
- name: "Concave"
148+
value: "concave"
149+
- name: "Linear"
150+
value: "linear"
151+
- name: "Fade"
152+
value: "fade"
153+
- name: "None"
154+
value: "none"
155+
- name: "visualworkflow"
156+
field:
157+
element: "checkbox"
158+
label: "Visual Workflow Chart (Some Layouts)"
159+
value: "true"

0 commit comments

Comments
 (0)