Inserting Attachment in Confluence - html

I wanted to insert an attachment in Confluence, so that I can access the image attachment for my html image tag(url). But I don't want them to appear in the page, is there a way where I can attach it in the page but it will not appear in the page?

one option is to attach it to another page, where your users usually do not go. call it 'technical page' or something.
the other option is to upload the attachment directly to your confluence server, into confluence app directory/confluence/, then you'll be able to reach it on yourcflserver:port/xxxx.png

Related

Saving HTML from website with image src intact?

I have a simple HTML file that sits on my website. I use this with <div contenteditable="true"> sections and I edit the content on the fly and send it as an HTML email.
If something goes wrong, I save the file as HTML in case I need to retrieve the message sent on any given day.
The problem is saving the HTML from the browser to you computer will save the images and change the src in the file to that location in your directory. I'd like to avoid this behavior since:
I don't want copies of the same images saving every single day.
If I need to resend I can just open up that file from my computer, copy, and send in an email easily. But if I delete them from my computer, then the new src's will point to the wrong place.
So is there a way to tell Chrome not to alter the HTML when it saves and to not save images?
Type ctrl-u on Firefox or Chrome to view html source, then copy and paste to your text editor. Save file with html extension.

How to embed local HTML file to existing GWT page

I have a page that is constructed by GWT, when the page get loaded, I will display some required content in it. And then if user click a certain button on the page, I will send request to server side and server will return me a HTML file(a chart generated by jquery plotting tool) stored in local directory, I need to display this HTML file into the existing GWT page's certain widget.
I tried to use Frame in GWT to link to the local HTML file and display it, it get failed, googled and found it's because of browser security setting.Please share your thought, any idea is appreciated.

How to embed Google Compose Mail window in to Google Sheet Form?

I won't bore everyone reading this post with the entire background story of why I need to do this. However, I am looking to load the Google Compose Mail page in the HTML form loaded inside a Google Sheet I have created.
I know the link for the Compose email is https://mail.google.com/mail/u/0/?view=cm&fs=1&tf=1&to=TO&su=SUBJECT&body=BODY
But I don't know if it is possible to have this link loaded as a view in the HTML service Form.
Does anyone know if this is possible and if so, how to do it?
I could always have a button to load the link in a separate tab... but I would like to have this all kept on screen to be more "professional" looking.
I was looking for an option to add an iframe or free code, but option exists. I recommend inserting a form if you are looking for a way to get data from users.
Its under "Insert", then "Form..."
Good Luck

Sending HTML emails in Outlook 2010 without MailChimp

I have created my HTML email in an index.html file and linked all the images to an FTP site.
I am not using MailChimp etc, I want to know how to send this email directly from Outlook 2010 itself?
How can I send this email out to lots of people (all using Outlook) and for them to be able to view the HTML within the email itself and not opening an attachment.
I basically want the code I have done in the body of the email within Outlook?
Cheers
Its been a while since Ive done this myself but if you create a new mail message and then choose Insert, then File and finally select your coded HTML file. In the lower right corner of the Insert dialog click on the arrow next to the insert button and select Insert as Text.
The other option would be to import the HTML file itself as stationery. Here is Microsoft's walkthrough of that process:
http://office.microsoft.com/en-us/outlook-help/create-stationery-for-email-messages-HA102561327.aspx?CTT=5&origin=HA010355037

an iframe for multiple users

I am trying to create a web page with the following :
Buttons and input fields etc. in the top half of the page that allow the user to define certain criteria, when the user clicks submit, the page calls some php code that writes an iframe referenced html file which is then shewn on the bottom part of the web page.
I think I understand how to do this for a web page referring to a single iframe document source but there may be more than one user running the page so how do I have the iframe pointing to the correct iframe source for each user?
Some web searching sugests that this is the kind of thing done with XMLHttpRequest, I'll have a look into that.
If I understand correctly, your PHP code creates an HTML file and then loads it in an iframe.
You could have your PHP script output the HTML, then load the PHP script in your iframe directly. Now there is no way for another user to accidentally get the other users' output.
I'm not sure if I understand exactly what you want to do.. but if you have already existing database of users, make a new table with Iframe preferences... so when they click submit, the preferences will be saved to the database with the user_id.. so next time just check if the user has already chosen... if yes, get the preferences from database.. if not -> redirect him to do so.
I don't know if that's exactly what you want