Skip to content

Commit

Permalink
Merge pull request #38 from geographika/dependency-updates
Browse files Browse the repository at this point in the history
Update workshop library versions
  • Loading branch information
marcjansen authored May 4, 2019
2 parents a7f2a7d + dc88e0a commit 037ca65
Show file tree
Hide file tree
Showing 18 changed files with 57,564 additions and 54,005 deletions.
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ and Visual Studio 2017.

```powershell
# create a C:\gx-ws directory
$wsFolder = "C:\gx-ws"
New-Item -Path $wsFolder -ItemType Directory
# download the zip-archive
$client = New-Object System.Net.WebClient
$client.DownloadFile("https://github.com/geoext/geoext3-ws/archive/master.zip", "$wsFolder/master.zip")
# unzip the archive
$wsFolder = "C:\gx-ws"
New-Item -Path $wsFolder -ItemType Directory
# download the zip-archive
$client = New-Object System.Net.WebClient
$client.DownloadFile("https://github.com/geoext/geoext3-ws/archive/master.zip", "$wsFolder/master.zip")
# unzip the archive
Expand-Archive -Path $wsFolder/master.zip -DestinationPath $wsFolder
# install the chocolatey package manager
# if you have Visual Studio 2010+ and the Nugetextension installed you can run the
Expand All @@ -87,6 +87,14 @@ If gitbook fails to install try running the following separately:
npm install gitbook-cli -g
```

## Library Versions

During the workshop you will work with the following JavaScript libraries or frameworks:

* OpenLayers ([4.6.5](https://github.com/openlayers/openlayers/releases/tag/v4.6.5)): http://openlayers.org/
* ExtJS ([v6.2.0, GPL](https://www.sencha.com/legal/GPL/)): https://www.sencha.com/products/extjs/
* GeoExt3 ([v3.1.0](https://github.com/geoext/geoext3/releases/tag/v3.1.0)): http://geoext.github.io/geoext3/

## Developing instructions

For developing and enhancing the workshop.
Expand Down
6 changes: 3 additions & 3 deletions src/exercises/_final.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Exercise | GeoExt Workshop</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/classic/theme-triton/resources/theme-triton-all.css" type="text/css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.2.0/ext-all.js"></script>
<link rel="stylesheet" href="./lib/ol/ol.css" type="text/css" />
<link rel="stylesheet" href="http://geoext.github.io/geoext3/v3.0.0/resources/css/gx-popup.css" type="text/css" />
<link rel="stylesheet" href="http://geoext.github.io/geoext3/v3.1.0/resources/css/gx-popup.css" type="text/css" />
<script src="./lib/ol/ol.js"></script>
<script src="https://geoext.github.io/geoext3/v3.0.0/GeoExt.js"></script>
<script src="https://geoext.github.io/geoext3/v3.1.0/GeoExt.js"></script>
<style>
.gx-popup p {
padding: 5px 5px 0 5px;
Expand Down
Loading

0 comments on commit 037ca65

Please sign in to comment.