How can I plug config.json back into http://getbootstrap.com/customize? - twitter-bootstrap-3

I used http://getbootstrap.com/customize to build a customised colour scheme and the like and then downloaded the .zip using the button at the bottom of the page.
I see there's a config.json in that .zip; how do I plug that back into http://getbootstrap.com/customize if I want to further customise my bootstrap setup at a later date?

The Bootstrap Customizer currently lacks that feature. It's an open feature request:
https://github.com/twbs/bootstrap/issues/11004
That said, if you note the URL that your browser navigates to after clicking the "Compile and Download" button (e.g. http://getbootstrap.com/customize/?id=9652496), going back to that URL later will auto-load your settings. There's another open issue about having the Customizer include that URL in the generated files; see https://github.com/twbs/bootstrap/issues/9951

Related

How to redirect console output to text file in intelliJ

i wanted to redirect console output to a text file as in eclipse we can redirect it to some text file can we also do it in inteeliJ?
Yes, it is possible to do this. When you run the main class in IDE, there will be an option for edit configurations something like the image below:
Click on the edit configurations option. Now, Navigate to the Logs tab and redirect the output in the file as shown below.
Click on the Apply button. Now your application log would start coming in the file.
Hope this helps.

how i can add a vue template in exist project

how i can add a vue template like this :
vue-paper-dashboard
in my vue cli project
i want just add it in specify route like :
/admin/
in documentaion just write about run demo
but its folder like a complete project and i dont know how i can add it to specify part of my project
If I understood you correctly what you can do to is right click on the vue-pager-dashboard and inspect so the developer tools shows up. When the developer tools shows up click on the sources like the picture below
After that you will see webpack you can go in there and see how they made their files and designed the dashboard so you can from there work your way and copy the important parts that you want in your project. In the (. dot) folder you can see the routes plugins etc.. and in the src folder you can see pages components well in both folders you can see the components. So this is the way you can do it but if it isn't as you asked or didn't help you out be more specific with your question.

DNN Content slider module not working

I am using DNN 8 and i need slider for the home page. I have did extensive search about this on internet and i found Content Slider module.
I have added this module in the page and when i add content slider module a message appears in the pane like below
No content sliders have been created yet. Please use the Actions Menu
to create a slider.
So i used action menu to add slider, when i click Add Slider option from the action menu i get the error like below image.
Click image to see error
Not understanding what to do. So please any help me to solve this error.
This is a bug related to DNN8 deprecating support for older controls. If the module is open source you should download the source code and add references to DNN8 so that you can recompile it to get the proper references.
Steps:
Setup your development environment (link)
Download Source Code (_source) version of the module
Install _Source package via the Host/Extensions page (link)
Open the CSProj file in Visual Studio 2015
Remove reference to DotNetNuke.Web
Add reference to DotNetNuke.Web.Deprecated (found in the website's BIN folder)
Compile in Release mode to package (assuming the module supports my BUILDSCRIPTS)
Install the created _INSTALL file to your production DNN site
If the module doesn't use my BUILDSCRIPTS just compile and copy the DLL generated to your production website BIN folder
Chris

How to run .html File from WebStorm

We do unit tests via .html files so that we can interact in a web form also. We also just run the dojo test runner.
I have been able to run the .hml file from Aptana but when I try webstorm for the first time, never tried it, love this IDE, I see that when in my .html file the run button at the top is disabled.
So how do I run an .html file that's got markup and javascript from WebStorm and have it come back and hit my debug points inside Webstorm? Does webstorm scrape in what you see in FireFox also or do you have to keep toggling back and fourth such as when you step to the next debug point, tab back to the browser to see the results...or is there a nice way in webstorm to see the markup in runtime at the same time?
All in all I am just trying to get this .html file to run that's got javascript in it and some Dojo runner, etc. in it since I'm using Dojo in this .html file.
Either just open it manually or allow debug from localhost port.
So appearnetly it's not obvious to open a file in WebStorm there is a row of icons that appear in the top right corner of the text editor pane.
You have to hold SHIFT down when clicking the supported/installed browsers icons hidden there, or it will open in the deployment's location (via FTP server settings etc).
Try ALT-F2 for Preview file in... from "View" menu.

handling events in Package explorer Eclipse

I want to stop user from modifying selected file in the package explorer while my plugin is running.
A custom message should popup if the user tries to change the file.
Implement your own editor launcher (IEditorLauncher), which would show this message and associate it with the files you don't want to be modified.
See an example in this SO question.
Another possible approach is to simply now show these files in Package explorer (similary to hiding .class files by Java plugin).