My favorites | Sign in
Project Logo
                
Links:
Blogs:
Feeds:
People details
Project owners:
  Schmeeky

Since ExtJS does not provide a public Subversion repository, this project will endeavour to keep an up-to-date version of the latest release available. This will allow other projects integrating ExtJS to create an external include to this project, thus allowing updates to be automatic.

I will also attempt to start tracking ExtJS extensions which do not have their own repositories, or include links to those that do.

News

License

Quick Start

Linking to Ext-Core on the Google CDN

The best way to link Ext-Core into your site is to use the Google AJAX API hosted version. This means that users will all download the files from the same source, and hence they're more likely to already be in the cache.

You can read about how to do this in this blog post.

Ext-Core is also available from the ExtJS repository here:

svn://svn.extjs.com/svn/ext-core

Linking to ExtJS on the Google Code servers

The files needed to use ExtJS are located in the subversion repository. You can link directly to the files from your website like this:

<script type="text/javascript" src="http://extjs-public.googlecode.com/svn/tags/ext-2.2/release/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="http://extjs-public.googlecode.com/svn/tags/ext-2.2/release/ext-all.js"></script>

Please note this may not have ideal performance. See this article for more information about Google's AJAX library hosting project.

Also note that I've not set any of the MIME types for the assets yet, so you may want to host those yourself - I've not experimented yet.

Including ExtJS in your source tree

To include ExtJS in your project from Subversion, you can do one of several things.

If your project also uses Subversion for revision control, you can use an svn:externals property to include ExtJS. For example, if you have a project with a directory structure which looks like:

/project
  /js
    /extjs

you can create an svn:externals property on the js folder with the following content:

extjs http://extjs-public.googlecode.com/svn/trunk/include

Now, every time you run svn update on your working copy, the ExtJS folder will also be updated.

If you don't use Subversion, but do have the Subversion client installed, you can check out the ExtJS code using the following command:

svn checkout http://extjs-public.googlecode.com/svn/trunk/include extjs

You will have to manually update the working copy when ExtJS is updated.









Hosted by Google Code