Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions assets/js/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,16 @@ document.addEventListener("DOMContentLoaded", function () {

function getTooltipContent(status) {
const statusMeanings = {
Draft: "⚠️ Initial stage of the HIP process.",
Review: "📖 Ready for Editorial Review. Subject to changes; feedback appreciated.",
Deferred: "⏸ Addressed in another HIP. Paused in progress.",
Withdrawn: "🛑 Withdrawn by the Author(s), finality achieved. Can be resurrected as a new proposal.",
Draft: "✏️ The formal starting point of a HIP. Currently being drafted and not yet ready for review.",
Review: "📖 Ready for review by the community and HIP editors. Subject to changes; feedback appreciated.",
"Last Call": "📢 Final review window (typically 14 days) before moving to Hiero TSC approval or Approved status.",
Approved: "✅ Standards Track HIP approved by Hiero TSC, or Application HIP approved by community. Awaits Hedera review if needed.",
Final: "🎯 Standards Track HIP with reference implementation merged and code released.",
Active: "🌟 Process or Informational HIP that is currently in effect. Can be Withdrawn or Replaced.",
Deferred: "⏸️ Not currently being pursued but may be revisited in the future.",
Withdrawn: "🛑 Withdrawn by the Author(s). Can be resurrected as a new proposal.",
Stagnant: "🚧 No activity for 6+ months. Can return to Draft by Authors or Editors.",
Rejected: "❌ Not accepted. Rejected ideas are recorded with reasoning.",
"Last Call": "📢 Final review window before 'Accepted'. Subject to change if issues found.",
"Council Review": "⚖️ Under Council review. Awaiting approval, subject to feedback.",
Accepted: "👍 Went through 'Last Call' without content changes. Ready for implementation.",
Final: "✅ Implemented in code and released.",
Active: "🌟 Informational/Process HIPs that made it through Last Call. Can be 'Withdrawn' or 'Replaced'.",
Rejected: "❌ Rejected by HIP editors, community, or Hiero TSC vote. Ideas recorded with reasoning.",
Replaced: "🔄 Overwritten by a newer standard or implementation."
};
return statusMeanings[status] || "No information available for this status.";
Expand Down
Loading