]> git.mxchange.org Git - friendica.git/commitdiff
convert update script arg passing to js - remembering the browser prefetch issues
authorFriendika <info@friendika.com>
Thu, 17 Feb 2011 08:40:35 +0000 (00:40 -0800)
committerFriendika <info@friendika.com>
Thu, 17 Feb 2011 08:40:35 +0000 (00:40 -0800)
include/main.js
mod/network.php
mod/profile.php

index df7de2e76963cd55189411f86b25f2b260a19649..9e657f335d3c0843b6971103cb98ab9c9615653f 100644 (file)
                prev = 'live-' + src;
 
                in_progress = true;
-               $.get('update_' + src + '?p=' + profile_uid + '&msie=' + ((msie) ? 1 : 0),function(data) {
+               var udargs = '/' + netargs;
+               var update_url = 'update_' + src + udargs + '?p=' + profile_uid + '&page=' + profile_page + '&msie=' + ((msie) ? 1 : 0);
+
+               $.get(update_url,function(data) {
                        in_progress = false;
                        $('.wall-item-outside-wrapper',data).each(function() {
                                var ident = $(this).attr('id');
index 4dc5d4b4ca26e12da6a0d1db1a3de8971820e3d4..696d00dcc18da573eabdede848e44ebe0a38f5ee 100644 (file)
@@ -40,34 +40,21 @@ function network_content(&$a, $update = 0) {
 
        $nouveau = false;
 
-       if($update && (x($_SESSION,'netargs'))) {
-               $nouveau = $_SESSION['netargs']['nouveau'];
-               $group   = $_SESSION['netargs']['group'];
-               if(strlen($group))
+       if(($a->argc > 2) && $a->argv[2] === 'new')
+               $nouveau = true;
+
+       if($a->argc > 1) {
+               if($a->argv[1] === 'new')
+                       $nouveau = true;
+               else {
+                       $group = intval($a->argv[1]);
                        $group_acl = array('allow_gid' => '<' . $group . '>');
-               $a->pager['page'] = $_SESSION['netargs']['page'];
-               $a->set_pager_itemspage(50);
+               }
        }
 
-
        if(! $update) {
                $o .= '<script> $(document).ready(function() { $(\'#nav-network-link\').addClass(\'nav-selected\'); });</script>';
 
-               if(($a->argc > 2) && $a->argv[2] === 'new')
-                       $nouveau = true;
-
-                       // pull out the group here because the updater might have different args
-               if($a->argc > 1) {
-                       if($a->argv[1] === 'new')
-                               $nouveau = true;
-                       else {
-                               $group = intval($a->argv[1]);
-                               $group_acl = array('allow_gid' => '<' . $group . '>');
-                       }
-               }
-
-
-               $_SESSION['netargs'] = array('nouveau' => $nouveau, 'group' => $group, 'page' => $a->pager['page']);
                $_SESSION['return_url'] = $a->cmd;
 
                $geotag = (($a->user['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
@@ -118,10 +105,10 @@ function network_content(&$a, $update = 0) {
                // filtering by group and also you aren't writing a comment (the last
                // criteria is discovered in javascript).
 
-//             if($a->pager['start'] == 0 && $a->argc == 1) {
                        $o .= '<div id="live-network"></div>' . "\r\n";
-                       $o .= "<script> var profile_uid = " . $_SESSION['uid'] . "; </script>\r\n";
-//             }
+                       $o .= "<script> var profile_uid = " . $_SESSION['uid'] 
+                               . "; var netargs = '" . substr($a->cmd,8) 
+                               . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
 
        }
 
index 3a393eea0a7d290fd3c5bbec8a82c0c2325f1ace..46d13298e004e6eb22c35f1401be1f6c41f4437d 100644 (file)
@@ -82,7 +82,6 @@ function profile_content(&$a, $update = 0) {
 
        $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
        
-
        if(! $update) {
                if(x($_GET,'tab'))
                        $tab = notags(trim($_GET['tab']));
@@ -161,11 +160,11 @@ function profile_content(&$a, $update = 0) {
                // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
                // because browser prefetching might change it on us. We have to deliver it with the page.
 
-               if($tab === 'posts' && (! $a->pager['start'])) {
+               if($tab === 'posts') {
                        $o .= '<div id="live-profile"></div>' . "\r\n";
-                       $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] . "; </script>\r\n";
+                       $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] 
+                               . "; var netargs = ''; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
                }
-
        }
 
        // Construct permissions