]> git.mxchange.org Git - friendica-addons.git/commitdiff
Merge pull request #178 from annando/master
authortobiasd <tobias.diekershoff@gmx.net>
Fri, 31 Jan 2014 09:05:49 +0000 (01:05 -0800)
committertobiasd <tobias.diekershoff@gmx.net>
Fri, 31 Jan 2014 09:05:49 +0000 (01:05 -0800)
statistics: A module to take part to the statistics at http://pods.jasonrobinson.me/

fromgplus/README
startpage.tgz
startpage/startpage.php

index 82a29f6635e414dcc9c6aef6b2e11beb48c3d4e6..6587407c136e347b8b5dc7627350faae535ba9e9 100644 (file)
@@ -13,3 +13,13 @@ You need an API key for "Simple API Access".
 - At the bottom of the page you see "Simple API Access".
 
 The value after "API key:" is the key that you need.
+
+
+The new cloudbased Developerconsole
+
+- You go to https://code.google.com/apis/console/
+- Then you got to "APIs & auth" > "Apis" switch on Google+ API
+- Then you go to "Credentials" 
+- At the bottom of the Page you see "Public API access"
+
+The value after "API key:" is the key that you need.
\ No newline at end of file
index 22d3b60a988885c28af59473767b3b2f4569a21f..ef0e89d1aa41ffbfd9c818443fdc1cb619ff9cd0 100644 (file)
Binary files a/startpage.tgz and b/startpage.tgz differ
index 6a95310e3ec705a63f0a49d5623a262cf34e1729..6c266ca82964460140691ba9465880ebd099054f 100644 (file)
@@ -79,8 +79,13 @@ function startpage_settings(&$a,&$s) {
 
        /* Add some HTML to the existing form */
 
-       $s .= '<div class="settings-block">';
+       $s .= '<span id="settings_startpage_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_startpage_expanded\'); openClose(\'settings_startpage_inflated\');">';
        $s .= '<h3>' . t('Startpage Settings') . '</h3>';
+       $s .= '</span>';
+       $s .= '<div id="settings_startpage_expanded" class="settings-block" style="display: none;">';
+       $s .= '<span class="fakelink" onclick="openClose(\'settings_startpage_expanded\'); openClose(\'settings_startpage_inflated\');">';
+       $s .= '<h3>' . t('Startpage Settings') . '</h3>';
+       $s .= '</span>';
        $s .= '<div id="startpage-page-wrapper">';
        $s .= '<label id="startpage-page-label" for="startpage-page">' . t('Home page to load after login  - leave blank for profile wall') . '</label>';
        $s .= '<input id="startpage-page" type="text" name="startpage" value="' . $page . '" />';