Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
The source code will be released soon. This package is also open for collaboration, so get in touch
Project looks great as a starter kit , liked it , Would luv to see the source code :)
Hi guys,
Source code is available on http://ubootstrap.codeplex.com/SourceControl/list/changesets
Cheers,
Jorge
Still no source code for the version 5?
Hi Kim,
There is an experimental version for Umbraco V5 available for download. Get the nuget package or grab the code from https://bitbucket.org/jorgelusar/ubootstrap-for-umbraco-v5. Demo in http://bsv5.jlusar.es/. Check http://jlusar.es/ubootstrap-for-umbraco-v5 for more info. There also a forum for uBootstrap for V5 in http://our.umbraco.org/projects/starter-kits/ubootstrap/help-using-ubootstrap-for-v5.
J
Hi Jorge.. the search in uBootstrap is open to script injection.. try entering in your 4.7.1 demo...
could that be fixed by validating request in the base page..
Tom
Hi Tom,
Thanks for letting me know. Yes, it could be fixed by setting the ValidateRequest to true on the MasterPageBase, example:
public class MasterPageBase : MasterPage { protected override void OnInit(EventArgs e) { ((umbraco.UmbracoDefault)Page).ValidateRequest = true; base.OnInit(e); } }
or simply removing the Inherits="Bootstrap.Logic.UI.MasterPageBase" from the Public.master
Another option would be to decode the request in the Search.cshtml, example:
var searchTerm = HttpUtility.UrlDecode(Request.QueryString["q"]);
Or strip the tags like
var searchTerm = Library.StripHtml(Request.QueryString["q"]);
Cheers
Thanks so much Jorge,
I appreciate your replies!
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Where is the source code?
The source code will be released soon. This package is also open for collaboration, so get in touch
Project looks great as a starter kit , liked it , Would luv to see the source code :)
Hi guys,
Source code is available on http://ubootstrap.codeplex.com/SourceControl/list/changesets
Cheers,
Jorge
Still no source code for the version 5?
Hi Kim,
There is an experimental version for Umbraco V5 available for download. Get the nuget package or grab the code from https://bitbucket.org/jorgelusar/ubootstrap-for-umbraco-v5. Demo in http://bsv5.jlusar.es/. Check http://jlusar.es/ubootstrap-for-umbraco-v5 for more info. There also a forum for uBootstrap for V5 in http://our.umbraco.org/projects/starter-kits/ubootstrap/help-using-ubootstrap-for-v5.
Cheers,
J
Hi Jorge.. the search in uBootstrap is open to script injection.. try entering in your 4.7.1 demo...
could that be fixed by validating request in the base page..
Cheers,
Tom
Hi Tom,
Thanks for letting me know. Yes, it could be fixed by setting the ValidateRequest to true on the MasterPageBase, example:
or simply removing the Inherits="Bootstrap.Logic.UI.MasterPageBase" from the Public.master
Another option would be to decode the request in the Search.cshtml, example:
Or strip the tags like
Cheers
Jorge
Thanks so much Jorge,
I appreciate your replies!
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.