I have downloaded craftercms and now following Getting Started guide. But I don't see any blueprints in the blueprints dropdown. How can I get and install blueprints?
You can download the blueprints from here https://github.com/craftercms/studio/archive/v2.5.3.zip. Blueprints are located here: src/main/webapp/repo-bootstrap/cstudio/blueprints/ within the file.
Now you can move the wanted Blueprint in the /cstudio/blueprints/ folder within your local repository
Related
I'm looking to this documentation, I've already download the anychart extension but I cannot find these files (or even the "lib" folder mentioned) in either a desktop or enterprise installation.
https://www.anychart.com/blog/2019/01/16/qlik-data-visualization-custom-drawing/
Is there anyone found these files/folders? or successfully created a custom theme for the Anycharts qlikSense extension?
Haven't done the custom theming with Anychart but regarding the paths ...
QS Enterprise
Once an extension is uploaded to Qlik it is stored into the static content folder.
You'll have to access this network path and navigate to the extensions folder, find your extension and add the files there
QS Desktop
The path shown onto Anychart page seems correct to me. If the installation is done in the normal way. In the enterprise world i've seen that some companies are installing QS Desktop in different path. So if you are using QS Desktop in a company environment it is possible that the Qlik folder is located somewhere else (and not under c:\Users\<USERNAME>\Documents\
I've written a custom FileSystemProvider for VS Code.
When I open the files/folder with my custom FileSystemProvider's schema it works as expected and the files are shown in the workspace explorer.
But even though the files/folders are listed in workspace the following options of vs code are not working anymore for the custom file provider
Quick File Navigation (Ctrl + P) is unable to find the files in my workspace provided by custom FileSystemProvider
Find/Replace - Find replace is also unable to find the contents from the files in the workspace provided by custom FileSystemProvider
Find Symbols/ Declaration/ Definition are also not working
Is there a way to register my custom FileSystemProvider's schema also to these tools?
Remark : My custom FileSystemProvider directly uses the files in the local disc and it uses vscode.workspace.fs to read directories and files from the disc. It just hides few files and directories provided from the disc.
This is already known and there is an proposed VS Code API FileSearchProvider available to fix this.
The API is planed to be stabilized in Stabilize FileSearchProvider API #73524
I am trying to start a new project with Web Starter Kit from Google. Thing is if I add another script alongside the main.js, then it doesn't seem to be compiled to dist folder, nor included inside the main.js
Any ideas?
In `gulpfile.babel.js
"Since we are not using useref in the scripts build pipeline, you need to explicitly list your scripts here in the right order to be correctly concatenated"
I currently have an application that runs from the desktop, but I would like to make it deployable from web browsers using JNLP. How do you go about setting up jnlp for an application? Are there any examples that go more in depth then a hello world?
So I ended up following this reference http://www.oracle.com/technetwork/articles/javase/jnlp-142088.html to build my jnlp. On a side note to add more jars etc all you need to do is list more jar tags and tag one as main. Use this to reference the structure and required tages https://docs.oracle.com/javase/tutorial/deployment/deploymentInDepth/jnlpFileSyntax.html#extension
I have created a web part using VSeWSS 1.3. It creates a wsp file and my web part gets installed, everything works great.
I would like to also create a folder in the LAYOUTS directory of the 12 hive and place a couple files in there. How do I go about doing this? I know that I can manually place the files there, but I would prefer to have it all done in one fell swoop when I uses stsadm to install my solution.
Is there a best practices guide out there for using VSeWSS 1.3 to do this? They changed a bunch of stuff with this new version and I want to make sure I don't mess anything up.
You can create a new folder structure in your webpart project, like:
Templates/Layouts/CustomFolder and put your files in the CustomFolder directory and include them in your project.
When you go to the WSP View in Visual Studio, you can see in the manifest.xml that your files are being included in the deployment.
I have done this successfully on multiple projects now.
In case anyone is wondering, the VSeWSS 1.3 user guide is incredibly helpful. It is installed to the same directory as the tool itself, default in C:\Program Files\Microsoft SharePoint Developer Tools 9.0\VSeWSS13.CHM
You can see a working example with screenshots Here
A simple step-by-step tutorial for the above, along with deploy/retract scripts is here at Add New Files To 12-Hive Through A SharePoint Solution. Just follow the steps and in a few minutes you'll be able to add whatever you want to the 12-Hive!