Skip to content
This repository was archived by the owner on Nov 23, 2021. It is now read-only.

Commit c37ef60

Browse files
committed
Changed URL used to detect outside connections, fixed typos, reverted user checking URL reference and fixed some links
1 parent bd16dab commit c37ef60

File tree

5 files changed

+23
-16
lines changed

5 files changed

+23
-16
lines changed

devon4j/sections/getting-started/component.html

+11-10
Original file line numberDiff line numberDiff line change
@@ -23,37 +23,38 @@ <h1 class="title-devon text-center DEVONcolor font-weight-bold mb-3 py-5">
2323
</p>
2424
</div>
2525
</div>
26+
2627
<div class="row">
2728
<div class="col-md-2 col-12">
28-
<a href="">
29-
<img src="/assets/images/help_icon.png" alt="">
29+
<a href="https://github.com/oasp/oasp.github.io/tree/master/oasp4j">
30+
<img src="/assets/images/read_icon.png" alt="">
3031
</a>
3132
</div>
3233
<div class="col-md-10 col-12">
3334
<p>
34-
<a href="https://github.com/devonfw/devon/wiki">
35-
Help making devonfw even better
35+
<a href="https://github.com/oasp/oasp4j/wiki">
36+
Read the devon4J guide
3637
</a>
3738
</p>
3839
<p>
39-
Remember this is a joint effort and you are welcome to contribute
40+
First things first. Start your way through devonfw by reading the devon4J Platform Guide
4041
</p>
4142
</div>
4243
</div>
4344
<div class="row">
4445
<div class="col-md-2 col-12">
45-
<a href="https://github.com/oasp/oasp.github.io/tree/master/oasp4j">
46-
<img src="/assets/images/read_icon.png" alt="">
46+
<a href="">
47+
<img src="/assets/images/help_icon.png" alt="">
4748
</a>
4849
</div>
4950
<div class="col-md-10 col-12">
5051
<p>
51-
<a href="https://github.com/oasp/oasp.github.io/tree/master/oasp4j">
52-
Read the DEVON4J guide
52+
<a href="https://github.com/devonfw/devon/wiki">
53+
Help making devonfw even better
5354
</a>
5455
</p>
5556
<p>
56-
First things first. Start your way through devonfw by reading the DEVON4J Platform Guide
57+
Remember this is a joint effort and you are welcome to contribute
5758
</p>
5859
</div>
5960
</div>

devon4js/sections/getting-started/component.css

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
.gettingStarted .get-started-title {
2+
font-size: 14pt;
3+
}
4+
15
@media (min-width: 768px) {
26
.gettingStarted {
37
margin: 0 25%;

devon4js/sections/overview/component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ <h2 class="underline-devon-black">Application Starters</h2>
6565
<section id="overview-sample-application" class=" mx-auto mr-1 mb-1 px-5">
6666
<br>
6767
<div class="d-inline">
68-
<h2 class="underline-devon-black">Devon4JS Catalog</h2>
68+
<h2 class="underline-devon-black">devon4JS Catalog</h2>
6969
<p class="py-5 px-4">
7070
devon4JS Catalog provides the collection of Angular components, sorted on the basis of UI frameworks such as Material Design,
7171
Bootstrap, PrimeNG, etc.

html/nav-menu/component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</li>
2727
<div class="white-band-separator d-md-block d-sm-none d-none"> </div>
2828
<li class="nav-item only-internal">
29-
<a class="nav-link" href="http://de-mucevolve02/files/devonfw/2.4.0/">Download</a>
29+
<a class="nav-link" href="http://de-mucevolve02/files/devonfw/current/">Download</a>
3030
</li>
3131
<div class="only-internal">
3232
<div class="white-band-separator d-md-block d-sm-none d-none"> </div>

javascript/main.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,21 @@ function loadMarkdownInsertions(view) {
3030
.then(text => $(this).empty().append(md.render(text)))
3131
});
3232
}
33-
33+
*/
34+
/*
3435
function loadAsciidocInsertions(view) {
3536
var ad = window.ad;
37+
3638
view.find("insertAd").each(function (i) {
3739
fetch($(this).attr("src"))
38-
.then(response => response.text())
39-
.then(text => $(this).empty().append(ad.convert(text)))
40+
.then(function(result) {console.log(result)})
41+
.then(function(text) {console.log()});
4042
});
4143
}
4244
*/
4345
function hideAndShowNetworkElements(view) {
4446
$.ajax({
45-
url: 'http://de-mucevolve02/',
47+
url: 'https://troom.capgemini.com/sites/vcc/devon/overview.aspx',
4648
dataType: 'jsonp',
4749
method: 'GET',
4850
timeout: 3000,

0 commit comments

Comments
 (0)