Skip to content

Commit f24375e

Browse files
committed
New website template.
1 parent 9f11015 commit f24375e

File tree

103 files changed

+3146
-0
lines changed

Some content is hidden

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

103 files changed

+3146
-0
lines changed

Diff for: _config.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing these this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'jekyll serve'. If you change this file, please restart the server process.
10+
11+
# Site settings
12+
# These are used to personalize your new site. If you look in the HTML files,
13+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
14+
# You can create any custom variable you would like, and they will be accessible
15+
# in the templates via {{ site.myvariable }}.
16+
title: Parsl
17+
description: > # this means to ignore newlines until "baseurl:"
18+
Parsl is a parallel scripting library for Python. It provides a model by which complex
19+
workflows can be represented in an intuitive Python-based control application. It
20+
facilitates transparent parallel execution of workflow components (apps) on any
21+
distributed or parallel computing system.
22+
baseurl: "" # the subpath of your site, e.g. /blog
23+
url: "http://globus.github.io/parsl-web" # the base hostname & protocol for your site
24+
# Build settings
25+
#markdown: kramdown
26+
#theme: minima

Diff for: _layouts/default.html

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
<!DOCTYPE html>
2+
<!-- saved from url=(0053)https://getbootstrap.com/docs/4.0/examples/carousel/# -->
3+
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4+
5+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6+
<meta name="description" content="">
7+
<meta name="author" content="">
8+
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
9+
10+
<title>Parsl: Parallel Scripting in Python</title>
11+
12+
<!-- Bootstrap core CSS -->
13+
<link href="./style/bootstrap.min.css" rel="stylesheet">
14+
15+
<!-- Custom styles for this template -->
16+
<link href="./style/carousel.css" rel="stylesheet">
17+
18+
<script src="./js/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
19+
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
20+
<!--<script src="./style/popper.min.js.download"></script>-->
21+
<script src="./js/bootstrap.min.js.download"></script>
22+
<script src="./js/holder.min.js.download"></script>
23+
24+
<style>
25+
.inst-logo{
26+
margin-top:-30px;
27+
margin-bottom:-20px;
28+
}
29+
</style>
30+
31+
</head>
32+
<body>
33+
34+
<header>
35+
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
36+
<a class="navbar-brand" href="/"><img src="images/parsl-logo-white.png" height="25"></a>
37+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
38+
<span class="navbar-toggler-icon"></span>
39+
</button>
40+
<div class="collapse navbar-collapse" id="navbarCollapse">
41+
<ul class="navbar-nav mr-auto">
42+
<!-- <li class="nav-item active">
43+
<a class="nav-link" href="https://getbootstrap.com/docs/4.0/examples/carousel/#">Home <span class="sr-only">(current)</span></a>
44+
</li> -->
45+
<li class="nav-item">
46+
<a class="nav-link" href="https://parsl.readthedocs.io/en/stable/">Documentation</a>
47+
</li>
48+
<li class="nav-item">
49+
<a class="nav-link" href="case_studies.html">Case Studies</a>
50+
</li>
51+
<li class="nav-item">
52+
<a class="nav-link" href="support.html">Support</a>
53+
</li>
54+
<li class="nav-item">
55+
<a class="nav-link" href="publications.html">Publications</a>
56+
</li>
57+
<li class="nav-item">
58+
<a class="nav-link" href="news.html">News</a>
59+
</li>
60+
</ul>
61+
</div>
62+
</nav>
63+
</header>
64+
65+
<main role="main">
66+
67+
{{ content }}
68+
69+
<!-- FOOTER -->
70+
<footer class="container">
71+
<hr>
72+
<div class="row" style="text-align: center">
73+
<div class="col-lg-1"></div>
74+
<div class="col-lg-3">
75+
<img class="inst-logo" src="images/uc-200.png" width="200">
76+
</div>
77+
<div class="col-lg-3">
78+
<img class="inst-logo" src="images/anl-200.png" width="200">
79+
</div>
80+
<div class="col-lg-3">
81+
<img class="inst-logo" src="images/uiuc-200.png" width="200">
82+
</div>
83+
</div>
84+
85+
<p class="float-right"><a href="#">Back to top</a></p>
86+
<p>© 2017-2018 University of Chicago.</p>
87+
</footer>
88+
</main>
89+
90+
91+
<!--
92+
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500" preserveAspectRatio="none" style="display: none; visibility: hidden; position: absolute; top: -100%; left: -100%;"><defs><style type="text/css"></style></defs><text x="0" y="25" style="font-weight:bold;font-size:25pt;font-family:Arial, Helvetica, Open Sans, sans-serif">500x500</text></svg>
93+
-->
94+
</body></html>

