Not signed in (Sign In)

Categories

Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.

Help keep Vanilla free:
Welcome Guest!
Want to take part in these discussions? If you have an account, sign in now.
If you don't have an account, apply for one now.
    •  
      CommentAuthorMark
    • CommentTimeAug 26th 2005 edited
     # 1
    I hate posting updates on development here in the forum, because they always get lost in the shuffle. I should really set up a blog on the main lussumo.com page, but I want to devote all of my free time to development and documentation. Plus, I think I *will* end up using the vanilla framework to make a new blog - so I don't want to waste any time working with some other blogging tool.

    I'm sick of documentation right now, so I've been doing some more work on the codebase. A few weeks ago I got this notion about how to speed things up in Vanilla, and today I did it. I thought it might give a minor increase in speed, but it turns out that it is a MAJOR increase in speed. Pages that were taking over 1 second to load here on my local server are now taking an average of 0.7 seconds to load. In my mind, that's a pretty impressive performance gain.

    Basically, I made the objectfactory load classes on demand, rather than including all classes that a page might need in every page load. It's pretty neato!
    •  
      CommentAuthorMark
    • CommentTimeAug 26th 2005 edited
     # 2
    ... bug!
    •  
      CommentAuthorlech
    • CommentTimeAug 26th 2005 edited
     # 3
    ... found a nice bug
    • CommentAuthorjonezy
    • CommentTimeAug 27th 2005
     # 4
    so is that some of the .net reflection type stuff we talked about?

    i think that is a pretty major speed increase... it should be really noticiable on some of the bigger installs!
    •  
      CommentAuthorMark
    • CommentTimeAug 27th 2005
     # 5
    Yeah, jonezy - that's pretty much it exactly.
    • CommentAuthorjonezy
    • CommentTimeAug 27th 2005
     # 6
    so basically the software is now super fantasic awesome plus?
    •  
      CommentAuthorMark
    • CommentTimeAug 27th 2005
     # 7
    hehe - getting there...
    •  
      CommentAuthorMark
    • CommentTimeAug 28th 2005
     # 8
    Okay, I've been working on the styles and templating all day. I think I'll officially have to change the name from a "style" to a "theme", because dammit - this rocks. It's now way more than just a css definition.

    Here is a screen grab of a style I've been able to develop with the theming system:



    That may look familiar to a few of you :)
    •  
      CommentAuthorMark
    • CommentTimeAug 28th 2005
     # 9
    Oh, and I'm calling that new theme "Mini Vanilli"
  1.  # 10
    Defitely looks and sounds good, Mark. Great work as always.
    •  
      CommentAuthornathan
    • CommentTimeAug 28th 2005
     # 11
    That may look familiar to a few of you :)

    Who is testing this? Show of hands please.

    *gimmi gimmi gimmi. I want to test too*
  2.  # 12
    familiar? you what? it looks nothing like anything i've ever seen before. except the greatest board on the '.net

    i'm glad you're naming it after me though.
    •  
      CommentAuthorlech
    • CommentTimeAug 28th 2005
     # 13
    Oh shit man, it's o8 in a new pair of pants!
    • CommentAuthor413x
    • CommentTimeAug 28th 2005 edited
     # 14
    "Mini Vanilli"

    Is this a wordplay on the old popgroup [Milli Vanilli"](http://www.google.com/search?q=milli+vanilli)? ;)

    btw: the theme look nice & promising!
    •  
      CommentAuthornathan
    • CommentTimeAug 28th 2005 edited
     # 15
    ah. I thought it had been released for the developers or something. everyone disregard my previous post (unless I have stubled upon a conspiracy, in which case, I want in!)

    I was not around for o8, so I did not recognise it. It looks very nice though.
    •  
      CommentAuthorFLC
    • CommentTimeAug 28th 2005
     # 16
    I thought that was one river you werent going to cross Mark, that said, it looks hottz0rz!
  3.  # 17
    That theme is dead sexy. Are we going to have to change current styles to use them with the next release?
    •  
      CommentAuthorlech
    • CommentTimeAug 28th 2005
     # 18
    if this is going to work like I think it will, we could possibly be redefining the entire stylesheet as we know it. Meaning, we could define our own styles and simply call in the namespace for the element filling that style. For example, moving all the navigation tabs into the sidebar area and using either that same style, or defining our own.
    •  
      CommentAuthortechy
    • CommentTimeAug 29th 2005
     # 19
    Eventhough it looks good, I wouldn´t go for the classic frame style. I´ve always liked Vanilla for being different to all others, with its clear (google like) lay out.

    Good job anyway
    •  
      CommentAuthorlech
    • CommentTimeAug 29th 2005
     # 20
    Techy, themes or styles via templates wouldn't break anything. In fact, it would only add to it. for example, this would allow you the admin to define what elements to display, and which to hide on your forum. From the screen shot that mark posted, it appears that either there are items hidden via css, otherwise, not present in the template. If it's rendered how I think it is (the later, via template) this is a bonus.

    However, the only drawback to this is that one set of CSS style(s) cannot be applied to the same template "frame" as each would be defined for that theme and that theme alone. Unless there was a common template "frame" being used for both. So while there's many benefits, there's only a very few number of drawbacks to this. So I'm all for it if I can move around the underlying xhtml code being spat out :D

    Another major benefit is being able to literally save some processing time to display pages due to the fact that you might only be calling one or two database items out of a dozen total, so that's also a plus if you don't need all that data.
    •  
      CommentAuthortechy
    • CommentTimeAug 29th 2005
     # 21
    Understood, Lech! Thanks for your explanations
    •  
      CommentAuthorlech
    • CommentTimeAug 29th 2005
     # 22
    only mark can answer the question for sure, because I'm simply speculating on what mark has in store. But hopefully it's something along the lines of what I've explained.
    •  
      CommentAuthorMark
    • CommentTimeAug 29th 2005
     # 23
    For the most part lech is right. You'll have a great deal of control over the xhtml under the hood. There will still be one frame in there that you can't touch: the body control (which is a controlcollection class) will still have it's opening and closing div. Everything else will be editable.

    @techy: Yes, that is an old-style looking forum I've made up there - but it was being modelled after an old forum I made years ago.

    @flc: I know I said I wasn't going to go down that road, but I wanted to test out the templating, and I was too lazy to think up a whole new style.
    •  
      CommentAuthoroutbreak
    • CommentTimeAug 29th 2005
     # 24
    OH MY GOD I WANT THAT!!!!!!!!!!
    • CommentAuthorpea
    • CommentTimeAug 29th 2005
     # 25
    How neat is that.
    Thanks, Mark!
    •  
      CommentAuthorlament
    • CommentTimeAug 30th 2005
     # 26
    but it was being modelled after an old forum I made years ago

    you made o8?

    i've only seen mention of that site on YH..
  4.  # 27
    you didnt know mark made o8? He's the elusive nav! God of all meaningless forums. (give or take o8's predecessors)
    •  
      CommentAuthorMark
    • CommentTimeAug 30th 2005
     # 28
    hehehe - yes, i made the o8 code - but the people made o8.
    •  
      CommentAuthorlech
    • CommentTimeAug 30th 2005
     # 29
    oh and did those people make o8...
    •  
      CommentAuthornathan
    • CommentTimeAug 30th 2005
     # 30
    It is a shame I missed the o8 experience.

    I think it has been said in previous threads that Mark is not going to revive it, but from the sounds of it, it would be great to give it another go. It can run vanilla with Marks new 'mini vanilli' theme, which I hear is based on o8.
    •  
      CommentAuthorlech
    • CommentTimeAug 30th 2005
     # 31
    nathan... if you only knew...
    •  
      CommentAuthornathan
    • CommentTimeAug 30th 2005
     # 32
    I have heard it was a crazy place. As I have said. I would have loved to be part of it.
    •  
      CommentAuthorMark
    • CommentTimeAug 31st 2005
     # 33
    There are still two o8 spinoff boards that I know of out there. They're private, of course, just like o8 was.

    I have no hopes or dreams of starting a new o8. I've got bigger fish to fry :)
    •  
      CommentAuthorBen
    • CommentTimeAug 31st 2005
     # 34
    Fry those fish Mark... fry those fish.
    •  
      CommentAuthorjsanders
    • CommentTimeAug 31st 2005
     # 35
    holy hot templating, batman!

    you do, indeed have much bigger fish to fry. i can't wait to get this installed.
Add your comments
    Username Password
  • Format comments as