Tiny_mce image list - tinymce

I was using a very old tiny_mce (tiny_mce_gzip.js) that is no longer working after a php upgrade. I need to able to use the image selector via the 'external_image_list_url' but trying to find my way round the documentation it only refers to this in v3. Does it still exist in the latest version?
Thanks for any help.

Sorted!
Easy to find when you know where to look for it. I was searching the documentation for a phrase in my old version that is no longer used. "images_upload_url" seems to be the replacement for "external_image_list_url" (although the content of the file pointed to is slightly different).

Related

Can you run a version of vscode inside the browser without a server?

Is there any way to run a version of VS Code inside a browser without a server? (inside a React or Angular app). Something like an enhanced version of the monaco editor.
Of course that means it will have some missing functionalities.
If not, are there any other options?
Try this https://securingsincity.github.io/react-ace/
its something of the same king what you want
As far as I could find, it is possible to run VSCode in the browser (since we have vscode.dev), but there doesn't seem to be anyway to deploy it yourself yet?
This Github issue is probably what you want, but there isn't any information there (or on the repo) yet.
It does strongly suggest that https://github.com/microsoft/vscode is the version used for vscode.dev, so there might be things to be found there, until official instructions/embedding is possible.
I think it depends on how you treat vscode.
if it is just a editor software, there'll be a lot of .
For you customerization purpose, it sounds something like 'https://github.com/cdr/code-server'
Not sure if it helps, but you can try looking up gitpod.io. It opens up a visual studio code instance on your browser with options of installing extensions as well.
Use the link like gitpod.io/#https://github.com/username/repo-name
You can possibly use Gitpod self-host, https://github.com/gitpod-io/gitpod or https://github.com/gitpod-io/openvscode-server they both have documentation on how to create your own version of VSCode for the web, however, as I've never tried to create one myself, I don't know if it accomplishes your specific use case.

what happened to gtk_source_iter_forward_search in gtksourceview-3.0

I've looked at the GtkSourceView 3 Reference Manual, and I've googled for a while, but I cannot find any mention of why gtk_source_iter_forward_search was dropped from gtksourceview or what should be used instead.
I've also looked at the features link at the gtksourceview website where it lists as a feature: Caseless UTF-8 compliant search.
I've looked at the gedit source ver 3.2.6 (since I know they use gtksourceview), but they seem to be using gedit_document_search_forward, which I'm guessing comes from some other library. So my question is, what happened to the search capabilities in gtksourceview? Is there another library that provides similar functionality to gtk_source_iter_forward_search, or is it now done another way within gtksourceview?
I originally wrote my editor in gtksourceview-2.0, now I am rewriting it using gtksourceview-3.0, and I have an established search forward function based on the gtk_source_iter_forward_search function.
Thanks.
Always browse the source if you want to know these things. I found in this commit that GtkSourceIter was removed because the functionality was moved to GtkTextIter.

can you DUMP the DOM to a file?

I am using Firefox with Firebug, and came to a point where I have a more mature version of my page that has more features, but apparently one feature has gone bad, and I have an earlier version in which it works, but is way behind.
I was thinking that I may make use of dumping the DOM of both versions and compare them,
how can I do that ?
Thanks !

missing image in confluence 3.0.1

I am using confluence 3.0.1 and have the problem that some images are not shown after logout. I remember there being a fix but cannot find anything despite extensive google searches.
Can someone please point me in the right direction?
Thanks.
Christian
I do not have an installation of Confluence 3.0.1 available, we use a more current version 3.4.9, but perhaps the things are similar.
I think the reason for your missing image is simple. Your profile image is stored in the people directory, and you don't have access to the people directory without login. So even if anonymous access is allowed in your personal wiki, the space logo is taken from the people directory, and there the anonymous user has no access.
There is no workaround known to that problem. Atlassian states that it is a feature, not a bug. See the issue https://jira.atlassian.com/browse/CONF-16626 for a similar case. In newer versions of confluence, a question mark is shown to indicate that a profile picture should exist, but is not shown. So it does not look anymore like a technical bug.

Three20 dependency problem

I checked out the three20 source and was trying to follow this
guide to build an iphone app using the framework. Within this guide, Templates are used which I checked out too. They ought to compile properly, but I get the following error:
File /Users/myUser/programming/three20/src/build/Debug-iphonesimulator/libThree20.a depends on itself. This target might include its own product.
Did anyone ever solve that issue? I read it was about including something you want to create which is not possible. Anyway any solution I found did not help here.
I actually did not even change anything! Any ideas?
Okay I fixed this by opening the three20.xcodeproj and unchecking the target box for libThree20.a (while leaving it checked in my project that is using three20).
This has at least got me building and running, will report if any problems come up later.