Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move from ExtJS to jQuery UI #55

Closed
fbuchinger opened this issue Feb 10, 2011 · 34 comments
Closed

Move from ExtJS to jQuery UI #55

fbuchinger opened this issue Feb 10, 2011 · 34 comments
Assignees
Labels
Milestone

Comments

@fbuchinger
Copy link

I know that this feature request is a bit radical, but I propose to get rid of the ext.js dependency.

Why get rid of ExtJs? The first reason is to reduce the size of the script includes... The already minified aloha.js is 1 MB in size. The second reason are extjs' license terms. If I want to use Aloha in a commercial project, I need to buy a license for Aloha plus a license for ExtJs. This certainly narrows Aloha's attractiveness compared to TinyMCE et al, which require none or one license purchase.

I know that this will be a long-term goal, especially because some replacement for ExtJS' UI functionality has to be found. But IMHO it is certainly worth a discussion on the upcoming Aloha Hackathon

@draftkraft
Copy link
Contributor

Some developers around Clemens are working on such a solution with jQuery UI. http://aloha-editor.org/wiki/Migration_to_jQuery_UI On the Aloha Editor DevCon they try to implement a prototype.

@fbuchinger
Copy link
Author

Glad to hear that! I hope to join in there

@bergie
Copy link
Contributor

bergie commented Feb 10, 2011

Was issue this closed on purpose?

@fbuchinger
Copy link
Author

sorry, closed it accidentially. Can someone of the aloha team re-open it?

@draftkraft
Copy link
Contributor

done.

@cprerovsky
Copy link
Contributor

Jep, I will focus on that at the devcon. I hope that the jQuery UI guys, bergie and me can get this thing rolling, but I'm quite sure, that we won't be able to finish this project in just one week. So any help ist highly appreciated! :)

@fbuchinger
Copy link
Author

Maybe I can help too... I surely will attend the conf for one or two days, although I'm just on the waiting list.

@draftkraft
Copy link
Contributor

A few more people are welcome. It could become to a problem if a lot more want to come, but since you are the first on the list you can be quiet sure to be invited to participate.

@balupton
Copy link
Contributor

Just updated the wiki with the latest devcon developments:
http://aloha-editor.org/wiki/Migration_to_jQuery_UI

@balupton
Copy link
Contributor

You may track the progress here:
https://github.com/alohaeditor/Aloha-Editor/tree/dev-jqueryui

@fbuchinger
Copy link
Author

Thanks a lot, I will stay tuned....

@balupton
Copy link
Contributor

balupton commented Mar 7, 2011

This is now the priority. Aiming for a beta release in April.

@hahmed
Copy link

hahmed commented Mar 15, 2011

what is the update on this feature? I uploaded the latest code from the jquery branch but the code calls a bunch of Ext.js code? It appears as though you has a sample working in one of your examples?

@balupton
Copy link
Contributor

Hi ha25gmail - it is still in development, it is for the v0.11 release that will be due out sometime in 2nd Quarter 2011. http://aloha-editor.com/wiki/Roadmap

@ghost ghost assigned balupton Apr 20, 2011
@bergie
Copy link
Contributor

bergie commented May 16, 2011

As discussed today with Haymo, an idea is to use Hallo as the experimental testbed for how Aloha's features could be provided through jQuery UI: https://github.com/bergie/hallo

For this to work better, we're planning to move Hallo repository under the Aloha GitHub group.

@draftkraft
Copy link
Contributor

To clear up things. The Aloha Editor Team will continue the jQuery UI implementation in the Aloha-Editor rep in the branch dev-jqueryui. hint or explorations from Hallo can be implemented.

@ghost ghost assigned draftkraft Jun 20, 2011
@limi
Copy link

limi commented Nov 9, 2011

https://github.com/alohaeditor/Aloha-Editor/tree/dev-jqueryui gives me a 404. Is the switch to jQuery UI still planned?

@balupton
Copy link
Contributor

balupton commented Nov 9, 2011

No idea. I'm no longer affiliated with the aloha editor project.

On 09/11/2011, at 4:07 PM, Alex Limireply@reply.github.com wrote:

https://github.com/alohaeditor/Aloha-Editor/tree/dev-jqueryui gives me a 404. Is the switch to jQuery UI still planned?


Reply to this email directly or view it on GitHub:
#55 (comment)

@baekholt
Copy link

baekholt commented Nov 9, 2011

