You are not logged in.
It should already work that way.
In IE, IE actually does it (and i don't know how to turn it off), in Gecko based browsers we simulate the effect (and make it better, you can hit ESC (I think it was ESC) to cancel the auto-link immediatly after it links it)
Just type for example www.example.com or bob@example.com and they should turn into links.
That is exactly what you are calling. If you don't load the Stylist plugin, then that function isn't available.
ImageManager can also use ImageMagick. See the config.php
/**
* Image Library to use.
*
* Possible values: 'GD', 'IM', or 'NetPBM'
*
* The image manipulation library to use, either GD or ImageMagick or NetPBM.
* If you have safe mode ON, or don't have the binaries to other packages,
* your choice is 'GD' only. Other packages require Safe Mode to be off.
*
* DEFAULT: GD is probably the most likely to be available.
*/
$IMConfig['IMAGE_CLASS'] = 'GD';I need help submitting the 'ta' or 'myTextArea' variable to a publishing script.
Provided Xinha is working for you it will submit as normal, as if it was a plain textarea (infact it is a plain textarea).
See htmlarea.css and htmlarea.js, somewhere in there.
If you would like this included in Xinha, please create a ticket and attach your plugin (zipped) to it, and include the changes that are necessary (don't post the whole file
) to the htmlarea.js file and note the revision of htmlarea.js you made the changes against (you can find the revision in the top few lines of the file, or the About dialog in Xinha itself).
Somebody will review it as soon as we can.
Yes, I think in the repositiory. Perhaps if we make a "contrib" directory and it can go in there, perhaps with some documentation on how to write new translations.
I'll leave it in your capable hands niko ![]()
You must be using an old version, this bug was fixed a week or two back.
Have a play with the stripBaseHref config option, and also the baseHref config option
xinha_config.baseHref = 'something/here';
xinha_config.stripBaseHref = true/false;re: source formatting.
You can use the HTMLTidy or SuperClean plugins to do this in Mozilla.
In htmlarea 3.0 I can use the row="20" to control the hight of textarea, but this seems not wowks with xinha.
Fixed in revision 278 (http://xinha.python-hosting.com/ticket/404) thanks.
For comparison Kim, are the FCK & Tiny using any plugins (or whatever they use), or more to the point, do they have all the features taht your 8-Plugin Xinha had ? ![]()
How does Xinha compare with no plugins to a no-plugin FCK or Tiny?
I just want to draw current developer's (and anybody else who wants to help) attention to this... http://xinha.python-hosting.com/ticket/30
Thanks, we now return to your regularly scheduled programming (pun intended) ![]()
I found the reason I made that change, http://xinha.python-hosting.com/ticket/202
essentially if you clicked a button in the toolbar before focusing the editor bad things would happen. This is the right way of fixing this, it was either just make the buttons silently not work, or make that visible by greying them out, as every other software interface does.
I'm aware of the problem with Linker, I almost have a solution (in inline-dialog.js there are some 'px' missing off the end of width & height specifications), but it has exposed another problem (when hiding and showing all panels, which happens when inline dialogs are shown, the right side panel (at least) "jumps out" of the table, it's own width, offset to the right), which seems to be a bug in mozilla, but I havn't been successfull in either writing a testcase or finding a decent workaround (setting the table display:none and then display:table brings it back, but a) that's not great, and b) we have to deactivate the editor before doing it).
Nope, nobody workign on anythng like this to me knowledge.
*Ahem* BETA
flowToolbars is designed so that you don't need to design your toolbar even if adding in lots of plugins, it will "flow" so that it doesn't blow everything out of proportion. This is why it's the default, because it means users don't need to design a toolbar to get started (and we can chuck plugins into the example without changing the toolbar).
There is a reason for the initial disabled status of the editors if you have a dig through the tickets you'll find it, I can't remember off the top of my head. However it certainly doesn't unload and reload plugins - unless you're seeing something I'm not, in which case please submit a ticket.
Also remember: THIS IS BETA SOFTWARE - THINGS WILL BREAK, THIS IS TO BE EXPECTED !!!
If it's working in one version, and not in another, then it's gotta be a bug in firefox
If it's broken in the next firefox release we'll look then, but not worth time to check & fix in firefox nightlies.
Well, you're missing closing tags but I think this would do that...
Hit the unordered list button
hit enter
hit the indent-left button
hit enter
hit enter
hit the indent-right button
hit enter
unclick the unordered list button
Indeed, iframe requires a full closing tag, as does script (with src) I believe. Can you submit that as a ticket for Version 1.0, thanks.
There are two considerations:
1. The (x)html of the popups, and xinha-editor itself
2. The (x)html produced by Xinha (inside the editor)
In the first case, our objective should not be "conforming to standards 100%" it is "well formed and working" - that is, "tag soup" is fine, as long as it's well formed (tags closed, no invalid nesting, quoted attributes, lower case etc) and it works in the browsers we care about (currently Gecko and IE, later Safari (or maybe even generic KHTML if that's possible now)). Personally, I don't give a rats if the html in the dialogs conforms to any particular standard as long as they work and are tidy - if this was a generic interface thave could be used by alternate devices or whatever then I'd be more concerned, but it's not, it's Javascript heavy, Gecko and IE only, as long as it works there, no problem.
For the (x)html coming out of Xinha, we don't have a lot of control. Infact, we have very little control - the browser makes the HTML. For example when the user clicks the bold button, we just tell the browser "the user said 'do bold'", it's the browser that works out what needs to be bolded, and how it should be done, we don't get to do anything about that. In short, the (x)html coming out of Xinha is going to be well-formed, but if it's valid for any specification, not a hope.
These are the strings returned by document.compatMode
CSS1Compat is "standards compliant mode"
BackCompat is "quirks mode"
for both browsers.
Nobody is working on it. There are no plans to do so, unless a keen developer with a mac comes along, or somebody buys me a mini-mac, or konq gets a 100% compatable content editable system.