Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 22 Next »

What is the Fluid Project?

Fluid is an open-source software community that

  • designs user interfaces
  • builds Web tools
  • teaches inclusive design
  • integrates interface components into open source applications

Our community consists of an international team of partners, individuals, and institutions focused on designing flexible, customizable, user-centered interfaces.

Projects

Links in the wiki:

External Links to project websites

User Experience and Design

Development

  • Development: Developer resources and technical information.
  • Daily builds: Links to our daily build with in-context demonstrations of Fluid Infusion components.
  • Source Code: Access to the latest Fluid source code.

Collaborative Project Resources

  • Meetings: Meeting schedules, agendas, and archives.
  • Collaborate: Resources on collaborating and communication with the Fluid Community.
  • Project Coordination: Road maps, release plans, deliverables, and more.
  • Security: Security protocol.
  • Fluid Gear: shop for Fluid-branded shirts, mugs, etc.

What Is Infusion?

Infusion is a different kind of JavaScript framework. Built for creating applications that are highly usable and accessible, Infusion provides a rich set of APIs for creating loosely-coupled models and views using a declarative and event-driven style.

Infusion includes:

  • an application framework for developing applications with JavaScript and jQuery,
  • a growing collection of user interface components, and
  • a modular CSS framework that allows you to add, remove and mix classes to get effect you want.

Infusion embraces unobtrusive, functional techniques that promote less code and greater flexibility. Infusion takes the pain out of developing accessible, high performance, clean and nimble front-ends for applications that want to do more. Our approach is to leave you in control - it's your interface, using your markup, your way.

Why Use Fluid Infusion?

Fluid components differ from other javascript library components in that they are built from the ground up with several core requirements:

  • Accessibility (a11y), usability, and internationalization (i18n) are key
  • Must strive to be DOM-agnostic
  • Must provide a good user experience in any situation
  • Must be completely customizable

Core Component Requirements

  • Internationalization (i18n)(http://en.wikipedia.org/wiki/Internationalization_and_localization)
  • DOM Agnosticism and playing safe
    • Being DOM agnostic means further abstracting your code from the presentation and markup layers. This means the behaviour layer is made to accomodate many different situations (in the markup and behavioural layers) and deal with them all gracefully. Our components cannot make assumptions about the surrounding (x)html markup. They can be placed in situations where normal operation might otherwise break the environment (ie. its not safe to traverse the DOM when it's in flux). While being markup agnostic cannot happen perfectly 100% of the time, it is something for Fluid components to strive for.
  • Customization
    • Part of being DOM agnostic is to allow for extensive customization on many levels. Something Fluid components try to achieve is allowing the implementer to easily change as much about the component as possible, allowing for a simpler and safer integration process on their part.
  • No labels