I am interested in any followup on this. One of the biggest challenges we are seeing for adopting Aloha is the download size from the ExtJs dependency.

@Jotschi
Copy link
Contributor

Jotschi commented Nov 9, 2011

We are currently in the progress of planing the migration to jquery-ui. The ui specification is currently being written.

@draftkraft
Copy link
Contributor

@evo42
Copy link
Member

evo42 commented Apr 19, 2012

should be available in june 2012

@sylus
Copy link

sylus commented Jun 5, 2012

Hey was curious how the progress is going on this :) Awesome work guys!

@deliminator
Copy link
Contributor

We are making progress on the dev-jqueryui-ultra branch
deliminator@79dbf8a

@cecilialam
Copy link
Contributor

is there a new estimated date/date range?

@deliminator
Copy link
Contributor

I expect the dev-jqueryui-ultra branch to be merged back to dev sometime next week.

@nka11
Copy link
Member

nka11 commented Jul 11, 2012

Hi all,

back from spare time spent in other projects... Lots of good moves in aloha since my last pull :) (Loading time whoooaaa !!!)
Just checkouted this branch and have aloha working (alone).

Is someone fixing the format plugin or may i start hacking around ? Any advice or example/model/doc to follow ?

@deliminator
Copy link
Contributor

Hello Nico,

we are still fixing some bugs on the dev-jqueryui-ultra branch (I'm assuming you pulled dev-jquerui-ultra where most of the development happened). The format plugin should work. We should be finished with most pressing fixes on friday. If you want to hack around, feel free. We are not going to make any more big changes.

We have re-implemented the aloha ui. There is now a common/ui plugin. It works with jqueryui. Extjs has been removed.
Look at CHANGELOG-jqueryui.md in the repository root folder for some of the things that changed.

We didn't yet write any documentation for the new ui. Look at the existing plugins for how to use it. Basically, you call Ui.assign(configuredName, componentType, settings). This gives you an instance of a button for example.

The configuredName is just a string in the toolbar configuration (Aloha.settings.toolbar). Look at index.html in the boilerplate demo. Aloha.settings.toolbar describes the layout of the floating menu. Ui.assign() assigns a new component instance to a named slot in the floating menu. The name of the slot is specified in the configuration. This lets you configure the layout of the toolbar exactly the way you want.

@nka11
Copy link
Member

nka11 commented Jul 11, 2012

Well, thanks @deliminator
Just found from myself the ui dependency.
The readme gives really useful informations, still have a few problem, i should fix quicker now.

@wimleers
Copy link
Contributor

The dev-jqueryui-ultra branch has been merged into the dev branch. Tomorrow it should be released, as version 0.21: http://aloha-editor.org/blog/2012/07/aloha-editor-goes-jquery-and-gplv2/

:) :) :)

@evo42
Copy link
Member

evo42 commented Jul 25, 2012

so I suppose we can close it now :-)

@evo42 evo42 closed this as completed Jul 25, 2012
@edrex
Copy link

edrex commented Jul 25, 2012

woooo!

On Wed, Jul 25, 2012 at 7:52 AM, Rene Kapusta <
reply@reply.github.com

wrote:

so I suppose we can close it now :-)


Reply to this email directly or view it on GitHub:
#55 (comment)

@hahmed
Copy link

hahmed commented Jul 26, 2012

Can someone confirm re: license - we can now use in commercial projects

-> The js + css are already on the client so the client can get the code if they need to

-> Would Aloha charge if we were to use the aloha in commercial projects?

-> Are we allowed to amend to code, and still use in commercial projects, the fork will be in a public repo that is accessible to Aloha

Good stuff guys 👍

@aghamanoukjan
Copy link

dear ha25gmail - regarding licensing - yes you can use the GPL version of Aloha Editor in commercial projects as long as you fullfilling the terms of GPL especially regarding sharing obligations - check out these FAQ - http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#GPLCommercially
In this case you don´t have to pay anything for using Aloha Editor.

If you don´t want or if you aren´t able to fulfill the terms of GPL you can always support Aloha Editor by obtaining a commercial license for Aloha Editor. If you want this check out http://aloha-editor.org/license.php

coleshaw pushed a commit to coleshaw/Aloha-Editor that referenced this issue Feb 12, 2014
Change toolbar into replacement for ui/ui, map ui/ui to toolbar
yrucrem pushed a commit that referenced this issue Sep 19, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests