-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUmbraco-Upgrade.html
More file actions
79 lines (67 loc) · 2.35 KB
/
Umbraco-Upgrade.html
File metadata and controls
79 lines (67 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
title: Umbraco Upgrade
tagline: Project Backstage
header: Umbraco Upgrade
category: Umbraco Upgrade
group: navigation
---
<div class="row">
<div class="col-md-12">
<h2><img src="https://icons.iconarchive.com/icons/custom-icon-design/flag-3/32/United-Kingdom-flag-icon.png"></img> Abstract</h2>
<div class="col-md-12">
The following articles describe the prototyping steps that allowed me to upgrade and jump from Umbraco version 4.7.1 to version 6.2.4.
Not without some obstacle and failure.
And in these articles I wanted to highlight some principles concretely used during this prototype. Because prototyping is an hard discipline.
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2>Contents</h2>
{% assign myArray = finalSummary | split: "|" | sort %}
<ul style="list-style-type: none;">
{% for node in myArray %}
{% assign summaryLine = node | split: "," | sort %}
{% for prop in summaryLine %}
{% assign keyval = prop | split: ":" %}
{% if keyval[0] == 'title' %}
{% assign title = keyval[1] %}
{% endif %}
{% if keyval[0] == 'url' %}
{% assign url = keyval[1] %}
{% endif %}
{% endfor %}
{% if page.url == url %}
<li class="active"><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% else %}
<li><a href="{{ BASE_PATH }}{{url}}">{{title}}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<h2>Technologies</h2>
<ul>
<li>CMS: <a href="https://umbraco.com/" target="_blank">Umbraco</a> <a href="https://our.umbraco.org/contribute/releases/718/" target="_blank"><del>7.1.8</del></a> <a href="https://our.umbraco.org/contribute/releases/624" target="_blank">6.2.4</a></li>
<li>Database: SQL Server 2008 R2 +</li>
<li>VCS: <a href="https://gist.github.com/" target="_blank">Gist</a></li>
</ul>
<h2>Repositories</h2>
<ul>
<li><a href="https://gist.github.com/williamverdolini/5c369b4d620405033b35" target="blank">Migration Script to upgrade Umbraco CMS database from version 4.7.1 to version 6.2.4</a>.</li>
</ul>
<div class="row">
<div class="col-md-12">
<h2>Period</h2>
<div class="col-md-12">
December 2014
</div>
</div>
</div>
{% comment %}
<ul>
{% assign pages_list = site.pages %}
</ul>
CQRS+ES Todo List<br>
<p>{{pages_list}}</p>
{% endcomment %}