Commit 2c00f01e authored by Hermann Mayer's avatar Hermann Mayer
Browse files

Application

  - Upgraded Frontend Libraries (jQuery 1.7.2 and fancybox 2.0.6)
  - Modified Extern Template to handle eBays new Link policy
parent 9ecf427d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
[development]
app.bootstrap.filepath		= APPLICATION_PATH "/Module/Bootstrap.php"
app.bootstrap.class			= Bootstrap
app.version					= 2.0
app.version					= 2.0.1
app.name					= eBay-Tool
app.servername				= http://workstation.lan:85
app.default.module			= default
@@ -35,7 +35,7 @@ smarty.cachepath = cache
[production]
app.bootstrap.filepath		= APPLICATION_PATH "/Module/Bootstrap.php"
app.bootstrap.class			= Bootstrap
app.version					= 2.0
app.version					= 2.0.1
app.name					= eBay-Tool
app.servername				= http://ebay-tool.dev.hermann-mayer.net
app.default.module			= default
+8 −0
Original line number Diff line number Diff line
@@ -4,6 +4,14 @@
		<div class="content">
			{include file='simply_elegant/messages.html'}
			<ul>
				<li>2012-06-10</li>
				<ul>
					<li>Application</li>
					<ul>
						<li>Upgraded Frontend Libraries (jQuery 1.7.2 and fancybox 2.0.6)</li>
						<li>Modified Extern Template to handle eBays new Link policy</li>
					</ul>
				</ul>
				<li>2012-06-09</li>
				<ul>
					<li>Application</li>
+2 −2
Original line number Diff line number Diff line
@@ -41,8 +41,8 @@
					<ul style="list-style: circle;">
						<li>Javascript</li>
						<ul  style="list-style: square;">
							<li>AJAX Engine: <a target="_blank" href="http://jquery.com/">jQuery 1.7.1</a></li>
							<li>Image Galery: <a target="_blank" href="http://fancybox.net/">fancyBox 2.0.5</a></li>
							<li>AJAX Engine: <a target="_blank" href="http://jquery.com/">jQuery 1.7.2</a></li>
							<li>Image Galery: <a target="_blank" href="http://fancybox.net/">fancyBox 2.0.6</a></li>
						</ul>
					</ul>
				</ul>
+20 −4
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
						<h1>Galerie</h1>
						<p id="galerie_content">
						{foreach $product->getImages() as $product_image}
							<a class="fancybox" rel="gallery" href="{$APP_SERVER}/extern/images/{$product->getId()}/{$product_image->getName()}">
							<a id="image_{$product_image@index}" class="fancybox" rel="gallery" href="{$APP_SERVER}/extern/images/{$product->getId()}/{$product_image->getName()}">
								<img src="{$APP_SERVER}/extern/images/{$product->getId()}/{$product_image->getName()}">
							</a>
						{/foreach}
@@ -119,7 +119,7 @@
								<li><b>Haben Sie Fragen oder Anregungen? - Kein Problem!</b></li>
								<ul>
									<li style="margin-top: 5px">
										Diese beantworte ich natürlich gern per <a href="mailto:{$product->getUser()->getEmail()}">E-Mail</a> oder über den Ebay Nachrichten-Dienst.
										Diese beantworte ich natürlich gern per <a id="link_mail" href="mailto:{$product->getUser()->getEmail()}">E-Mail</a> oder über den Ebay Nachrichten-Dienst.
										Des weiteren verfahren wir nach dem Prinzip der Geteilten-Kosten. Wir zahlen die anfallenden eBay-Gebühren und Sie die Versandkosten.
										Nach erfolgreicher Überweisung des Betrags, wird der Artikel umgehend versandt.
									</li>
@@ -143,8 +143,8 @@
			</div>
		</div>
		<div id="foot">
			Diese Beschreibung wurde mit dem <a target="_blank" href="{$APP_SERVER}">eBay Tool</a>
			(&copy; 2011-2012 <a target="_blank" href="http://hermann-mayer.net">Hermann Mayer</a>) erstellt
			Diese Beschreibung wurde mit dem <a id="link_ebay_tool" target="_blank" href="{$APP_SERVER}">eBay Tool</a>
			(&copy; 2011-2012 <a id="link_hm" target="_blank" href="http://hermann-mayer.net">Hermann Mayer</a>) erstellt
		</div>
	</div>
	<script type="text/javascript" src="{$APP_SERVER}/extern/js/jquery.min.js"></script>
@@ -152,6 +152,22 @@
	<script type="text/javascript" src="{$APP_SERVER}/extern/js/fancybox/jquery.fancybox.pack.js"></script>
	<script type="text/javascript">
		$(document).ready(function() {
			$('#link_mail').click(function(){
				window.open('mailto:{$product->getUser()->getEmail()}', '_blank'); return false;
			});

			$('#link_ebay_tool').click(function(){
				window.open('http://ebay-tool.hermann-mayer.net', '_blank'); return false;
			});

			$('#link_hm').click(function(){
				window.open('http://hermann-mayer.net', '_blank'); return false;
			});

			{foreach $product->getImages() as $product_image}
			$('#image_{$product_image@index}').attr('href', '{$APP_SERVER}/extern/images/{$product->getId()}/{$product_image->getName()}');
			{/foreach}

			$("#galerie_content a").fancybox({
				openEffect : 'elastic',
				openSpeed  : 150,

cache/template/.gitignore

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.

Loading