Gitignore ignores all PyCharm files as well as recommended python files Basic starter project with Pyramid 1.5.x Templates are copied from the OpenPhoto (Trovebox) files Targets: 1. Photo management 2. Angularjs with keyboard/swipe navigation 3. Json API compatible with OpenPhoto 4. Amazon S3 support 5. Tags, etc. 6. The one true source of all a person's photos In Greek mythology, Soter was the spirit of safety, preservation and deliverance from harm.
20 lines
619 B
HTML
20 lines
619 B
HTML
<h1>We need to upgrade from <?php $this->utility->safe($lastVersion); ?> to <?php $this->utility->safe($currentVersion); ?></h1>
|
|
|
|
<p>
|
|
Before you start the upgrade you'll want to make sure you have a backup of your database.
|
|
</p>
|
|
|
|
<?php if(!empty($readmes)) { ?>
|
|
<?php foreach($readmes as $version => $readme) { ?>
|
|
<h2>Notes for upgrading to <?php $this->utility->safe($version); ?></h2>
|
|
<p>
|
|
<?php echo $readme; // allow for html here?>
|
|
<p>
|
|
<?php } ?>
|
|
<?php } ?>
|
|
|
|
<p>
|
|
<form action="/upgrade" method="post">
|
|
<button type="submit" class="btn btn-primary">Begin upgrade</button>
|
|
</form>
|
|
</p> |