Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Anthony Dang 1404 posts 2558 karma points MVP 3x c-trib
    Jul 12, 2014 @ 15:08
    Anthony Dang
    0

    What is next for uBlogsy? 4.2/5.0

    Hi

    I just wanted to ask you all about what you think should be in the next version of uBlogsy.

    Here are my ideas... feel free to dispute.

    Responseive using Bootstrap

    Originally I was thinking Foundation, but it doesnt support IE8 easily. And a lot of you have clients which use IE8, or think that it's important. I personally don't care, but I also don't want to have to deal with old browsers. Bootstrap just works.

    Date folders

    People tend to still want to use the date folders (uDatefoldersy) to organise their articles. A lot of people don't want to use container doctypes. So what is it about uDatefoldersy that needs improving?

    Comments

    To be honest, I was hoping that uCommentsy would eventually be replaced with nicer tools like Disqus, but it seems people still want the comments as nodes. Am I right or wrong? I'm also open to suggestions about it's functionality. 

    Extensions

    I don't want uBlogsy to be bloated. I'd rather have various optional extension packs which uBlogsy may be shipped with. This is why I separated the functionality into various packages. eg. uDatefoldersy, uLoremsy, uCommentsy, uTagsy (see a theme?). However this is getting hard (time consuming) to maintain as there are a lot of dependencies. I'm open to suggestions. I'm also completely open to making these small packages commmunity projects.

    Lucene - open question

    From uBlogsy 3, I started using the lucene index as I thought i was faster than the standard API. Do you have any problems with this? I noticed that some people had crashes.

    Bugs

    Are there any real annoyances out there that you really want fixed?

    Community

    I have had a few pull requests which is fantastic. I have not always agreed on the proposed functionality, but I appreciate the effort and enthusiasm. Over the last year, my time has been quite limited, so I'm thinking of opening up uBlogsy to people who want to contribute directly. Not to be a jerk about it, but I would prefer to still drive the ship. I want to ensure the package stays lean (not bloated), flexible and easy to use, and helpful. I love things that "just work", and I hope that uBlogsy is one of those things.

     

    That's all.

    Please discuss.

     

    Anthony

     

     

     

  • Jamie Howarth 306 posts 773 karma points c-trib
    Jul 13, 2014 @ 01:35
    Jamie Howarth
    0
    1. Bootstrap would be awesome, the current theme feels a little dated, and I normally strip out all the markup and just leave behind the helpers & stuff.
    2. Functionality as surface controllers would be really ace, rather than the current singleton pattern - some of the more complex partials feel a little bloated with code (I like separation of code and view, but that's just my two cents and I realise some Umbraco builders may not use VS, making this a challenge);
    3. Trackback support would be super awesome, which in my books keeps comments as nodes rather than a switch to Disqus (which doesn't support trackbacks) - maybe a new subtype off uCommentsy?
    4. Re dependency management, I've thought that maybe you should publish a Nuget package as well as the standard Umbraco one, that way all the dependencies get pulled in at once in Visual Studio (slightly nicer developer story, although then you have to implement doctype creation etc. using Powershell, I might be able to help with this).
    I've got more but that's a start :-)
    Benjamin
  • Anthony Dang 1404 posts 2558 karma points MVP 3x c-trib
    Jul 13, 2014 @ 02:52
    Anthony Dang
    0

    Thanks for the input.

    I purposely left as much stuff in the view as possible, as many people are not c# devs. So I wanted to make it obvious to a non-c# dev about how to modify some functionality. At one point I was tempted to leave everything in app_code, but that much code in there made me cringe.

    When it comes to dependencies, I don't want to use nuget for the same reason. It's just a bit of a pain right now. Even though I have automated xcopy's of dlls around, I still have to remember to release a patch for what ever extension package I've updated.

    I think trackback is a good candidate for an extension package. You had a disqus extension at one point from memory. Would you like to make that a package? Or perhaps add it to uCommentsy, and have it as an option.

    I also need to confirm if Live writer still works in uBlogsy. It was working at one point.

    Keep the input rolling.

  • Biagio Paruolo 1593 posts 1824 karma points c-trib
    Aug 26, 2014 @ 22:23
    Biagio Paruolo
    0

    Hi,

    a big problems ( I'm a lot of problem with big sites and the customers says that is a big issue and not user experience ) are:

    - Tag input: if there are a lot of tags, Utagsy is not usable...You see a long list...better is if it's possible to suggest tag from list like old UBlogsy. Now UTagsy suggest only from inserted tags.

    - Issue with "Publish at" function and Lucene: you can read a lot of post on this. If you configure a date to publish or unpublish post, this don't work because Umbraco give an error.

    - MVC UBlogsy compatible with U6.2.2

     

  • Biagio Paruolo 1593 posts 1824 karma points c-trib
    Aug 26, 2014 @ 22:33
    Biagio Paruolo
    0

    This is the error:  Oops: this document is published but is not in the cache (internal error) 

    and if Umbraco staff says that this issue was fixed ( http://issues.umbraco.org/issue/U4-3145 ), UBlogsy MVC is not compatible with last 6.x version.
  • Anthony Dang 1404 posts 2558 karma points MVP 3x c-trib
    Aug 27, 2014 @ 16:19
    Anthony Dang
    0

    Biagio, are you any good with javascript/html?... wanna help with utagsy?

     

  • Biagio Paruolo 1593 posts 1824 karma points c-trib
    Aug 27, 2014 @ 16:23
    Biagio Paruolo
    0

    Yes, I am. How to solve?

  • Anthony Dang 1404 posts 2558 karma points MVP 3x c-trib
    Aug 27, 2014 @ 16:29
    Anthony Dang
    0

    I would just have something like an autocomplete which will take from the list of tags already in the DOM.

    Should be relatively simple using the jquery plugin.

  • Biagio Paruolo 1593 posts 1824 karma points c-trib
    Aug 27, 2014 @ 16:42
    Biagio Paruolo
    0

    There are a lots jquery for autocomplete..so I need to customize UTagsy usercontrol. Do you already have the tags into the div that you hide or unhide?

  • Anthony Dang 1404 posts 2558 karma points MVP 3x c-trib
    Sep 04, 2014 @ 10:29
    Anthony Dang
    0

    I already have the tags in an angular repeater list. Just need to wire up autocomplete to what's in this dom element:

    <a id="uTagsy-all-tags-toggle" ng-click="showTags($event)">Show/hide all tags</a>
    <ul id="uTagsy-tags-all" class="hide" >
    <li ng-repeat="tag in allTags" >
    <a class="uTagsy_global_tag" rel="{{tag}}" ng-click="addFromAllTags($event)">{{tag}}</a>
    </li> </ul>

     

     

     

Please Sign in or register to post replies

Write your reply to:

Draft