I am thinking of creating a user macro. I've been searching and I've seen in the codes quite a lot
$action.dateFormatter.getCalendar()
I've tried to output that and it seems to get the current date and time. Question is how do i display it in a an acceptable format like "MMM DD YYYY HH:mm:ss"
Also, i think this works but more like a clock. - $content.currentDate
Is there a way for me to make it function like a date and time stamp?
A simpler approach might just be to use the commenting system.
I like this approach. Update the page, put in a note that says "I put in this macro" in the diff message.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes. The commenting may work like a time stamp however this will be displayed in Comment Threads within the page along with the other comments. What we want to do is to place the time stamp in a table which will display the review summary.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think what Matthew was suggesting is that you users put the message in the "What did you change?" box next to the save button. These message are stored in the page history in a neat little table.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1. Define user macro (ex. macro name: "current-datetime"):
$action.dateFormatter.formatGivenString("dd-MMM-yyyy hh:mm:ss", $content.currentDate)
2. Add it to some page like: {current-datetime}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
1. Define user macro (ex. macro name: "current-datetime"):
2. Add it to some page like: {current-datetime}
$action.dateFormatter.formatGivenString("dd-MMM-yyyy hh:mm:ss", $content.currentDate)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Would it not be simpler to just create a user macro that prints the last modfication date of the page?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That is by using the metadata correct? It is also ok to print that. But what my user wants is something that does not update everytime the page is updated.
This is so that you can just placed it after reviewed by >Insert User< last >Date Stamp Macro<
and then the next user can add another one.
reviewed by >Insert User< last >Date Stamp Macro<
such that the macros display the last time they review it or updated the document and not just the latest data.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sadly this solution would mean it updates every time the page is updated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the dateFormatter's formatGivenString() method to specify a format:
$action.dateFormatter.formatGivenString("dd-MMM-yyyy", $some_date)
There are also other methods you can use. Here's the API docs on it:
hth,
matt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually, I'm already fine with $content.currentDate. It gives a complete Date and Time output. The thing is, everytime I refresh the page, so does its value.
What i need is a Date Stamp. Such that once I add it up, it becomes a static content on the page.
Is it possible with User Macros?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Armon Tiongco1 did you manage to find an answer to your question ? (What i need is a Date Stamp. Such that once I add it up, it becomes a static content on the page.)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@marco_molteni Just in case you're still interested in an instrument to record the date and time on your Confluence pages, you can easily do it with our Handy Timestamp. It's one of many other macros in Handy Macros for Confluence.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.