HTMLAREA patch?

Does anyone have a patch that will replace the RT editor with HTMLArea?

http://www.dynarch.com/projects/htmlarea/

Thanks,
Stan

You probably don’t want to do that. I am on another project that
is migrating away from htmlarea to xinha. I have stayed out of most of
it, but apparently htmlarea has lots of problems that you have to modify
to make it work right, and the authors recently changed the license to be
something not so nice. I guess xinha is a branch prior to the license
change.On Thu, 2 Jun 2005, Stan wrote:

Does anyone have a patch that will replace the RT editor with HTMLArea?

http://www.dynarch.com/projects/htmlarea/

Thanks,
Stan


The rt-users Archives

Be sure to check out the RT Wiki at http://wiki.bestpractical.com

Jon,

Thanks for the update!

I really want an (inline?) spell checker.

Stan

Jon Daley wrote:

I really want an (inline?) spell checker.

So use a browser that will let you use one.

Here’s two for Firefox / Mozilla / Gecko / etc:

http://spellbound.sourceforge.net/

SpellBound is a port of the spellchecker code and user interface
from the Mozilla Suite's Composer that enables spell checking in web
forms such as html textarea / input elements (html input password
elements are not checked by SpellBound) and rich text form elements.
This allows you to spell check forms (e.g. message board posts, blog
entries, wysiwyg, etc.) before submitting them when using your
Mozilla Firefox or Mozilla Suite browser.

http://spellchecker.mozdev.org/

This is the Mozilla spellchecker project, which adds spell checking
ability to the Mozilla Composer and the Mozilla Mail message
composition window. It uses the MySpell spell checking engine (also
used in OpenOffice.org)

Admittedly, the latter sounds less useful than the former, but then I’m
just citing the first two hits I got from a Google search for “mozilla
spell check”; a longer search would include others as well.

On OSX, the system can do spell checking on all text fields, so you
don’t need an separate plugin for this functionality, but from your
headers you seem to be using Windows, so that may not help you. I’m not
aware of an equivalent way to get Windows to do this, so in your case
the plugin to *zilla is probably the easiest approach.

Chris Devers

You probably don’t want to do that. I am on another project that
is migrating away from htmlarea to xinha. I have stayed out of most of
it, but apparently htmlarea has lots of problems that you have to modify

Yes it has some issues, but on my usage (not with RT thou) it’s has
worked well.

to make it work right, and the authors recently changed the license to be
something not so nice. I guess xinha is a branch prior to the license
change.

Hmm, BSD license is “not nice”? :slight_smile:

-=:[ Panu ]:=-
Make your life easier:

http://www.xs4all.nl/~hanb/documents/quotingguide.html
http://home.in.tum.de/~jain/software/oe-quotefix/

to make it work right, and the authors recently changed the license to be
something not so nice. I guess xinha is a branch prior to the license
change.

Hmm, BSD license is “not nice”? :slight_smile:

I don't exactly understand what happened.  This appears to be the 

original author: http://www.dynarch.com/forums/355
Perhaps Interactive Tools changed something, and then the original author
started it back up again? Not sure.

I could have sworn that this was in the FAQ once upon a time, but
repeated searching of the wiki hasn’t turned up anything…

Is there a simple way to set RT’s starting ticket number to something
higher than 1?

-n

------------------------------------------------------memory@blank.org
“The problem with defending the purity of the English language is that
English is about as pure as a cribhouse whore. We don’t just borrow
words; on occasion, English has pursued other languages down alleyways
to beat them unconscious and rifle their pockets for new vocabulary.”
(–James D. Nicoll)
http://blank.org/memory/----------------------------------------------

It depends on what database you are using. Look for the file called
schema.Pg for postgres or schema.mysql, or whatever. You’ll see a line
that says something like:

CREATE SEQUENCE tickets_id_seq;

That’s for Postgres. I changed it to:

CREATE SEQUENCE tickets_id_seq MINVALUE 8000;

Then I initialized my database.–On Monday, June 06, 2005 11:36 AM -0400 “Nathan J. Mehl” rtusers@memory.blank.org wrote:

I could have sworn that this was in the FAQ once upon a time, but
repeated searching of the wiki hasn’t turned up anything…

Is there a simple way to set RT’s starting ticket number to something
higher than 1?

-n

------------------------------------------------------memory@blank.org
“The problem with defending the purity of the English language is that
English is about as pure as a cribhouse whore. We don’t just borrow
words; on occasion, English has pursued other languages down alleyways
to beat them unconscious and rifle their pockets for new vocabulary.”
(–James D. Nicoll)
http://blank.org/memory/----------------------------------------------


The rt-users Archives

Be sure to check out the RT Wiki at http://wiki.bestpractical.com

There is a sequence “tickets_id_seq” that you can define to start with
any number you like.

-anyaOn Mon, 2005-06-06 at 12:00 -0400, rt-users- request@lists.bestpractical.com wrote:

Message: 5
Date: Mon, 6 Jun 2005 11:36:54 -0400
From: “Nathan J. Mehl” rtusers@memory.blank.org
Subject: [rt-users] starting ticket number
To: rt-users@lists.bestpractical.com
Message-ID: 20050606153654.GP25845@blank.org
Content-Type: text/plain; charset=us-ascii

I could have sworn that this was in the FAQ once upon a time, but
repeated searching of the wiki hasn’t turned up anything…

Is there a simple way to set RT’s starting ticket number to something
higher than 1?

-n

And is there any way to change this after the installation?

ChrisFrom: rt-users-bounces@lists.bestpractical.com
[mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Anya Figlin
Sent: Monday, June 06, 2005 12:40 PM
To: rt-users@lists.bestpractical.com
Subject: [rt-users] Re: starting ticket number

There is a sequence “tickets_id_seq” that you can define to start with
any number you like.

-anya

I’ve reset it on MySQL with InnoDB by simply adding a ticket with the
appropriate number via phpmyadmin, then editing the Primary Index. this
updates the starting number.

Chris wrote:

And is there any way to change this after the installation?

Chris

-----Original Message-----
From: rt-users-bounces@lists.bestpractical.com
[mailto:rt-users-bounces@lists.bestpractical.com] On Behalf Of Anya Figlin
Sent: Monday, June 06, 2005 12:40 PM
To: rt-users@lists.bestpractical.com
Subject: [rt-users] Re: starting ticket number

There is a sequence “tickets_id_seq” that you can define to start with
any number you like.

-anya

Message: 5
Date: Mon, 6 Jun 2005 11:36:54 -0400
From: “Nathan J. Mehl” rtusers@memory.blank.org
Subject: [rt-users] starting ticket number
To: rt-users@lists.bestpractical.com
Message-ID: 20050606153654.GP25845@blank.org
Content-Type: text/plain; charset=us-ascii

I could have sworn that this was in the FAQ once upon a time, but
repeated searching of the wiki hasn’t turned up anything…

Is there a simple way to set RT’s starting ticket number to something
higher than 1?

-n


The rt-users Archives

Be sure to check out the RT Wiki at http://wiki.bestpractical.com

Adrian Carter
Technical Manager
Leading Edge Internet

Web http://www.lei.net.au http://support.lei.net.au
Direct +61 2 6163 6162 Support 1 300 662 415
E-mail cartera@lei.net.au