-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Telescope Developer login account and blog for local dev
- Loading branch information
Showing
6 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,21 @@ | |
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname' => 'Hans', | ||
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname' => 'Lippershey', | ||
'http://schemas.microsoft.com/identity/claims/displayname' => 'Hans Lippershey', | ||
), | ||
/** | ||
* We include one user for local development purposes, with a blog feed, posts, etc. | ||
* NOTE: we don't use this user account/info in tests. It's only there for running | ||
* everything locally. | ||
*/ | ||
'telescope:telescope' => array( | ||
'uid' => array('2'), | ||
'eduPersonAffiliation' => array('group2'), | ||
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress' => '[email protected]', | ||
'email' => '[email protected]', | ||
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname' => 'Telescope', | ||
'http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname' => 'Developer', | ||
'http://schemas.microsoft.com/identity/claims/displayname' => 'Telescope Developer', | ||
), | ||
), | ||
), | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
src/web/test-web-content/telescope-developer-blog/bamboo.min.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
src/web/test-web-content/telescope-developer-blog/feed.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="windows-1252"?> | ||
<rss version="2.0"> | ||
<channel> | ||
<title>Telescope Developer Blog Feed</title> | ||
<description>Blog feed for testing Telescope locally.</description> | ||
<link>http://localhost:8888/telescope-developer-blog/</link> | ||
<language>en-ca</language> | ||
<lastBuildDate>Sat, 16 Apr 2022 13:39:14 -0500</lastBuildDate> | ||
<item> | ||
<title>Hello World</title> | ||
<description>Welcome to <a href="https://telescope.cdot.systems/">Telescope</a>. If you're reading this, you have have managed to get Telescope built and running locally. Congratulations! Our <a href="https://github.com/Seneca-CDOT/telescope">repo</a> has lots of issues you can help us fix.</description> | ||
<link>http://localhost:8888/telescope-developer-blog/hello-world.html</link> | ||
<guid>http://localhost:8888/telescope-developer-blog/hello-world.html</guid> | ||
<category>open source</category> | ||
<pubDate>Sat, 16 Apr 2022 13:39:14 -0500</pubDate> | ||
</item> | ||
</channel> | ||
</rss> |
29 changes: 29 additions & 0 deletions
29
src/web/test-web-content/telescope-developer-blog/hello-world.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Telescope Developer Blog</title> | ||
<meta name="description" content="A blog for the local Telescope Developer account" /> | ||
<link | ||
rel="alternate" | ||
type="application/rss+xml" | ||
title="Telescope Developer Blog" | ||
href="./feed.xml" | ||
/> | ||
<link rel="stylesheet" href="./bamboo.min.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Hello World</h1> | ||
</header> | ||
<main> | ||
<p> | ||
Welcome to <a href="https://telescope.cdot.systems/">Telescope</a>. If you're reading this, | ||
you have have managed to get Telescope built and running locally. Congratulations! Our | ||
<a href="https://github.com/Seneca-CDOT/telescope">repo</a> has lots of issues you can help | ||
us fix. | ||
</p> | ||
</main> | ||
</body> | ||
</html> |
28 changes: 28 additions & 0 deletions
28
src/web/test-web-content/telescope-developer-blog/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Telescope Developer Blog</title> | ||
<meta name="description" content="A blog for the local Telescope Developer account" /> | ||
<link | ||
rel="alternate" | ||
type="application/rss+xml" | ||
title="Telescope Developer Blog" | ||
href="./feed.xml" | ||
/> | ||
<link rel="stylesheet" href="./bamboo.min.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Telescope Developer Blog</h1> | ||
<p>Welcome to the blog! This blog is used to test our system locally.</p> | ||
</header> | ||
<main> | ||
<h2>Posts</h2> | ||
<ol> | ||
<li><a href="./hello-world.html">Hello World</a></li> | ||
</ol> | ||
</main> | ||
</body> | ||
</html> |