Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
9a03473d
Commit
9a03473d
authored
13 years ago
by
Lloyd Hilaiel
Browse files
Options
Downloads
Patches
Plain Diff
stub an in-tree example primary
parent
ad062434
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
example/primary/index.html
+24
-0
24 additions, 0 deletions
example/primary/index.html
scripts/run_locally.js
+5
-0
5 additions, 0 deletions
scripts/run_locally.js
scripts/serve_example_primary.js
+36
-0
36 additions, 0 deletions
scripts/serve_example_primary.js
with
65 additions
and
0 deletions
example/primary/index.html
0 → 100644
+
24
−
0
View file @
9a03473d
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"initial-scale=1.0; maximum-scale=1.0; width=device-width;"
>
<title>
BrowserID Example Primary
</title>
<style
type=
"text/css"
>
body
{
margin
:
auto
;
font
:
13px
/
1.5
Helvetica
,
Arial
,
'Liberation Sans'
,
FreeSans
,
sans-serif
;
}
.title
{
font-size
:
2em
;
font-weight
:
bold
;
text-align
:
center
;
margin
:
1.5em
;
}
.intro
{
font-size
:
1.2em
;
width
:
600px
;
margin
:
auto
;
}
</style>
</head>
<body>
<div
class=
"title"
>
Example BrowserID Primary
</div>
<div
class=
"intro"
>
An example BrowserID Primary identity authority. Useful for local testing and development.
</div>
</body>
</html>
This diff is collapsed.
Click to expand it.
scripts/run_locally.js
+
5
−
0
View file @
9a03473d
...
...
@@ -29,6 +29,11 @@ var daemonsToRun = {
PORT
:
10001
,
HOST
:
HOST
},
example_primary
:
{
path
:
path
.
join
(
__dirname
,
"
..
"
,
"
scripts
"
,
"
serve_example_primary.js
"
),
PORT
:
10005
,
HOST
:
HOST
},
browserid
:
{
PORT
:
10002
,
HOST
:
HOST
...
...
This diff is collapsed.
Click to expand it.
scripts/serve_example_primary.js
0 → 100755
+
36
−
0
View file @
9a03473d
#!/usr/bin/env node
// finally, let's run a tiny webserver for the example code.
const
express
=
require
(
'
express
'
),
path
=
require
(
'
path
'
),
urlparse
=
require
(
'
urlparse
'
),
postprocess
=
require
(
'
postprocess
'
),
querystring
=
require
(
'
querystring
'
);
var
exampleServer
=
express
.
createServer
();
exampleServer
.
use
(
express
.
logger
({
format
:
'
dev
'
}));
if
(
process
.
env
[
'
BROWSERID_URL
'
])
{
var
burl
=
urlparse
(
process
.
env
[
'
BROWSERID_URL
'
]).
validate
().
normalize
().
originOnly
().
toString
();
console
.
log
(
'
using browserid server at
'
+
burl
);
exampleServer
.
use
(
postprocess
.
middleware
(
function
(
req
,
buffer
)
{
return
buffer
.
toString
().
replace
(
new
RegExp
(
'
https://browserid.org
'
,
'
g
'
),
burl
);
}));
}
exampleServer
.
use
(
express
.
static
(
path
.
join
(
__dirname
,
"
..
"
,
"
example
"
,
"
primary
"
)));
exampleServer
.
use
(
express
.
bodyParser
());
// XXX: implement apis here
exampleServer
.
listen
(
process
.
env
[
'
PORT
'
]
||
10001
,
process
.
env
[
'
HOST
'
]
||
process
.
env
[
'
IP_ADDRESS
'
]
||
"
127.0.0.1
"
,
function
()
{
var
addy
=
exampleServer
.
address
();
console
.
log
(
"
running on http://
"
+
addy
.
address
+
"
:
"
+
addy
.
port
);
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment