[Owncloud] [PATCH] link to apps.owncloud.org in applications settings

Guillaume ZITTA oc.guillaume at zitta.fr
Fri May 25 14:36:35 UTC 2012


Hi,

In applications settings, could be cool to have a link to application's 
page @ apps.owncloud.org.

Regards,

Guillaume ZITTA

--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -17,7 +17,7 @@ $(document).ready(function(){
  	});
  	$('#leftcontent li').click(function(){
  		var app=$(this).data('app');
-		$('#rightcontent p').show();
+		$('#rightcontent p.license').show();
  		$('#rightcontent span.name').text(app.name);
  		$('#rightcontent small.externalapp').text(app.internallabel);
  		$('#rightcontent span.version').text(app.version);
@@ -31,6 +31,10 @@ $(document).ready(function(){
  		$('#rightcontent 
input.enable').val((app.active)?t('settings','Disable'):t('settings','Enable'));
  		$('#rightcontent input.enable').data('appid',app.id);
  		$('#rightcontent input.enable').data('active',app.active);
+		if ( app.internal == false ) {
+			$('#rightcontent p.appslink').show();
+			$('#rightcontent 
a').attr('href','http://apps.owncloud.com/content/show.php?content='+app.id);
+		}
  		return false;
  	});
  	$('#rightcontent input.enable').click(function(){
diff --git a/settings/templates/apps.php b/settings/templates/apps.php
index 7642ab7..493274e 100644
--- a/settings/templates/apps.php
+++ b/settings/templates/apps.php
@@ -22,6 +22,7 @@
  	<h3><strong><span class="name"><?php echo $l->t('Select an 
App');?></span></strong><span class="version"></span><small 
class="externalapp" style="visibility:hidden;"></small></h3>
  	<p class="description"></p>
  	<img src="" class="preview" />
-	<p class="hidden"><span class="licence"></span><?php echo 
$l->t('-licensed');?> <?php echo $l->t('by');?> <span 
class="author"></span></p>
+	<p class="appslink hidden"><a href="#" target="_blank"><?php echo 
$l->t('See application page at apps.owncloud.org');?></a></p>
+	<p class="license hidden"><span class="licence"></span><?php echo 
$l->t('-licensed');?> <?php echo $l->t('by');?> <span 
class="author"></span></p>
  	<input class="enable hidden" type="submit" />
  </div>





More information about the Owncloud mailing list