-
Notifications
You must be signed in to change notification settings - Fork 87
/
gettingstarted.html
33 lines (31 loc) · 1.19 KB
/
gettingstarted.html
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
<div class="gettingstarted">
<h1>Getting Started</h1>
<p>This page is mainly intended for developers</p>
<h2>Internal Links</h2>
<ul>
<li><a href="console.html">Console</a> Useful to learn about the methods you can call, you can also try them out</li>
</ul>
<h2>External Links</h2>
<ul>
<li><a href="http://wiki.bimserver.org">Wiki</a></li>
<li><a href="https://opensourcebim.zendesk.com/hc/communities/public/topics">Forum</a></li>
</ul>
<h2>FAQ</h2>
<p><span class="label label-primary">Question</span>
How do I create projects and checkin building models
</p>
<p><span class="label label-success">Answer</span>
BIMserver is not meant to be interacting with people directly, that's why it has no interface for that. However, it does have <a class="interfacesLink">interfaces</a> for other computer systems. You can write software that creates projects and uploads models etcetera...
</p>
</div>
<script>
function GettingStarted(containerDiv, main) {
pushHistory({page: "GettingStarted"}, "Getting Started");
this.show = function(){};
$(".interfacesLink").click(function(){
main.showServerInfo(function(){
this.containerDiv.find(".webservicesLink").click();
});
});
}
</script>