]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/profile-manager/profile-manager.xsl
This commit was manufactured by cvs2svn to create branch 'moogle'.
[helm.git] / helm / DEVEL / profile-manager / profile-manager.xsl
diff --git a/helm/DEVEL/profile-manager/profile-manager.xsl b/helm/DEVEL/profile-manager/profile-manager.xsl
deleted file mode 100644 (file)
index e32d587..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-
-  <xsl:template name="profile_manager_list">
-    <xsl:param name="managerURL" select="''"/>
-    <xsl:copy-of select="document(string-concat($managerURL, 'list'))"/>
-  </xsl:template>
-
-  <xsl:template name="profile_manager_new">
-    <xsl:param name="managerURL" select="''"/>
-    <xsl:param name="id" select="''"/> <!-- optional -->
-    <xsl:param name="password" select="''"/> <!-- optional -->
-    <xsl:copy-of select="document(concat($managerURL, 'new?id=', $id, '&amp;password=', $password))"/>
-  </xsl:template>
-  
-  <xsl:template name="profile_manager_delete">
-    <xsl:param name="managerURL" select="''"/>
-    <xsl:param name="id" select="''"/>
-    <xsl:param name="password" select="''"/> <!-- optional -->
-    <xsl:copy-of select="document(concat($managerURL, 'del?id=', $id, '&amp;password=', $password))"/>  
-  </xsl:template>
-  
-  <xsl:template name="profile_manager_get">
-    <xsl:param name="managerURL" select="''"/>
-    <xsl:param name="id" select="''"/>
-    <xsl:param name="password" select="''"/> <!-- optional -->
-    <xsl:copy-of select="document(concat($managerURL, 'get?id=', $id, '&amp;password=', $password))"/>  
-  </xsl:template>
-  
-  <xsl:template name="profile_manager_set">
-    <xsl:param name="managerURL" select="''"/>
-    <xsl:param name="id" select="''"/>
-    <xsl:param name="field" select="''"/>
-    <xsl:param name="value" select="''"/> <!-- optional -->
-    <xsl:param name="password" select="''"/> <!-- optional -->
-    <xsl:copy-of select="document(concat($managerURL, 'set?id=', $id, '&amp;field=', $field, '&amp;value=', $value, '&amp;password=', $password))"/>  
-  </xsl:template>
-  
-  <xsl:template name="profile_manager_set_password">
-    <xsl:param name="managerURL" select="''"/>
-    <xsl:param name="id" select="''"/>
-    <xsl:param name="old_password" select="''"/> <!-- optional -->
-    <xsl:param name="new_password" select="''"/> <!-- optional -->
-    <xsl:copy-of select="document(concat($managerURL, 'get?id=', $id, '&amp;old_password=', $old_password, '&amp;new_password=', $new_password))"/>  
-  </xsl:template>
-  
-  <xsl:template name="profile_manager_set_access">
-    <xsl:param name="managerURL" select="''"/>
-    <xsl:param name="id" select="''"/>
-    <xsl:param name="read" select="''"/> <!-- optional -->
-    <xsl:param name="write" select="''"/> <!-- optional -->
-    <xsl:param name="profile" select="''"/> <!-- optional -->
-    <xsl:copy-of select="document(concat($managerURL, 'get?id=', $id, '&amp;read=', $read, '&amp;write=', $write, '&amp;profile=', $profile))"/>  
-  </xsl:template>
-  
-</xsl:stylesheet>
\ No newline at end of file