How to modify the lotus notes hyperlinks from Sharepont Search - html

I'm able to crawl lotus notes databases and have the results appear in my search results using sharepoint search server.
The problem I'm having, though, is that the results contain links that send me to a blank lotus notes document.
In sharepoint I have defined my content source as C:\lotus\notes\databases\ where all of my databases are stored. After a full crawl I can do a search and my results appear this way:
notes://domino_server/database.nsf/($defaultview)/<document_id>
I've narrowed my issue down to being the ($defaultview) included in the link.
My questions are, where is this value coming from, and how can I change the results and links being provided?
Some of my research has stated that I want to modify the html web part, but I have no idea how to do that or where to do that.

You have to set one view to "default view" in your Notes database. It works like an index of all documents in database.

Related

parsing dynamic website but can't find request

I am trying to parse this website:
https://www3.wipo.int/branddb/en/#
and get trademark data based on certain search conditions (for example, getting trademarks which contain certain "love the"). It is a dynamic website so the url doesn't change when I search. I am trying to follow the steps in this stack overflow answer:
Crawling data but the url doesn't change
The answer mentions that after clicking on search button, the network tab on dev tools in browser will show an XRH request and then I can do further JSON parsing on it. I can't find the request for this website (it shows about 20 different requests in network tab though, none seem to change with my query). How do I go about parsing this? Also, could you share what to do after finding the correct request?
Thanks a ton

OneNote REST API - How can I reorder pages or sections?

I am using the REST API via PHP and iOS to generate multiple notebooks with default sections and pages based on data obtained from a MS SQL server (patient database).
Each patient has their own notebook and a days worth of notebooks are generated (or updated) at the beginning of the day. For efficiencies sake a curl multi wrapper is used (RollingCurlX).This works fine but the order the sections and pages get processed (and completed) is somewhat random.
Is there a way to reorder the pages or sections similar to what is available in OneNote itself?
This is supported by OneNote API now.
UpdateHierarchy Method
Description
Modifies or updates the hierarchy of notebooks. For example, you can
add sections or section groups to a notebook, add a new notebook, move
sections within a notebook, change the name of a section, add pages to
a section, or change the order of pages within sections.
ref:Application interface (OneNote 2013)
Currently this isn't supported by the OneNote API. Pages and sections should be ordered in the order you create them.
https://dev.onenote.com/
I suggest you create a new suggestion in OneNote API's user voice:
https://onenote.uservoice.com/forums/245490-onenote-developer-apis/filters/top
You specifically should ask for two things:
OneNote API should support updating/specifying section order
OneNote API should support updating/specifying page order

Mediawiki to display different links to different geographic locations

Scenario: An intranet site is accessed from two different countries through different site names. We use mediawiki as knowledge base and wish to reference this intranet site. mediawiki is used by teams in both countries.
Currently we are providing two different URLs in the wiki. example:
Country one: ur1.in.intranet\hello\world
Country two: ur1.en.intranet\hello\world
Problem: How do we ensure that the correct (accessible) intranet site address is presented to the person accessing from each country?
I have tried to find information using wiki templates. Say, while authoring, all users must use a specific template {{Intranet_Page | < URL >}}
In the template, a code could check the IP of the accessing user and determine which site name has to be used. I was unable to find the right special word for finding the IP. :(
Is there any way... PHP modifications / Templates / others?
It's not quite clear what you want. If I understand correctly you want a wiki page to contain a link to an external website, which exists in multiple variants depending on country. The page should be served to the visiting user with the link rendered in the correct country variant.
This is similar to the issue of linking a translatable page but redirecting the user to the user's (interface) language's subpage thereof. To do so, MediaWiki core provides Special:MyLanguage, a redirect special page.
A redirecting special page is the easiest solution for such issues because:
the page HTML doesn't need to vary based on each parameter (in your case country) but can be cached identical;
you gain a canonical URL for the resource, which is the same for everyone to link and yet brings everyone to the correct variant.
See https://www.mediawiki.org/wiki/Manual:Special_pages on how to make a special page and https://www.mediawiki.org/wiki/Extension:GeoIP or similar to extract country from IP.

Adding a Excel Table to the end of a Sharepoint site in access

So I have a table on a sharepoint site that another party updates with new items (spreadsheet style)
I also (currently) have an excel sheet that has reviews of each item that is on said sharepoint site.
The trick is things are added and deleted from the sharepoint site and I need to be able to track what is added and what is deleted so I know what I need to review. Orginally I did this on excell but I had to realign the reviews when things were added or taken out of the sharepoint site (a lengthy process) so someone suggested access but I am having issues trying to find a good tutorial that answer how I could do this.
my thought was to create access database that imported the columns from the sharepoint site and that I could just append more collumns to the end of it to add in my review comments. Would this work?
ultimately I would like to have my reviews put up on another sharepoint site.
Sharepoint can send emails when things change.
If you want to know how to see sharepoint data in MsAccess you can see sharepoint-msaccess-synchronization:

Differentiate between types of open graph object pages

One of our applications uses open graph tags so that when users like or comment on a page, the resulting feed story is rich with content, images etc.
Another part of our application (the web platform side) allows users to connect to a Facebook profile page so they can manage the wall, add apps to their profile page etc.
Trouble is, by calling /me/accounts, you get all open graph objects that user has rights to and not just the proper profile pages.
Is there any way to differentiate between types do the users don't have potentially thousands of pages to sift through when they want to connect to their profile page? For example, in Facebook, if I click "Use Facebook as a Page" in the top right drop down, that list is filtered to be just the profile pages and not every single open graph object I'm considered an admin for. How can we get just that list of pages?
you can use FQL for that, the following query should give you relevant info:
SELECT page_id, type
FROM page_admin
WHERE uid=me()
AND type="COMPANY"
hope this helps