Announcement

Do not use the forums to submit bug reports, feature requests or patches, submit a New Ticket instead.

#226 Re: User Discussion & Help » table properties are lost » 2010-05-25 21:37:38

NB: Assuminng you are using PHP and that you do not have magicquotes on!

#227 Re: User Discussion & Help » table properties are lost » 2010-05-25 21:37:09

Why do you have \" ?

You are using htmlspecialchars and not addslashes, right?

#228 Re: User Discussion & Help » How to type indic languages in xinha text area » 2010-05-21 22:37:58

Needs somebody who knows the langauge(s) really.

But I don't see why any language needs special support? If you are UTF-8 clean throughout, and you can enter the language in other form fields, then there is no reason that Xinha should be any different to any other form field.  Is there?

#230 Re: User Discussion & Help » Xinha as popupeditor on page load » 2010-05-21 08:22:29

You need to execute it when Xinha is ready, not before.

Look into XinhaCore.js and find onGenerate, you should be able to hook in there somewhere.

#231 Re: User Discussion & Help » How to avoid carriage return plus linefeed » 2010-05-21 08:18:42

That's not possible as fr as I recall, it has been discussed many times here, please use the search function.

You should resolve your issue with CSS.

#232 Re: User Discussion & Help » Xinha as popupeditor on page load » 2010-05-20 20:54:48

It is not configurable as such, but I'm sure you could modify it thusly without much difficulty.  The function to trigger the full screen mode is <yorueditorobjecthere>._fullScreen() so it's just a matter of hitting that at the right time.

#234 Re: User Discussion & Help » Trying to get Xinha to work with my ASPX page » 2010-05-19 23:38:39

Insufficien information.  But if you are using ASPX, can you run PHP at all?

#236 Re: User Discussion & Help » Trying to get Xinha to work with my ASPX page » 2010-05-19 02:04:22

That would indicate you are loading the core before the setting of _editor_url, or perhaps you have a scoping issue in your code.  You would need to post the full text of your page.

#237 Re: User Discussion & Help » Trying to get Xinha to work with my ASPX page » 2010-05-18 21:50:29

You are loading the config before the core.  So the function is undefined.

#238 Re: User Discussion & Help » Editor is really slow in Chrome and Firefox » 2010-05-17 20:04:08

Do you have your caching disabled perhaps? 

Observe the network activity (using Firebug and the Chrome Developer panel (CTRL-SHIFT-J)) and see what's happening.

#239 Re: User Discussion & Help » Xinha 0.96.1 » 2010-05-16 19:44:28

Yes, all security patches are included in 0.96.1

#240 Re: User Discussion & Help » 0.96 and Chrome / Safari » 2010-05-14 10:16:26

Hmm.  I've been using Chrome Linux ok. What chrome version are you using? 

Oh, except that I wouldn't necessarily know if it's producing unclosed style tags if it's not actually causing an error in Xinha, my own systems wouldn't really care (always expect "tag soup" at best, after all, the user can submit whatever they want in HTML view so have to sanitise it anyway).

Are you using TransformInnerHTML or DomWalk for config.getHtmlMethod?  Perhaps try the other (domwalk should surely do the right thing with closing).

#241 Re: User Discussion & Help » Show/Hide the Stylist Panel » 2010-05-13 20:27:22

Try uncommenting that line in InternetExplorer.js

#243 Re: User Discussion & Help » Xinha 0.96 » 2010-05-11 17:34:06

Sorry about that, I'll patch it shortly, was a last minute patch for IE8 that FF obviously didn't like.  Ugh.

#244 Re: User Discussion & Help » Get state savesubmit button » 2010-04-27 00:45:28

It looks like it's intention is that it shoudl only report true ONCE, and after that it always returns false.

Try just removing the &&this.changed==false conditional to shortcircut that and return true if there has been a change at any time.

#245 Re: User Discussion & Help » Launch FileManager from a text link outside Xinha » 2010-04-24 20:51:34

Read: plugins/ImageManager/image-picker.js
Also: plugins/ExtendedFileManager/file-picker.js

#246 Re: User Discussion & Help » Get state savesubmit button » 2010-04-21 20:06:43

You'll need to debug it probably.  Use firebug and throw an exception in the function/set a breakpoint so that you can inspect what is available.

#247 Re: User Discussion & Help » If I want to participate??? » 2010-04-21 20:05:30

Ah, in that case you should just pick a bug to fix it (from the tickets), or develop a new feature to add to Xinha publically and submit it (as a diff of course), once you've done that then commit access can be granted.

You can checkout a read copy of the SVN trunk to work on, always work on the SVN trunk.

#248 Re: User Discussion & Help » If I want to participate??? » 2010-04-20 20:58:35

Open a ticket with your new plugin if it looks OK I can give you commit access to the subversion repository if you email me.

#249 Re: User Discussion & Help » Get state savesubmit button » 2010-04-19 19:25:44

Try this

function getState()
{
   var editor = Xinha.getEditor('area1');
return   editor.plugins.SaveSubmit.instance.getChanged();
}

In theory returns true when content is changed, false otherwise.

#250 Re: User Discussion & Help » delet HTML Tag » 2010-04-11 19:27:03

Unless you are using "fullPage", then you shouldn't gave ANY of those, html, head or body.  Don't use fullPage.

Or of course, you could simply remove the tags at your server end before you insert into the db.

Board footer

Powered by FluxBB