<project-private xmlns="http://www.netbeans.org/ns/project-private/1">\r
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/1"/>\r
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>\r
+ <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/1">\r
+ <file>file:/H:/Works/cubeExtranet/fluidbook/tools/fwstk/src/com/fluidbook/fwstk/Main.java</file>\r
+ <file>file:/H:/Works/cubeExtranet/fluidbook/tools/fwstk/src/com/fluidbook/fwstk/Link.java</file>\r
+ </open-files>\r
</project-private>\r
$this->config->clinks = array();
$this->config->bookmarkGroups = array();
+
+ $ignore = $this->book->parametres->ignoreLinksTypes;
+ if (!$ignore) {
+ $ignore = array();
+ } else {
+ $ignore = split(',', $ignore);
+ }
+
$daoDoc = new wsDAODocument($core->con);
$daoDoc->getLinksAndRulers($this->book_id, $links, $rulers);
$cpages = array();
$css = array();
foreach ($links as $linkData) {
+ if (in_array($linkData['type'], $ignore)) {
+ continue;
+ }
$link = wsHTML5Link::getInstance($this->base62($i), $linkData, $this);
if (is_null($link)) {
continue;
return count($res);
}
-protected function _cssBackground() {
+ protected function _cssBackground() {
$body = '#background{';
$body.='background-color:#' . $this->theme->parametres->backgroundColor . ';';
switch ($this->theme->parametres->repeat) {
}
class wsHTML5CompilerDev extends wsHTML5Compiler {
-
}