Eclipse. Are there something to have www bookmarks related to project? - eclipse

I want to have bookmarks related to libraries,frameworks used in eclipse project. What is the best way? Only one I can imagine is to have bookmarks folders in Firefox, and nothing in build-in browser.
May be its possible to have url files in project folder, act as bookmarks, with fav icon and opened in build in browser? Then I can import them depending on frameworks used.
I mean any libraries included in project, bookmarks may be created not automatically, I can just copy/import them together with library.
Example, 3 library included:
<!DOCTYPE html>
<html>
<head>
<title>Contact Manager</title>
<script src="dx/dhtmlx.js" type="text/javascript"></script>
<link rel="STYLESHEET" type="text/css" href="dx/dhtmlx.css" />
<script src="/js/jquery-1.7.2.min.js"></script>
<script src="/tinymce/js/tinymce/tinymce.min.js"></script>
<style>
So, in general, I need some buttons/files/anything else, what opens a webpage. And it should be easy to copy or import to project.

Related

TYPO3 v9 admin panel without css styles and js

I have a problem with one of the TYPO3 installations on my server. The whole thing loads but without styles and js. Comparing the neighboring installation on the same server (which works properly), the difference appears in the file paths.
The correct path has a form:
<link rel="stylesheet" type="text/css" href="/typo3/sysext/backend/Resources/Public/Css/backend.css?1571297500" media="all">
In an installation where the whole installation does not work, the path has a form:
<link rel="stylesheet" type="text/css" href="/typo3temp/assets/compressed/backend-0ec6c1600f439ab982e3d6ab38b2463c.css.1574420118.gzip" media="all">
There is no such file in the specified location - only
backend-0ec6c1600f439ab982e3d6ab38b2463c.css
backend-0ec6c1600f439ab982e3d6ab38b2463c.css.gzip
If I remove the fragment 1574420118.gzip from the code, part of the styles is loaded.
The strange thing is that both installations have the same .htaccess file and still generate different code.
Any idea where the reason for this is?
The setting you are looking for is an installation-wide setting called versionNumberInFilename.
It appears you have this enabled in the broken install, but not in the working one.
You can change the setting under 'Admin Tools -> Settings'. If you can't get there, you can change it in your typo3conf/LocalConfiguration.php or typo3conf/AdditionalConfiguration.php file.

I made a new favicon, but whenever i enter in the code from my old website, it immediately goes back to the old one

I was having a problem with my favicon previously, (here is my old favicon http://imgur.com/a/cATBc) (if you cant see it, it is a tiny blue dot in the corner of the screen)
But now, whenever I enter even a snippet of my old code, it immediately goes back to that favicon, even though I deleted all traces of it from my computer and GitHub.
My new favicon is a pug face.
Edit: ANY new website I make now has the old favicon.
Any help?
NEW EDIT: my website files are here: https://github.com/Pugplays42/htmlstuff
Check out the favicon-cheat-sheet from Audrey Roy Greenfeld.
Especially the "Forcing a Favicon Refresh" section:
Clear the browser cache on Windows (Ctrl+F5 or Ctrl+Shift+R) and on Mac (Command + Shift + R).
Also close and reopen browser if IE.
If still stuck, try opening new tab. Or see this question
Temporarily add explicit HTML markup and append a query string. Remove this when you're done:
<link rel="shortcut icon" href="http://www.yoursite.com/favicon.ico?v=2" />
<link rel="icon" sizes="16x16 32x32" href="/favicon.ico?v=2">
For large versioned deployments, if all site visitors need their favicon force-refreshed in an extreme situation:
Add explicit HTML markup (customize the sizes part) and put your version number in the filename.
<link rel="shortcut icon" href="/favicon-v2.ico" />
<link rel="icon" sizes="16x16 32x32" href="/favicon-v2.ico">

How can I make eclipse to give me a code that I made as a sample code?

When I made a source file in eclipse,
Eclipse gave me a sample code in it.
If i make a HTML file in Eclipse
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
</body>
</html>
Sample code like this came with code file.
I want to change this sample code.
How can I make eclipse to give me a code that I made as a sample code?
Open Preferences > Web > HTML Files > Editor > Templates.
Choose the appropriate 'New HTML File (xxxx)' template and click 'Edit...' to change it.

wrap code in notepad++

I love notepad++ but I dislike when someone sends me an .html or .xml file and the entire code is on one line. Is there a plugin or program that will take a one like code and indent it correctly on multiple lines?
Example:
<html><head><title></title></head><body><div></div></body><html>
<html>
<head>
<title></title>
</head>
<body>
<div>
</div>
</body>
<html>
There is an HTML tidy plugin available that correspond to your need. You can also install the TextFX plugin which adds a bunch of other enhancements.
There's a plugin named XML tool which does the pretty print for you.
Use Plugin Manager (Menu Plugins->Plugin Manager) to install it.

PhpStorm code completion and non physical file path for CSS and JavaScript

Using minify, instead of including the individual CSS/JavaScript files directly, I have something like this in my HTML file:
<link rel="stylesheet" href="/min/g=css8" type="text/css"/>
Autocomplete for CSS or JavaScript doesn't work in this html.
I tried looking for ways to be able to specify the individual files to PhpStorm to use in autocomplete, but could not find any option. Suggestions?