bbcode.bueditor.txt |
import/bbcode.bueditor.txt |
|
array (
'name' => 'BBCode',
'pages' => 'node/*
comment/*',
'excludes' => 'edit-log
edit-menu-description',
'iconpath' => '%BUEDITOR/icons',
… |
bue.popup.css |
library/bue.popup.css |
|
/* Popup styles */
.bue-popup {
box-shadow: 0 0 1em #999;
border-radius: 5px;
}
.bue-popup-head {
border-radius: 5px 5px 0 0;
}
.bue-popup-close {
border-radius: 5px 0 5px 0;
}
.bue-popup-body {
border-radius: 0 0 5px 5px;
}
#bue-quick-pop… |
bueditor.admin.inc |
admin/bueditor.admin.inc |
|
|
bueditor.css |
bueditor.css |
|
.bue-ui {
margin: 1px 0px;
}
.bue-button {
margin: 1px;
border: 1px solid #ccc;
cursor: pointer;
padding: 0;
}
.bue-button:hover {
border-color: #fc6;
}
.bue-text-button {
height: 22px;
font-size: 11px;
font-weight: bold;
… |
bueditor.edit.css |
admin/bueditor.edit.css |
|
.button-table {
width: 100%;
font-size: 0.9em;
}
.button-table * {
font-size: 1em;
}
.button-table .th-title {
width: 12em;
}
.button-table .input-title {
width: 8.8em;
}
.button-table a.tabledrag-handle {
padding-right:… |
bueditor.inc |
bueditor.inc |
|
Implements commonly used functions for bueditor. |
bueditor.info |
bueditor.info |
|
name = "BUEditor"
description = "A plain textarea editor aiming to facilitate code writing."
core = "7.x"
package = "Content authoring"
configure = "admin/config/content/bueditor" |
bueditor.install |
bueditor.install |
|
Installs, updates, and uninstalls BUEditor. |
bueditor.module |
bueditor.module |
|
Implements the necessary hooks for the editor to work properly. |
bueditor.sprite.inc |
admin/bueditor.sprite.inc |
|
Generates CSS sprites for editor buttons. |
commenter.bueditor.txt |
import/commenter.bueditor.txt |
|
array (
'name' => 'Commenter',
'pages' => 'node/*
comment/*',
'excludes' => 'edit-log
edit-menu-description',
'iconpath' => '%BUEDITOR/icons',
… |
default.bueditor.txt |
import/default.bueditor.txt |
|
array (
'name' => 'Default',
'pages' => 'node/*
comment/*',
'excludes' => 'edit-log
edit-menu-description',
'iconpath' => '%BUEDITOR/icons',
… |
lab.bueditor.txt |
import/lab.bueditor.txt |
|
array (
'name' => 'Lab',
'pages' => 'node/*
comment/*',
'excludes' => 'edit-log
edit-menu-description',
'iconpath' => '%BUEDITOR/icons',
… |
README.txt |
icons/README.txt |
|
All icons in this directory(not including subdirectories) will be available for
editors that identify this directory as icon path.
In editor settings specify icon path as:
%BUEDITOR/icons.
Do not put your custom icons here because:
- They may get… |
README.txt |
library/README.txt |
|
This directory contains custom library files(js or css) that extend bueditor functionality.
In editor settings you can add these files into editor library in this format:
%BUEDITOR/library/popup.js
%BUEDITOR/library/popup.css
Do not edit these files… |
README.txt |
README.txt |
|
- BUEditor:
A plain textarea editor aiming to facilitate code writing.
It's the most flexible text editor of the web because it allows you to;
- build the editor from scratch.
- determine the functionality by defining image or text buttons that… |