in Dataset/JS/AngularCosmoPage/pageCtrl.js [126:140]
$scope.titleChange = function(){
// Log changes to the Page object
Page.title = $scope.page.title;
// Only auto-generate urls for new pages
if($scope.page.url === '/new' || $scope.page.url === 'new' || !$scope.page.url)
$scope.autoURL = true;
if($scope.autoURL){
// Change spaces to hyphens, convert to lowercase, and remove punctuation
$scope.page.url = $scope.page.title.toLowerCase().replace(/ /g, '-').replace(/[\.,\/#!$%\^&\*;:{}=_'~()\?]/g, '');
Page.url = $scope.page.url;
}
};