How do I add referrer data in query params or link data in Branch io link? - branch.io

Suppose I have placed a branch link on my website example.com/outer/inner. This link leads to another web app. I need to know that the link was clicked on example.com/outer/inner.
How do I get this information?

You can add analytical tags to your original link that will indicate the source of the click. Please check https://help.branch.io/using-branch/docs/creating-a-deep-link#analytical-labels
You can add these labels when creating the link and if you want to append it to an existing link you can add additional analytical label as link query parameters, check the doc on Branch long links here https://help.branch.io/using-branch/docs/creating-a-deep-link#long-links

After much research, I could figure out that you can add the referrer as a parameter but that is only useful if you use the branch link at one place.
Branch can not identify the link on its own.

Related

Creating a Table of Contents in Share Point Wiki Program

Hey I am not sure this is a question for this site but I am making wiki pages in a share point for my job but I notice they all just accumulate with no table of contents. Im wondering is there a way to make a table of contents page that allows the user to see all of the wiki pages made and allows them to click on the link to the page.
Thanks in advance!
do you mean that you want to see all the pages?
simply go to the all pages view, like this: http://sitename/LibraryName/Forms/AllPages.aspx

Google calendar feed link does not respect the parameters

I try to use this link to show the upcoming events but there is not respect my params form link have anyone any idea how to fix this? It is showing the whole events. Even the past ones
https://www.google.com/calendar/feeds/mariushincu0%40gmail.com/public/basic?singleEvents=true&orderBy=startTime&timeMin=2015-04-25T00:00:00Z
As I said previously this is the same as the previous post in as much as you need to change the parameter "timeMin" to be "start-min"
Therefore the answer for your URL is
https://www.google.com/calendar/feeds/mariushincu0%40gmail.com/public/basic?singleEvents=true&orderBy=startTime&start-min=2015-04-25T00:00:00Z

Dynamic Div placement based on number of values in a list

I want to be able to change the design of the website based on the content in my database. For example: I have a list of instances of objects that is being pulled from a database, and will be used to populate my website. I want the website to look similar to www.reddit.com, where there is a <div> for each post. However, I can't figure out how to variably change the location of that <div>. So for the first instance of that object it will be located at top:60px; the second top:200px; etc... (not those exact numbers). If you need any clari
Was looking for some help! Thanks,
Figured it out! I added a variable that I then used to define the "top:" in the html of the template. If anyone wants me to explain further please let me know.

Personalized web parts summary links

I would need to have a personalized summary links web part in a given page.
So when a user logs into the site, he should see his own links as opposed to system wide links inside the links web part.
Is it possible to have a personalized summary links web part?
How would that work?
Thanks in advance.
W
Here's what you can do:
Add a User column to a standard links list.
Create a new view that shows only links of current user (use [Me] marker as column value in filter).
Modify the Web Part to use the new view.

How to create MSDN like links in Sandcastle documentation website?

I've generated a website documentation of my project with Sandcastle. This website uses frames so when I click though sites my URL in browser does not change.
I would like to have URL changed in browser when I browse through website documentation generated with Sandcastle. Why? Because I would like to link to concrete subpages of documentation from other parts of my developer environment.
And further more I would like to have this links permanent. So when I generate once again documentation from new version of my project, links will not change so that I will not need to change all links to new.
Is this possible and how to acomplish this?
If you add the code below to the top of SplitScreen.js the browser will "inject" the TOC frame and focus on the content you linked directly to (using the trick Vitaly Shibaev showed).
if (window==top) {
window.location = "/?topic=" + (window.location.pathname.substring(1));
}
This code works it the documentation is placed at the root of your website - if you have it in a sub-folder you need to expand on "/?topic" and remove the sub-folder part from the pathname part.
With this change you can use the "direct links". I also expect people who find you via Google get a better experience (getting the content they searched for AND the TOC bar).
In order to create correct links to specific subpages of documentation you may use similar request: $DOCUMENTATION_ROOT$/Index.aspx?topic=html/$TOPIC_ID$.htm
E.g. http://www.ewoodruff.us/shfbdocs/Index.aspx?topic=html/8dcbb69b-7a1a-4049-8e6b-2bf344efbbc9.htm
instead of http://www.ewoodruff.us/shfbdocs/html/8dcbb69b-7a1a-4049-8e6b-2bf344efbbc9.htm
Vitaliy and mawtex have solved the 'how to link to documentation subpages' part of your question.
The "making links permanent so they do not change when regenerating documentation" part of your questions is solved automatically, since the html file names created are based on a hash of the topic name by default. I.e. If you do not change the part of your code that you are documenting, then it will use the same file name.
You can change the way that html file names are generated, but all given methods are based on the member name or a hash of the topic ID, so links shouldn't break if the code hasn't changed.
See Sandcastle Help File Builder's NamingMethod documentation for more info.