Is it possible to view a list of all documents written by myself in Confluence? - confluence

Alright, I wrote many documents in Confluence. Now I want to reread one of my document, but it's in a long list of documents written by my team.
I think it would be faster to find the document if I can view a list of all the documents written by myself, but is it possible? How?

Go to "People" link in your Confluence site and search for user name. Click on your name returned in search result and it will take you to your "Activity" page. Below link is from Confluence latest version.
https://confluence.atlassian.com/doc/search-the-people-directory-201706.html#SearchthePeopleDirectory-Searchforpeople

In a Confluence page click the + icon and select Other macros:
Select the Content by User macro
Add your username and select yourself.
Then save and view the page. You should see a list of every page created by you (or any user entered).
Note: This will also show you images uploaded seperately, so you may have to filter a bit.

Related

Google Custom Search - filter data from within a page

I am using Google Custom Search to enable users to search within my website. I have one page that displays a list of references (to scientific publications) as well as other content (dynamic). I would like to display the results so that references including the search term are filtered into their own tab - but I can only see how to label a whole page, not just a section of a page. This means I can filter for 'references', but get other content in my results, not just the references. Is there a way of doing this?
Yes, its possible I suppose. And I had done it sometime back and it had worked as expected. Have a look at these links -
Tech Republic Set up Google Custom Search and
Google Custom Search

Tag users in Facebook post without using drop down

I manage a large Facebook group and once a year we need to delete a big chunk of users. I have already generated a list of these user names and their Facebook IDs, but now I want to copy-paste these IDs into a Facebook post and have the users be automatically be tagged - I don't want to go through the drop down menu that appears when you type #. (This way I can say "If your name is on this list, you will be removed" and know that the users will be tagged by facebook and will receive a notification.)
I have tried various things like #[user-id] in my post but nothing seems to work. I followed an old article suggesting something like ##[user-id:0:text] would work, but Facebook apparently patched this.
Can anybody help me figure out if it is possible to copy-paste a list of names (or ID's, or a combination with the # symbol and any other formatting) and have those names be automatically tagged in the Facebook post? I really want to avoid typing the first few characters, pressing TAB to complete and tag the name, and repeating hundreds of times.
Thanks.
Edit: Tried doing this more recently and the issue still exists. I know you can press ESC to drop out of the name popup but that doesn't work when trying to do this programmatically.
Having problems with tagging a photo when FB offers you a drop-down list of potential names? Here is the solution. Continue writing the name you have in mind. Instead of pressing RETURN right away, press ESC. The drop-down list of suggestions should disappear. Now you can press RETURN.

How to show facebook comments box multiple times on a page?

I have a page for a bakery site, and on the page, there will be a list of cakes. There will be a picture of the cake, followed by a comments box, to let people comment on that specific cake. Each cake will need to have its own set of comments, separate from each other.
But unless I'm mistaken, facebook comment plugin is linked to a page's url, and can't be shown multiple times?
Is there any way to show it multiple times per page, and to link it individually to each cake, so the comments don't mix up?
But unless I'm mistaken, facebook comment plugin is linked to a page's
url, and can't be shown multiple times?
It can be shown.Though it is linked with your site url,you always have the privilage of appending custom string after the ternerary operator in your URL.
Is there any way to show it multiple times per page, and to link it
individually to each cake, so the comments don't mix up?
The trick here is to make a url unique.
This can be done in various ways:
1)www.something.com#commentbox1
2)www.something.com?section=commentbox1
I am using this on my current website where there are more than 10 comment boxes:http://www.arrowlife.com/
In addition to unique anchor tags per product, you may also add the product ID in a query string such as www.yoursite.com?productID=44
In my case I was dynamically creating a div showing the product detail. It was also necessary to force the Facebook script to show the comment section using the FP.XFBML.parse command

Display a word Doc with visualforce page

I want to know what can i do to display the content of a word document, that is in an "attachment" or a "content", in a visualforce page. I not only need to see the text but also have the ability to edit it.
This will not be possible without ActiveX. The only possible solution is to have them edit and upload back. Here is something I would implement:
1. Use documents instead of attachments/Content
2. Create a VF page to display the shared documents/own documents (hyperlink in VF to the doc. record)
3. Create a link to document to view/edit it. (Custom Apex Dev.)
i.e. Using Page Reference, redirect them to '/servlet/servlet.FileDownload?file=IDofthedocument'
I think this should be good enough to not to show the main documents tab (if you dont want the users messing around with the data) and get the functionality working.
I can post the code if required. Please let me know if this helps!

Sharepoint 2010 Custom Form for document send to option

Good Day!
I have a project on Sharepoint 2010 which requires the following:
1) Under the document settings, there is a "send to" option, I need to be able to add a location to that "send to" which will access a custom form.(Thinking ASP form?) but the question will be how to add that form to the options..
2) This custom form must be able to display the file structure of another site collection's document centre(There are about 19 document libraries in that site collection) and the user will be allowed to select the location to add that document to.
I'm thinking something like reading through the site collection's document libraries and building a file structure from there.. (Will this work? worried about performance as it has to read every time the form loads)
3) After confirming the location, it will direct the user straight to the submit document form(Sharepoint 2010 OOB) of that folder.
I'm hoping there's a certain URL I can pass through that will link it straight there! or at least pass a string value that accesses the folder
Thanks guys for reading through!! : D I know its quite lengthy..
This blog post looks like it might explain how to do what you're looking for.
http://sharepoint.microsoft.com/blogs/GetThePoint/Lists/Posts/Post.aspx?ID=22
You can pass it to a "In Transfer" Document Library that has an event handler or workflow acting upon it that triggers when an item is added, allowing you to add forms and such as needed.