Skip to content

Instantly share code, notes, and snippets.

@PatrickKwinten
Created November 11, 2016 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatrickKwinten/c4d79542698629764691cb1bdd4bfc46 to your computer and use it in GitHub Desktop.
Save PatrickKwinten/c4d79542698629764691cb1bdd4bfc46 to your computer and use it in GitHub Desktop.
XPage that will be displayed when a migration was not successful
<?xml version="1.0" encoding="UTF-8"?>
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" pageTitle="Error">
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active">
<xp:link escape="true" text="Home" id="link3"
value="/graph_profiles.xsp" />
</li>
<li role="presentation">
<xp:link escape="true" text="Contact" id="link4"
value="https://se.linkedin.com/in/patrickkwinten"
target="_blank" />
</li>
</ul>
</nav>
<h3 class="text-muted">
TeamRoom with GraphNSF integration
</h3>
</div>
<div class="jumbotron">
<h1>Error</h1>
<p class="lead">
Oeps! Something went seriously wrong in migrating the
data. Try again?
</p>
<p>
<xp:link styleClass="btn btn-lg btn-success"
escape="true" id="link1" target="_blank" text="Ok, try again">
<xp:eventHandler event="onclick" submit="true"
refreshMode="complete">
<xp:this.action>
<xp:openPage name="/migration.xsp" />
</xp:this.action>
</xp:eventHandler>
</xp:link>
</p>
</div>
<footer class="footer">
<p>
2016&#160;
<xp:link escape="true" text="Kwintessential Notes"
id="link5" target="_blank"
value="http://quintessens.wordpress.com" />
&#160;- All rights reserved.
</p>
</footer>
</div>
</xp:view>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment