Skip to content

Instantly share code, notes, and snippets.

@seandenigris
Created February 10, 2013 17:33
Show Gist options
  • Select an option

  • Save seandenigris/4750350 to your computer and use it in GitHub Desktop.

Select an option

Save seandenigris/4750350 to your computer and use it in GitHub Desktop.
Seaside: Remove Unwanted Applications for Deployment
deploymentApplications := { 'tools'. 'browse' }.
appsToRemove := WADispatcher default handlers reject: [ :e | deploymentApplications includes: e name ].
appsToRemove do: [ :e | WADispatcher default unregister: e ].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment