1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Roadmap Version 1.8

Discussion in 'RoadMap' started by shibuya246, Dec 11, 2014.

  1. valMETNG

    valMETNG Administrator Staff Member Admin

    In the never-ending quest to speed up load times: http://yellowlab.tools. It always makes me both happy and sad when I look at tools like these - I find so much more that needs work. (sighs with a smile)
     
  2. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    I found most of the downscore on ipadrank was due to bootstrap css/js and google analytics js
     
  3. valMETNG

    valMETNG Administrator Staff Member Admin

    shibuya246 likes this.
  4. valMETNG

    valMETNG Administrator Staff Member Admin

    Not a critical bug but on line 1398 in Hotaru.php, I believe it should be:
    Code:
    echo "<script type='text/javascript' src='" . $this->bootstrapJsUri . "' ></script>";
    There's an unnecessary type for css in there currently and you don't need the closing tag.
     
    shibuya246 likes this.
  5. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    Thanks. have altered and will be in next version.
    well spotted.
     
  6. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

    Am looking at the current changes that have been made since the last version and at the moment it only really adds up to a minor version update.

    Have done some work on CSRF recently as well as the changes mentioned in this thread.

    What do people think is an important feature that might be included for a v1.8 release ?
     
  7. valMETNG

    valMETNG Administrator Staff Member Admin

    The Big List of Naughty Strings is a list of strings which have a high probability of causing issues when used as user-input data. I ran through a bunch of them on my customized build and didn't see any problems but, if someone is good with testing tools like Selenium, it might be useful to create a test script that grabs each from the JSON file and tests each one as a post title, a post description, a tag, a comment, etc.
     
  8. robin007

    robin007 Well-Known Member

    Still developing 1.8?
     
  9. robin007

    robin007 Well-Known Member

    Profile menus

    posts
    comments
    Ranking

    These three contents are showing main page of the site. Not showing inside of the profile page.
     
  10. valMETNG

    valMETNG Administrator Staff Member Admin

    Based on the limited information you provided, my guess is that you need to modify other templates to include the menus.
     
  11. robin007

    robin007 Well-Known Member

    No

    when i click the comments button in profile page, comments are listed in site main page. how can i show that near by profile sidebar menu like Inbox and outbox etc.

    Untitled.png
     
    Last edited: Jan 25, 2016
  12. valMETNG

    valMETNG Administrator Staff Member Admin

    I think what you're asking is to have the user_navigation on the left and the all_comments activity on the right, correct? If so, sadly, there isn't an easy way to do this for all plugins at once as each plugin lays out the page differently.

    For comments, replace line 772 of /plugins/comments/comments.php with:
    Code:
    if (isset($pagedResults->items)) {
    $h->template('users_navigation', 'users');
    echo '<div class="col-md-9">';
    
    ...and add this on line 780:
    Code:
    echo '</div>';
    For posts, replace line 438 of /plugins/bookmarking/bookmarking.php with:
    Code:
    if (isset($h->vars['pagedResults']->items)) {
        if ($h->subPage == 'user')
        {
            $h->template('users_navigation', 'users');
            echo '<div class="col-md-9">';
        }
    
    ...and replace line 440 with:
    Code:
    echo $h->pageBar($h->vars['pagedResults']);
    if ($h->subPage == 'user') { echo '</div>'; }
    I'm not sure which plugin generates "ranking" so you'll need to let me know before I can figure out where to modify code.
     
    robin007 likes this.
  13. valMETNG

    valMETNG Administrator Staff Member Admin

    Seems like a pretty good authentication framework for consideration in future versions: PHP-Auth.
     
  14. robin007

    robin007 Well-Known Member

  15. shibuya246

    shibuya246 Hotaru Developer Staff Member Admin

  16. robin007

    robin007 Well-Known Member

    Try to do this also.
    • User message, comments, votes and flag notification on the navigation bar like fb notification.
    • User online offline status like green dot or something else.

    • Small device Categories change to drop down menu.
    Tab drop nice plugin
    http://www.eyecon.ro/bootstrap-tabdrop/



    Maybe these scripts are useful for future hotaru project

    validation
    http://reactiveraven.github.io/jqBootstrapValidation/

    complexyfy
    https://danpalmer.me/jquery-complexify/

    File upload
    http://blueimp.github.io/jQuery-File-Upload/

    Tags
    http://maxwells.github.io/bootstrap-tags.html

    Auto complete.
    http://sandglaz.github.io/bootstrap-tagautocomplete/

    xeditable
    http://vitalets.github.io/x-editable/

    Sticky js
    http://stickyjs.com/

    responsive text
    http://fittextjs.com/


    Chart
    http://www.chartjs.org/
     
    Last edited: Jul 1, 2016
    valMETNG likes this.
  17. robin007

    robin007 Well-Known Member

    some ideas

    1. Remove the sidebar in Login, register and profile page .
    2. Bookmarking_post page. move who voted and related post to sidebar or use bootstrap nav tabs.
    3. Deprecate the domain result plugin.
    4. Add initial.js
    5. When we use Submit light plugin, we need post preview in submit 2 page.
    6. Need to resize and compress the profile image.
     
  18. robin007

    robin007 Well-Known Member

  19. robin007

    robin007 Well-Known Member

    Last edited: Jul 25, 2016
  20. robin007

    robin007 Well-Known Member

Share This Page