]> source.dussan.org Git - nextcloud-server.git/commitdiff
moved bookmarklet to personal. username must be provided when adding a new user.
authorMarvin Thomas Rabe <m.rabe@echtzeitraum.de>
Sat, 8 Oct 2011 11:10:49 +0000 (13:10 +0200)
committerMarvin Thomas Rabe <m.rabe@echtzeitraum.de>
Sat, 8 Oct 2011 11:10:49 +0000 (13:10 +0200)
apps/bookmarks/appinfo/app.php
apps/bookmarks/templates/list.php
apps/calendar/templates/settings.php
settings/js/users.js

index 33b7ba61449fd4e90091d4d294497c3607d4445f..44a1e47dff9fb0cc0fca21b0c885dd51c62ceb9b 100644 (file)
@@ -1,27 +1,14 @@
 <?php
-
 /**
-* ownCloud - bookmarks plugin
-*
-* @author Arthur Schiwon
-* @copyright 2011 Arthur Schiwon blizzz@arthur-schiwon.de
-* 
-* This library is free software; you can redistribute it and/or
-* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-* License as published by the Free Software Foundation; either 
-* version 3 of the License, or any later version.
-* 
-* This library is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
-*  
-* You should have received a copy of the GNU Lesser General Public 
-* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
-* 
+* Copyright (c) 2011 Marvin Thomas Rabe <m.rabe@echtzeitraum.de>
+* Copyright (c) 2011 Arthur Schiwon <blizzz@arthur-schiwon.de>
+* This file is licensed under the Affero General Public License version 3 or
+* later.
+* See the COPYING-README file.
 */
 
 OC_App::register( array( 'order' => 70, 'id' => 'bookmark', 'name' => 'Bookmarks' ));
 
 OC_App::addNavigationEntry( array( 'id' => 'bookmarks_index', 'order' => 70, 'href' => OC_Helper::linkTo( 'bookmarks', 'index.php' ), 'icon' => OC_Helper::imagePath( 'bookmarks', 'bookmarks.png' ), 'name' => 'Bookmarks' ));
 
+OC_App::registerPersonal('bookmarks', 'settings');
index d73657b36acbb767f681b6f6abb15c65f5f187ea..052531f4011cab30947dc1c22a1b2f344109ce80 100644 (file)
@@ -1,8 +1,16 @@
+<?php 
+/**
+ * Copyright (c) 2011 Marvin Thomas Rabe <m.rabe@echtzeitraum.de>
+ * Copyright (c) 2011 Arthur Schiwon <blizzz@arthur-schiwon.de>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+?>
 <input type="hidden" id="bookmarkFilterTag" value="<?php if(isset($_GET['tag'])) echo htmlentities($_GET['tag']); ?>" />
 <h2 class="bookmarks_headline"><?php echo isset($_GET["tag"]) ? $l->t('Bookmarks with tag: ') . urldecode($_GET["tag"]) : $l->t('All bookmarks'); ?></h2>
 <div class="bookmarks_menu">
-       <input type="button" class="bookmarks_addBtn" value="<?php echo $l->t('Add bookmark'); ?>"/>&nbsp;
-       <a class="bookmarks_addBml" href="javascript:var url = encodeURIComponent(location.href);window.open('<?php echo OC_Helper::linkTo('bookmarks', 'addBm.php', null, true); ?>?url='+url, 'owncloud-bookmarks');" title="<?php echo $l->t('Drag this to your browser bookmarks and click it, when you want to bookmark a webpage.'); ?>"><?php echo $l->t('Add page to ownCloud'); ?></a>
+       <input type="button" class="bookmarks_addBtn" value="<?php echo $l->t('Add bookmark'); ?>"/>
 </div>
 <div class="bookmarks_add">
        <input type="hidden" id="bookmark_add_id" value="0" />
index 4f5092839392af8da45b6d740c094adca2fb5887..56fb55d235c7dd342d1b6ae26aa636fb6af89df3 100644 (file)
@@ -6,8 +6,6 @@
  * later.
  * See the COPYING-README file.
  */
-OC_UTIL::addScript('', 'jquery.multiselect');
-OC_UTIL::addStyle('', 'jquery.multiselect');
 ?>
 <form id="calendar">
         <fieldset class="personalblock">
index 4944f3a62f643c0a52db66d45ef36ba587ccbff5..64a132b427ed10b5e88707e6844679c3c28456cf 100644 (file)
@@ -123,6 +123,10 @@ $(document).ready(function(){
        $('#newuser').submit(function(event){
                event.preventDefault();
                var username=$('#newusername').val();
+               if(username == '') {
+                       alert('Please provide a username!');
+                       return false;
+               }
                var password=$('#newuserpassword').val();
                var groups=$('#newusergroups').prev().children('div').data('settings').checked;
                $.post(