Skip to content

Commit

Permalink
More work on package api, currently working out spacing in actions map.
Browse files Browse the repository at this point in the history
See core/api/shell/package/actions for examples.
  • Loading branch information
wayneeseguin committed Sep 6, 2011
1 parent 91b4e9d commit 3fd1d6c
Show file tree
Hide file tree
Showing 8 changed files with 861 additions and 921 deletions.
2 changes: 1 addition & 1 deletion core/api/shell/database/functions
Expand Up @@ -16,7 +16,7 @@ api_database_initialize()
true "${data_path:="${data_base_path}/${package_version}"}"
}

database_cli()
__sm.database.cli()
{
local _ignored_args=() args_count=${#extension_args[@]}

Expand Down
24 changes: 12 additions & 12 deletions core/api/shell/package/actions
@@ -1,17 +1,17 @@
package/install=package_install()
install=package_install()
package/install=package install()
install=package install()

package/uninstall=package_uninstall()
uninstall=package_uninstall()
package/uninstall=package uninstall()
uninstall=package uninstall()

package/update=package_update()
update=package_update()
package/update=package update()
update=package update()

package/info=package_info()
info=package_info()
package/info=package info()
info=package info()

package/activate=package_activate()
activate=package_activate()
package/activate=package activate()
activate=package activate()

package/man=package_man()
man=package_man()
package/man=package man()
man=package man()

0 comments on commit 3fd1d6c

Please sign in to comment.