2014年2月15日 星期六

[Javascript] 將Bootstrap中的Modal設定成可拖曳及變換位置

以Bootstrap官網例子,並加上modal-dialog的id "myModalDialog",因為主要需要跟改的部份都在modal-dialog

<!-- Button trigger modal -->
<button class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog" id="myModalDialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>
設定成可拖曳:利用jqueryui

$('#myModalDialog').draggable();

變換位置:變更modal-dialog的css

$('#myModalDialog').css("position", "absolute");
$('#myModalDialog').css("left", "100px");
$('#myModalDialog').css("top", "100px");

關鍵字
Bootstrap
Modal
draggable
position


[Ubuntu]在新版Apache2中使用自訂目錄建立網站或目錄時要注意

如果要在新版Apache2中使用除了/usr/share/及/var/www以外的目錄放置網頁,必須在apache2.conf加上一些東西。apache2.conf中有一段

<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>

<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>

<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>

基本上這段的意思就是除了在/usr/share及/var/www放置網頁外,Apache2都將禁止,最簡單的方式就是將第一段中的Require all denied改成Require all granted,如果是對外服務的網站,安全起見最好還是加上一段自己的目錄定義,如下:

<Directory /mypath>
AllowOverride None
Require all granted
</Directory>

這樣/mypath以下的目錄就都可以放置網頁了。

關鍵字
authz_core:error
client denied by server configuration
virtualhost
alias
Forbidden
You don't have permission to access /... on this server.



2014年1月15日 星期三

在Google 試算表儲存格中換行

alt+enter