How to hide the "Save your changes" confirmation window when saving a page on Mediawiki - mediawiki

I have a personal wiki running on mediawiki and don't think I really need to track the page edit summary or whatsoever, so is there anyway to skip it? which means when I am done with editing on a page and click on Save, it just Save it without asking me to describe what I changed..
Thank you!

Related

It is possible to print but not download images?

I have been investigating for days if it is possible to allow a user to print an image on any printer that they have connected but not allow them to save the image on their computer, that is, disable the possibility of saving as pdf of the printout.
I clarify that it is not important if you take captures and other metedos that may exist, I would only be interested in disabling the option when clicking print.
Image of the detail that I want to avoid being seen
Thank you in advance for the time to respond, greetings.
You can use a link to a file that you would like to print, the file will not download:
Print the file
Currently it is not possible to disable the option of saving as PDF.

Save changes on a web page

I want to be able to save the selections I made on a page. If there's an app or extension that can easily do that, please let me know!
I clicked "Inspect Code" to open Chrome DevTools and tried copying all the code under "Elements" and pasting it in another browser. The page is incomplete, however. No graphics, no data, etc. What else do I need to copy and paste over?
I'm on a site/platform that I can only access with an internal login. Once I am there, I am able to make selections from dropdown menus.
Every time I have to pull a certain report, I have to select over 200 institutions from a dropdown menu. The next time I go to the site, I want to be able to see those institutions ticked off already.
Thank you.
Another way to get all of the code from a website is to do Ctrl + u, which brings you to the website's source code. You could use this to copy the code, but you would have to make seperate files and copy the code in them for scripts and links.
You can use wget (and a cookies.txt file with your logged-in cookie) to get the page, it's resources, and convert the links to load from your local copies:
wget --mirror --convert-links --adjust-extension --page-requisites --no-parent --load-cookies=cookies.txt http://example.org
Though I am very curious why you would need to do this...
You could create your own browser extension that checks the boxes for you when the page loads, or you can try to see if this browser extension succesfully captures the part of the page you need.
You could try using your browser's developer tools by right clicking some of the data and selecting "Inspect" or "Inspect element". This will most likely take you to a current snapshot of the HTML page you have open. This you should be able to copy paste to a more persistent format.

What does "the stack" do in Bolt CMS?

I'm using Bolt.cm and when editing a Page or Entry, there is a section on the right called "the stack". On the Bolt site it says
Our Stack functionality contains your latest uploaded files, and allows you to access them as conveniently as possible. So no more searching and no double uploads.
But what does it actually do? I uploaded some images and they are shown on the stack, but I can't click or double-click them, and dragging them to the editor inserts the thumbnail, not the actual image.
The only way I see to add images is to click the editor's image button, then "browse server" and find it that way. So what's the point of the stack?
Good question, I don't think that the Stack is documented anywhere.
I had been neglecting the Stack for some time too, but recently I had to link to downloads (pdfs) in a Wysiwyg field. First I put them on the stack, and then could I link to them via the (chain symbol) link button.
But there's probably other usecases that I am not aware of yet. Anyone?
You have to set images to true under wysiwyg in config.yml to use "the stack." I guess the developers feel that having it enabled opens the editor to "dangerous" behavior. There are worse things the users can do. I was very close to dismissing this CMS because ridiculously enough, it couldn't insert images or embed videos. It can, the developers didn't document this crucial step.
wysiwyg:
images: true

Reload after upload files in html

I have an html form, which can be used to upload files. These files are deleted when the user navigates away into another section. Unfortunately, I'm not seeing what can be done if the user decides to reload the page or close the browser window.
I was trying to use both jQuery's $('window').on('beforeunload') but all I can achieve is a confirmation message.
Does anybody have a better idea?
Thanks in advance
This will be pretty hard as it will be browser specific, IE doesnt support many of the events. for the reload you could add a parameter to the form action like ?refresh=true then check for that. if they close the window you dont have many options. Sorry I can be more help

Is it possible to save changes in Firebug locally?

What I'm trying to do is to save the changes I make to CSS and HTML on different sites with Firebug.
Just to be clear, I don't expect Firebug to upload the changes to the server via FTP or anything. I just want to save the changes locally, so only I will be able to see them.
For example I've seen a few Firefox/Chrome extensions that add a download button under every video on Youtube, so I know it's possible to do that somehow.
If you have a different way to achieve what I'm trying to do, I'll be glad to hear about it.
(It doesn't have to be with Firebug.)
Thanks in advance!
If you don't mind using Web Developer Toolbar it's easy to save changes made to the DOM (and CSS).
When you install the toolbar, you'll get a "View Source" menu, click on that and choose "View generated source". Then just copy and paste that into a .html file.
You did not say if you alter your HTML or CSS, if CSS, FireFile is a very good addon for this.
Edit, with some Googling, i found FireDiff, which states that it can export changes made in Firebug, i have not tested it bit it's worth checking out.
You could try using Greasemonkey.
It has support for adding custom scripts that are run whenever you load a page (linked to which pages it should load on) and that can make changes to the page dynamically.
https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/
The http://chrispederick.com/work/web-developer/ web developer toolbar will let you add a user style sheet to a site which should achieve your goals.
This may or may not be exactly what you're asking for, but you can download the extension FireDiff in order to save changes made with FireBug. I made a little tutorial on how to do it here: https://www.youtube.com/watch?v=m4OmZLX2zd4
I have a somewhat simlar use-case that I solved differently. I'm not sure if it is what you are looking for or not. I'll describe the behavior and if that is helpful I'll explain exactly how I implemented it.
I changed the code that execute when you click "Run" (or Ctrl+Enter) to check to see if the first line of the code is a hard-coded string //LoadFromFile:<file path>. If it is, and the file exists then I pull the file off of the local file system and run it instead of executing the code in the console window. This way I can use an external text editor to write code.