Diff for: _posts/2016-06-01-nsf-award.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "NSF award to support the development of Parsl"
4+
date: 2016-06-01 10:13:16 -0700
5+
type: award
6+
---
7+
NSF Awarded funding to develop a workflow ecosystem: [SI2-SSI: Swift/E: Integrating Parallel Scripted Workflow into the Scientific Software Ecosystem](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1550588&HistoricalAwards=false)

Diff for: _posts/2017-06-14-ssi-article.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "SSI blog about Parsl's use in ArcticDEM "
4+
date: 2017-06-14 10:13:16 -0700
5+
type: award
6+
---
7+
Software Sustainability Institute [blog about Parsl and Swift's use in the ArcticDEM project](https://www.software.ac.uk/blog/2017-06-14-workflow-systems-science-programming-large)

Diff for: _posts/2017-06-19-crops-insilico.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Poster at the crops in silico workshop "
4+
date: 2017-06-19 10:13:16 -0700
5+
type: award
6+
---
7+
We are presenting a poster about Parsl at the [Second Annual Crops in silico syposium and workshop](http://cropsinsilico.org/convenings/)

Diff for: _posts/2017-08-20-sode-paper.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Development of a flexible-monomer two-body carbon dioxide potential and its application to clusters up to (CO2)13"
4+
date: 2017-08-20 10:13:16 -0700
5+
type: paper
6+
---
7+
Paper using Parsl accepted for publication. O. Sode and J. N. Cherry, "Development of a flexible-monomer two-body carbon dioxide potential and its application to clusters up to (CO2)13," J. Comput. Chem.

Diff for: _posts/2017-08-29-parsl-paper.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Parsl paper published on Zenodo"
4+
date: 2017-08-29 10:13:16 -0700
5+
type: paper
6+
---
7+
Extended abstract about Parsl published on Zenodo: [Introducing Parsl: A Python Parallel Scripting Library](http://doi.org/10.5281/zenodo.853492)

Diff for: _posts/2017-09-01-join.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "We are actively looking for developers to help build Parsl"
4+
date: 2017-09-01 10:13:16 -0700
5+
type: join
6+
---
7+
We are actively looking for developers, postdocs, and students to help develop Parsl. [Join our team.](https://jobopportunities.uchicago.edu/applicants/jsp/shared/position/JobDetails_css.jsp?postingId=683259)

Diff for: _posts/2017-11-17-news.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "We are actively looking for developers to help build Parsl"
4+
date: 2017-11-17 10:13:16 -0700
5+
type: news
6+
---
7+
NCSA wins [top supercomputing achievement and a best use of HPC](http://www.ncsa.illinois.edu/news/story/ncsa_wins_top_supercomputing_achievement_and_a_best_use_of_hpc_in_2017_hpcw) in 2017 HPCWire Editors' Choice Awards.

Diff for: _posts/2017-11-22-news.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "We are actively looking for developers to help build Parsl"
4+
date: 2017-11-22 10:13:16 -0700
5+
type: news
6+
---
7+
Overview: The [Computation Institute at SC17.](https://www.ci.uchicago.edu/blog/ci-sc17-arctic-award-portal-preview-smart-cities)

Diff for: _posts/2018-02-05-Parsl.0-4.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Parsl 0.4 released"
4+
date: 2018-02-05 10:13:16 -0700
5+
type: news
6+
---
7+
[Parsl 0.4.0](https://pypi.python.org/pypi/parsl) version released with automatic elasticity, multi-site support, and caching.

Diff for: _posts/2018-03-15-CHEP.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "CHEP presentation accepted"
4+
date: 2018-03-15 10:13:16 -0700
5+
type: news
6+
---
7+
Catch our presentation about Parsl for HEP workflows using containers at [CHEP 2018](http://chep2018.org/).

Diff for: _posts/2018-04-13-SciPy.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "SciPy presentation"
4+
date: 2018-04-18 10:13:16 -0700
5+
type: news
6+
---
7+
[Parsl abstract](https://scipy2018.scipy.org/ehome/index.php?eventid=299527&tabid=712461&cid=2233540&sessionid=21620152&sessionchoice=1&) accepted for presentation at [SciPy2018](https://scipy2018.scipy.org).

Diff for: _posts/2018-04-16-Parsl.0-5.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Parsl 0.5 released"
4+
date: 2018-04-16 10:13:16 -0700
5+
type: news
6+
---
7+
[Parsl 0.5.0](https://pypi.python.org/pypi/parsl) version released with Globus transfers, Docker containers, automatic checkpointing, and more.

Diff for: _posts/2018-04-18-IWSG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "IWSG Paper accepted"
4+
date: 2018-04-18 10:13:16 -0700
5+
type: news
6+
---
7+
Parsl paper accepted at [IWSG 2018](https://sites.google.com/a/nd.edu/iwsg2018/).

Diff for: _posts/2018-05-23-NotreDame.markdown

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Notre Dame presentation"
4+
date: 2018-05-23 10:13:16 -0700
5+
type: news
6+
---
7+
Parsl seminar at Notre Dame.

Diff for: _posts/2018-06-11-RSE-2018-poster.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "RSE 2018 Poster accepted"
4+
date: 2018-06-11 07:35:16 -0700
5+
type: news
6+
---
7+
Parsl poster accepted at [Third RSE Conference (RSE 2018)](http://rse.ac.uk/conf2018/).

Diff for: _posts/2018-2-2-uiuc.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Parsl presentation at UIUC"
4+
date: 2018-02-02 10:13:16 -0700
5+
type: news
6+
---
7+
Parsl presentation at UIUC/NCSA in room 1040.

Diff for: _posts/2018-6-14-IWSG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Presentation at IWSG 2018"
4+
date: 2018-04-18 10:13:16 -0700
5+
type: news
6+
---
7+
Parsl paper presented at [IWSG 2018](https://sites.google.com/a/nd.edu/iwsg2018/).

Diff for: _posts/2018-6-20-lsst.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: post
3+
title: "Parsl presentation at LSST workshop"
4+
date: 2018-06-30 10:13:16 -0700
5+
type: news
6+
---
7+
Parsl presentation and tutorial at workshop on [Data Visualization and Exploration in the LSST Era
8+
](ttp://www.ncsa.illinois.edu/Conferences/LSST18/program.html)

Diff for: _posts/2018-7-13-scipy

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Parsl presentation at SCiPy"
4+
date: 2018-07-13 12:13:16 -0700
5+
type: news
6+
---
7+
[Parsl: Enabling Scalable Interactive Computing in Python](https://scipy2018.scipy.org/ehome/index.php?eventid=299527&tabid=721463&cid=2264594&sessionid=21620152&sessionchoice=1&) presentation at SciPy 2018.

Diff for: _posts/2018-7-13-scipy.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Parsl presentation at SCiPy"
4+
date: 2018-07-13 12:13:16 -0700
5+
type: news
6+
---
7+
[Parsl: Enabling Scalable Interactive Computing in Python](https://scipy2018.scipy.org/ehome/index.php?eventid=299527&tabid=721463&cid=2264594&sessionid=21620152&sessionchoice=1&) presentation at SciPy 2018.

Diff for: _posts/2018-7-17-gsi.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: post
3+
title: "Parsl presentation at Geospatial workshop"
4+
date: 2018-07-17 10:13:16 -0700
5+
type: news
6+
---
7+
Parsl presentation at workshop on [Geospatial Use Cases and Core Technical Capabilities](http://gsi.cigi.illinois.edu/workshop2/agenda/)
8+

Diff for: _posts/2018-7-9-chep.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: "Parsl presentation at CHEP 2018"
4+
date: 2018-07-09 10:13:16 -0700
5+
type: news
6+
---
7+
Parsl presentation at [CHEP 2018](http://chep2018.org) using Parsl for HEP.

0 commit comments

Comments
 (0)