I am creating a blog page in CQ5.6 (AEM). Rest apart, once I publish the page and it is visible to public, how will I be able to delete/moderate derogatory comments, if needed ?
I do have the option on the author instance by right clicking and deleting the comment. But I am not sure how it works on the publish instance.
When you delete (or deactivate) content on the author instance, this polls the attached publish instances to remove the content there. This helps too, if you have more than one publish instance attached to an authoring instance.
The docs mention the actions that you can take within the comment moderation workflow & how they'll affect the content on the publish instance:
Approve Comment:
The comment is displayed on both the authored and the published page.
Delete Comment:
The comment is removed from both the authored and the published page.
Ignore Comment:
The comment is displayed on the authored page and removed from the published page.
Replication from author to publish will handle deleting the comment on the publish node.
user posts comment on publish node2
reverse replication brings comment to author instance
Author reviews comment on author instance
replication pushes result to all publish nodes (either add comment node to all, or writes empty node, which is effectively a delete node)
Related
When I go to Overview->Wiki I see a new doc form:
When I remove selected part of the URL (see selected URL on 1st photo) then I'm forwarded to home page:
How to set 2nd page as initial?
During my test, I was able to reproduce your issue.
In my wiki, usually I will be navigated to the Project Wiki, and when I enter the code wikis below, especially those that have nothing inside, like my "testwiki" below. I would also be trapped in the same loop as yours until I edit the url with "dev.azure.com/abc/xyz/_wiki/wikis/projectname.wiki".
So I tried the rest api to delete the empty wiki, and I am able to jump out of the loop by myself.
DELETE https://dev.azure.com/{organization}/{project}/_apis/wiki/wikis/{wikiIdentifier}?api-version=7.0
Some users were created with the wrong name and these users have been using the fossil for a long time. Is there any way to modify just the name that is displayed on the timeline? I know I can create a new user, but I would prefer to just change the name that is displayed.
I would like "maMaco" to be displayed as "maLaco"
(A long-time fossil contributor here.)
The user name is baked into the checkin manifest but a checkin can be "amended" at any point, in which case that name will be used for the timeline entry of that checkin:
fossil amend --author maLaco A_CHECKIN_HASH
All artifacts in fossil are immutable, so amending does not change the checkin. Rather, it effectively adds a note which says, "this is an amendment to the given checkin." (The amendment itself is also an immutable artifact.)
Changing the name long-term requires using the desired name when you check in.
Edit: for future reference: you'll get more much timely responses over in the fossil's own forum (just follow the forum link on the home page). Posting may be done anonymously, it doesn't require creating an account, but anonymous posts must await approval from a moderator.
There is a manual https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue
and I cannot complete the 4th step because I cannot find "Linked issues".
just write #issue number in pull request description to link the isuue
you can also write fixes #issue number closes #issue number to automatically close an issue when your pull request is accepted and merged
if you are the owner of the repository you can link an issue by clicking the setting icon in the Linked Issues on the right sidebar but if you are an outside contributor then you cant use it to change or link any issue you can only see which issues are linked
I was able to see all details of activities on GitHub, such as who made a pull request, who put a comment on the pull request, etc. But for some reason, once I navigated out of that page a few days ago, I was never able to get back to such a page and find it again on GitHub.
(The "pulse" doesn't have such info as it is a higher level summary.)
How can the detailed activities page be shown on GitHub?
P.S. with the greatest effort to find it, it turns out the page might simply be https://github.com but it lists all repos that I was involved in previously, instead of just the repo I want to look at. So I wonder if there is a way to see what https://github.com is listing except it is for a particular repo only.
That pretty much sounds like the "Notifications" page. When logged in, click on the "Bell" symbol top right; you'll be taken to
https://github.com/notifications
Is there some way to get an RSS feed for one's github stars list?
I want to get it into Pinboard via IFTTT.
The current answer here gives the stars as JSON rather than RSS. Here's how I get my GitHub stars through the IFTTT RSS service:
Use the "New feed item matches" trigger
Enter your GitHub user RSS feed:
https://github.com/csu.atom
Set the "Keyword or simple phrase" that IFTTT will use to match items to:
[your username] starred
For example, my filter is set to csu starred (the word "starred" alone would probably work, but then the trigger might also fire on some false positives, like if a repository name or something else includes the word "starred").
Add whatever action you want to happen whenever this trigger fires. The link to the starred repository is in the {{EntryUrl}} variable and the title is in {{EntryTitle}}.
Your Github stars are available in JSON at a URL like this: https://api.github.com/users/username/starred (sub in your own username of course)
I found this Yahoo! Pipes thing to turn your stars into an RSS feed.
The Yahoo Pipes service has shut down, and IFTTT apparently dropped the stars trigger from their Github channel. So I went and created the same thing in my own Huginn instance, using a Website Agent and a Post Agent.
IFTTT now has this option. All you have to do is create a recipe.
Just put the "New Starred Repository" for THIS. And then do the appropriate steps for Pinboard for THAT.
EDIT
So apparently it might not work anymore, maybe, however on browsing the recipies I found this, which probably does work so try it, just remember to edit it for your github username
I've combined the SiftRSS service (https://siftrss.com/) with https://github.com/username.atom activity feed the OP mentioned. On SiftRSS I filter the activity feed with a /\bstarred\s\w+\/\w+/ regex on the title attribute. Works flawlessly but is dependend on a third party service, if one needs to self-host, I would also recommend using Huginn as #larcher already mentioned.