Compare commits
1 Commits
calendar-d
...
www2-www-f
Author | SHA1 | Date | |
---|---|---|---|
e92ac584f2 |
@@ -24,9 +24,9 @@ use \pvv\side\Agenda;
|
|||||||
$agenda = new \pvv\side\Agenda([
|
$agenda = new \pvv\side\Agenda([
|
||||||
// new \pvv\side\social\NerdepitsaActivity,
|
// new \pvv\side\social\NerdepitsaActivity,
|
||||||
// new \pvv\side\social\AnimekveldActivity,
|
// new \pvv\side\social\AnimekveldActivity,
|
||||||
// new \pvv\side\social\HackekveldActivity,
|
new \pvv\side\social\HackekveldActivity,
|
||||||
// new \pvv\side\social\BrettspillActivity,
|
new \pvv\side\social\BrettspillActivity,
|
||||||
// new \pvv\side\social\DriftkveldActivity,
|
new \pvv\side\social\DriftkveldActivity,
|
||||||
new \pvv\side\DBActivity($pdo),
|
new \pvv\side\DBActivity($pdo),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
@@ -217,14 +217,14 @@ in
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
"^~ ${cfg.settings.GALLERY.SERVER_PATH}" = {
|
${cfg.settings.GALLERY.SERVER_PATH} = {
|
||||||
root = cfg.settings.GALLERY.DIR;
|
root = cfg.settings.GALLERY.DIR;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
rewrite ^${cfg.settings.GALLERY.SERVER_PATH}/(.*)$ /$1 break;
|
rewrite ^${cfg.settings.GALLERY.SERVER_PATH}/(.*)$ /$1 break;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
"^~ ${cfg.settings.SLIDESHOW.SERVER_PATH}" = {
|
${cfg.settings.SLIDESHOW.SERVER_PATH} = {
|
||||||
root = cfg.settings.SLIDESHOW.DIR;
|
root = cfg.settings.SLIDESHOW.DIR;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
rewrite ^${cfg.settings.SLIDESHOW.SERVER_PATH}/(.*)$ /$1 break;
|
rewrite ^${cfg.settings.SLIDESHOW.SERVER_PATH}/(.*)$ /$1 break;
|
||||||
|
@@ -53,11 +53,8 @@ function getDirContents($dir, &$results = array()) {
|
|||||||
$images = getDirContents($galleryDir);
|
$images = getDirContents($galleryDir);
|
||||||
|
|
||||||
function cmpModifyTime($a, $b) {
|
function cmpModifyTime($a, $b) {
|
||||||
global $galleryDir;
|
|
||||||
|
|
||||||
$mtime_a = filemtime($galleryDir . $a);
|
$mtime_a = filemtime($galleryDir . $a);
|
||||||
$mtime_b = filemtime($galleryDir . $b);
|
$mtime_b = filemtime($galleryDir . $b);
|
||||||
|
|
||||||
return ($mtime_a > $mtime_b) ? -1 : 1;
|
return ($mtime_a > $mtime_b) ? -1 : 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 26 KiB |
BIN
www/tjenester/img/gogs.png
Normal file
BIN
www/tjenester/img/gogs.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
@@ -27,15 +27,6 @@ require_once dirname(dirname(__DIR__)) . implode(DIRECTORY_SEPARATOR, ['', 'inc'
|
|||||||
<div class="categoryLabel">Versjonskontroll og utvikling</div>
|
<div class="categoryLabel">Versjonskontroll og utvikling</div>
|
||||||
<div class="categoryContent">
|
<div class="categoryContent">
|
||||||
|
|
||||||
<div class="service">
|
|
||||||
<div class="serviceContent">
|
|
||||||
<h2 class="serviceTitle">Gitea</h2>
|
|
||||||
<p class="serviceDescription">Vår interne git-tjener, åpen for alle medlemmer</p>
|
|
||||||
<div class="serviceLink"><a href="https://git.pvv.ntnu.no" target="_blank">Gå til git.pvv.ntnu.no</a></div>
|
|
||||||
</div>
|
|
||||||
<img class="serviceImage" src="img/gitea.png" alt="Gitea-logo">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="service">
|
<div class="service">
|
||||||
<div class="serviceContent">
|
<div class="serviceContent">
|
||||||
<h2 class="serviceTitle">GitHub</h2>
|
<h2 class="serviceTitle">GitHub</h2>
|
||||||
@@ -45,6 +36,24 @@ require_once dirname(dirname(__DIR__)) . implode(DIRECTORY_SEPARATOR, ['', 'inc'
|
|||||||
<img class="serviceImage" src="img/github.png" alt="GitHub-logo">
|
<img class="serviceImage" src="img/github.png" alt="GitHub-logo">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="service">
|
||||||
|
<div class="serviceContent">
|
||||||
|
<h2 class="serviceTitle">Gogs</h2>
|
||||||
|
<p class="serviceDescription">Vår interne git-tjener, åpen for alle medlemmer</p>
|
||||||
|
<div class="serviceLink"><a href="https://git.pvv.ntnu.no" target="_blank">Gå til git.pvv.ntnu.no</a></div>
|
||||||
|
</div>
|
||||||
|
<img class="serviceImage" src="img/gogs.png" alt="Gogs-logo">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="service">
|
||||||
|
<div class="serviceContent">
|
||||||
|
<h2 class="serviceTitle">Dev og Trac</h2>
|
||||||
|
<p class="serviceDescription">Trac er vårt gamle prosjektsystem. Her kan du lage og dele prosjekter om du er for hipster for github.</p>
|
||||||
|
<div class="serviceLink"><a href="https://dev.pvv.ntnu.no/projects/pvv-dev/" target="_blank">Gå til dev.pvv.ntnu.no</a></div>
|
||||||
|
</div>
|
||||||
|
<img class="serviceImage" src="img/trac.png" alt="Trac-logo">
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user