The branch, master has been updated via 700b5d985a7cd633e6a31535aaed8cc57c868415 (commit) from d5d329850e266fd87c8c688000b174c06777ec2c (commit)
- Log ----------------------------------------------------------------- commit 700b5d985a7cd633e6a31535aaed8cc57c868415 Author: Michal Čihař mcihar@novell.com Date: Mon Jan 31 15:45:42 2011 +0100
Simplify HTML
-----------------------------------------------------------------------
Summary of changes: libraries/engines/pbms.lib.php | 17 +++++------------ libraries/engines/pbxt.lib.php | 17 +++++------------ 2 files changed, 10 insertions(+), 24 deletions(-)
diff --git a/libraries/engines/pbms.lib.php b/libraries/engines/pbms.lib.php index 48a1104..eabfdd1 100644 --- a/libraries/engines/pbms.lib.php +++ b/libraries/engines/pbms.lib.php @@ -93,18 +93,11 @@ class PMA_StorageEngine_pbms extends PMA_StorageEngine $output = '<p>' . sprintf('Documentation and further information about PBMS can be found on %sThe PrimeBase Media Streaming home page%s.', '<a href="' . PMA_linkURL('http://www.blobstreaming.org/') . '" target="_blank">', '</a>') . '</p>' . "\n" - . '<table id="PBMS_Related_Links" >' . "\n" - . '<tr>' . "\n" - . '<td>' . "\n" - . '<p>' . "\n" - . '<strong><font size="2"><b>' . __('Related Links') . '</b></font></strong>' . "\n" - . '<br>' . "\n" - . '<a href="' . PMA_linkURL('http://bpbdev.blogspot.com/') . '" target="_blank">' . __('The PrimeBase Media Streaming Blog by Barry Leslie') . '</a><br><br>' . "\n" - . '<a href="' . PMA_linkURL('http://www.primebase.com/xt') . '" target="_blank">' . __('PrimeBase XT Home Page') . '</a><br><br>' . "\n" - . '</font>' . "\n" - . '</td>' . "\n" - . '</tr>' . "\n" - . '</table>' . "\n"; + . '<h3>' . __('Related Links') . '</h3>' . "\n" + . '<ul>' . "\n" + . '<li><a href="' . PMA_linkURL('http://bpbdev.blogspot.com/') . '" target="_blank">' . __('The PrimeBase Media Streaming Blog by Barry Leslie') . '</a></li>' . "\n" + . '<li><a href="' . PMA_linkURL('http://www.primebase.com/xt') . '" target="_blank">' . __('PrimeBase XT Home Page') . '</a></li>' . "\n" + . '</ul>' . "\n";
return $output; } diff --git a/libraries/engines/pbxt.lib.php b/libraries/engines/pbxt.lib.php index 7f8fc11..9b5c05c 100644 --- a/libraries/engines/pbxt.lib.php +++ b/libraries/engines/pbxt.lib.php @@ -124,18 +124,11 @@ class PMA_StorageEngine_pbxt extends PMA_StorageEngine $output = '<p>' . sprintf('Documentation and further information about PBXT can be found on the %sPrimeBase XT Home Page%s.', '<a href="' . PMA_linkURL('http://www.primebase.com/xt/') . '" target="_blank">', '</a>') . '</p>' . "\n" - . '<table id="PBMS_Related_Links" >' . "\n" - . '<tr>' . "\n" - . '<td>' . "\n" - . '<p>' . "\n" - . '<strong><font size="2"><b>' . __('Related Links') . '</b></font></strong>' . "\n" - . '<br>' . "\n" - . '<a href="' . PMA_linkURL('http://pbxt.blogspot.com/') . '" target="_blank">' . __('The PrimeBase XT Blog by Paul McCullagh') . '</a><br><br>' . "\n" - . '<a href="' . PMA_linkURL('http://www.blobstreaming.org/') . '" target="_blank">' . __('The PrimeBase Media Streaming (PBMS) home page') . '</a>.<br><br>' . "\n" - . '</font>' . "\n" - . '</td>' . "\n" - . '</tr>' . "\n" - . '</table>' . "\n"; + . '<h3>' . __('Related Links') . '</h3>' . "\n" + . '<ul>' . "\n" + . '<li><a href="' . PMA_linkURL('http://pbxt.blogspot.com/') . '" target="_blank">' . __('The PrimeBase XT Blog by Paul McCullagh') . '</a></li>' . "\n" + . '<li><a href="' . PMA_linkURL('http://www.blobstreaming.org/') . '" target="_blank">' . __('The PrimeBase Media Streaming (PBMS) home page') . '</a></li>' . "\n" + . '</ul>' . "\n";
return $output; }
hooks/post-receive