Paste support for Firefox?

Paste support for Firefox?

Samuli Karevaara發表於
Number of replies: 12
Janne, Xinha (HTMLArea spinoff) has support for Firefox cut'n'paste without any user.js edits, but they stole it from FCKEditor 微笑, a bit more about it here.

Xinha might be something for Moodle 2.0? Don't know if it's less work or not because it's based on HTMLArea. At least the demos look very promising.
評比平均分數: -
In reply to Samuli Karevaara

Re: Paste support for Firefox?

Janne Mikkonen發表於
I been meaning to take a look at Xinha as soon as I got time for it 眨眼

I had an idea for support at least two javascript (htmlarea/xinha and tinymce) based editor and one java based editor (kafenio).

The problem with supporting two js editors is that there should be a dialog routine compatible with both editors, but in other hand this would free us to use whatever js editor we want.

So definitely I'm going to check that Xinha  滿意
In reply to Janne Mikkonen

Re: Paste support for Firefox?

Andy Tagliani發表於
Hi all

Its much more simple ...

Go to C:\Programs\Mozilla Firefox and open the folder greprefs like this:
C:\Programs\Mozilla Firefox\greprefs

Open the file all.js with your WordPad MFC Editor and search for:
Clipboard

There you will find to lines like this:
// Clipboard
pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
pref("capability.policy.default.Clipboard.paste", "noAccess");

Change it to (red marking)

// Clipboard
pref("capability.policy.default.Clipboard.cutcopy", "allAccess");
pref("capability.policy.default.Clipboard.paste", "allAccess");

Thats all! Save it and start Firefox new and you will see it works!

Bye Andy
In reply to Andy Tagliani

Re: Paste support for Firefox?

Samuli Karevaara發表於
Yes, that's the current method (or variation of it), but there is a way to do this with no intervention at all from the end user.
In reply to Samuli Karevaara

Re: Paste support for Firefox?

Alexandre Abi-Ackel發表於
You can use "Shift"+"Insert", instead of "Ctrl"+"V".
In reply to Alexandre Abi-Ackel

Re: Paste support for Firefox?

Samuli Karevaara發表於
That's a good reminder.

I was really vague in my original post, and now realize that it didn't come across at all as I meant. I was directing it to Janne, and the essence was: "there is a way to have copypaste to work in Firefox with Ctrl-V without any client end .js file editings".

Current ways to paste text in Firefox are the Shift+Insert, choosing Edit Paste from the menus or editing user.js (or similar) to allow for Ctrl-V.

Ctrl-V is important because that's what everybody tries at first, and 95% leave it at that if it doesn't work.
In reply to Samuli Karevaara

Re: Paste support for Firefox?

Chardelle Busch發表於
Core developers的相片
If you do try to use regular keyboard shortcuts, or the paste icon, you should get the popup widow that tells you to do just that--use shift+insert, etc.  Aren't you getting that?

By the way, Gustav, if you read this, in that window--the /n code is showing up in the text.
In reply to Chardelle Busch

Re: Paste support for Firefox?

Samuli Karevaara發表於
Chardelle, I do/did get the popup window, but it's unfortunately the same majority that doesn't read any of the alert-box texts, but close them "as a reflex". Fortunately they mostly use IE though 眨眼 But it doesn't chance the fact that Ctrl-V didn't work in Firefox. (But in 1.5.2 it does, without any user hacks, great Janne!)
In reply to Samuli Karevaara

Re: Paste support for Firefox?

Chardelle Busch發表於
Core developers的相片
Oh, that's great to know, and probably it should read unfortunately they mostly use IEwink -- not that there's anything wrong with IE.  I guess I'd better upgrade to 1.5.2--does anybody know if it's stable?  
In reply to Chardelle Busch

Re: Paste support for Firefox?

Martin Dougiamas發表於
Core developers的相片 Documentation writers的相片 Moodle HQ的相片 Particularly helpful Moodlers的相片 Plugin developers的相片 Testers的相片
Yes, it's fine now.  The best thing we have going.
In reply to Martin Dougiamas

Re: Paste support for Firefox?

Chardelle Busch發表於
Core developers的相片
Oh sheesh sorry, I just realized I had unsubscribed myself from Moodle News.  Thanks Martin, upgrading to 1.5.2 is on my to do list today.  By the way 1.5+ is wonderful!!!!!!  And much thanks to the many volunteer developers for their wonderful work and add-ons.
In reply to Samuli Karevaara

Re: Paste support for Firefox?

Janne Mikkonen發表於
ctrl + v is (read: should be) supported from 1.5.2 on.

Here is another user.js tip:
  • user_pref("capability.policy.allowclipboard.sites", "http: https:");
    If you define only protocols for allowclipboard.sites property, copy/paste should work on any site.