Feed items

  • warning: Declaration of views_handler_argument::init(&$view, &$options) should be compatible with views_handler::init(&$view, $options) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_argument.inc on line 48.
  • warning: Declaration of views_handler_filter_boolean_operator::value_validate(&$form, &$form_state) should be compatible with views_handler_filter::value_validate($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc on line 111.
  • warning: Declaration of views_plugin_row_node_view::options_form(&$form, &$form_state) should be compatible with views_plugin_row::options_form($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/modules/node/views_plugin_row_node_view.inc on line 35.

Compiling templates with Ember 1.10

As many of you know, Ember 1.10 will be the first version of Ember that uses HTMLBars as its templating engine. With this change you may need to change the way you compile your templates.





Inside FastBoot: Faking the DOM in Node

As we announced in the inaugural blog post in our Inside FastBoot
series
, we
have begun working on giving Ember.js developers the ability to run
their apps in Node.js. Once complete, this feature will allow your users
to see HTML and CSS right away, with the JavaScript downloading
in the background and taking over once it has fully loaded.





Ember Data v1.0.0-beta.14.1 Released

Ember Data v1.0.0-beta.14.1 is a bugfix release that adds sourcemaps
to your build pipeline in Ember CLI and Rails. Additionally support
for versions of Ember <= 1.7.1 have been removed. This was mentioned
in the beta.12 blogpost, and is now enforced via an assertion
in the code and by your package manager files.





Ember Data v1.0.0-beta.14 Released

Due to a hiccup during the publishing step while releasing beta.13,
we've removed beta.13 from npm and instead published beta.14. This
release is available to you whether you are using npm and ember-cli,
rubygems, or bower. Note that the builds are always available as static
files at emberjs.com/builds.





Ember.js 1.9.1 Released

Today, the Ember team is pleased to announce the release of Ember.js
1.9.1. Ember 1.9.1 fixes one regression and introduces more conservative
escaping of attributes to help developers guard against inadvertent cross-site
scripting (XSS) vulnerabilities.
{{view}} Helper & Instances
The 1.9.0 release introduced a regression where the Handlebars
{{view}} helper would only work with Ember.View subclasses, not
instances. In 1.9.1, passing a view instance to the helper has been
fully restored.





Inside FastBoot: The Road to Server-Side Rendering

Using JavaScript to write fast, interactive web applications has exploded in popularity over the past few years. JavaScript apps offer many strengths over traditional server-rendered applications. Most notably, rich interactions and lightning-fast responses to user clicks allow for UIs that previously were only the domain of native apps.
The first JavaScript-heavy applications were productivity apps, and the experience of loading an app on the web, even with a spinner, was far better than the equivalent experience of downloading and installing a native app.





Ember.js 1.9.0 and 1.10 Beta Released

We are pleased to announce the release of both Ember.js 1.9.0 and the
first beta in the 1.10 series. This comes as the ninth cycle of our
release process that began after 1.0 was released.
The 1.9 release represents the effort of at least 52 contributors across over 436 commits.
The Road to Ember 2.0
In early November Tom, Yehuda, and the Ember.js Core Team shared The Road to Ember 2.0.
This RFC document acts as a map for the next several releases of Ember.js.





Ember Data v1.0.0-beta.12 Released

New Core Contributors
Long-time contributors Brendan McLoughlin and Sylvain Mina
have been given collaborator status and will help us triage issues, merge pull
requests, and contribute bugfixes and documentation.
New Features
store.fetch
When using Ember Data, the most common pattern in the model hook is to call
store.find for your model:





Igor Terzic Joins the Core Team

Today I'm happy to announce that Igor Terzic is joining the Ember.js
core team.
Igor has been instrumental in the development of Ember Data. He has both
fixed bugs relentlessly and landed major new features, such as the
recent work on modelling relationships as entities with a single source
of truth.
Thanks to his hard work, Ember Data is rapidly approaching a stable
release, and it's no exaggeration to say that we couldn't have done it
without him.





Ember.js 1.8.1 Released

Today we are releasing Ember.js 1.8.1, a patch-level release of Ember that
fixes several minor regressions introduced in the 1.8 release.
Throw exception when attributeBindings includes class
Prior to 1.8, it was possible to make class part of attributeBindings and have
those values merged with classNameBindings. For example, with the following template
and code "from-template" and "from-class" would be merged into the DOM node's class
list.