diff --git a/config/alfresco/templates/activities/org/alfresco/documentlibrary/google-docs-checkin.atomentry.ftl b/config/alfresco/templates/activities/org/alfresco/documentlibrary/google-docs-checkin.atomentry.ftl
new file mode 100644
index 0000000000..e81409d5dc
--- /dev/null
+++ b/config/alfresco/templates/activities/org/alfresco/documentlibrary/google-docs-checkin.atomentry.ftl
@@ -0,0 +1,14 @@
+<#include "../slingshot-common.lib.ftl">
+
+ File checked in from Google Docs: ${htmlTitle?xml}
+
+ ${id}
+ ${xmldate(date)}
+
+
+
+
+ ${userName?xml}
+ ${userId?xml}
+
+
\ No newline at end of file
diff --git a/config/alfresco/templates/activities/org/alfresco/documentlibrary/google-docs-checkout.atomentry.ftl b/config/alfresco/templates/activities/org/alfresco/documentlibrary/google-docs-checkout.atomentry.ftl
new file mode 100644
index 0000000000..fded44e844
--- /dev/null
+++ b/config/alfresco/templates/activities/org/alfresco/documentlibrary/google-docs-checkout.atomentry.ftl
@@ -0,0 +1,14 @@
+<#include "../slingshot-common.lib.ftl">
+
+ File checked out to Google Docs: ${htmlTitle?xml}
+
+ ${id}
+ ${xmldate(date)}
+
+
+
+
+ ${userName?xml}
+ ${userId?xml}
+
+
\ No newline at end of file
diff --git a/config/alfresco/templates/activities/org/alfresco/documentlibrary/inline-edit.atomentry.ftl b/config/alfresco/templates/activities/org/alfresco/documentlibrary/inline-edit.atomentry.ftl
new file mode 100644
index 0000000000..1d9bc0723e
--- /dev/null
+++ b/config/alfresco/templates/activities/org/alfresco/documentlibrary/inline-edit.atomentry.ftl
@@ -0,0 +1,14 @@
+<#include "../slingshot-common.lib.ftl">
+
+ Inline Edit on File: ${htmlTitle?xml}
+
+ ${id}
+ ${xmldate(date)}
+
+
+
+
+ ${userName?xml}
+ ${userId?xml}
+
+
\ No newline at end of file
diff --git a/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/activity.post.json.js b/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/activity.post.json.js
index b330c5e3a7..e3cabd3f60 100644
--- a/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/activity.post.json.js
+++ b/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/activity.post.json.js
@@ -40,6 +40,9 @@ function postActivity()
{
case "file-added":
case "file-updated":
+ case "google-docs-checkout":
+ case "google-docs-checkin":
+ case "inline-edit":
data.title = json.get("fileName");
strParams = "?nodeRef=" + json.get("nodeRef");
break;