This page is supposed to help you getting started with the development of KnowWE. Feel free to add your solutions to this page. If you don't find the information you need here, you can post it in the Forum.
A scope is an selector of a specific subset of KDOM nodes. Its selection is based on the type of the KDOM nodes itself as well as on the type of the KDOM node's anchestors. It can be compared a little bit to the css selectors.
The scope is a path of those KDOM node types that should be matched/selected. The path can be relative (anywhere in the KDOM tree) or root based. Specific path wildcards as "*" and "**" are allowed. The different kinds of scopes and their usage are explained here.
An extension point has a specific type, for example Action, TagHandler, TypeHandler or EventListener. The defined extension point specifies that each extension has to give values for class, name, description, version, and priority. This has to be defined by each extension point; an extension point further can require additional value, for example the specification of a file name.
For further definition and usage instructions see this page.
You need to enable the plug-ins you want to build into KnowWE when using Eclipse. Here's how:
Open your Run Configuration for the KnowWE build and add parameters for the plug-ins you want to have in the goals section.
For instance: You want to enable the Comment plug-in. Here, you have to add a comment-plugin parameter. List all the profile names for the Plug-ins you want to add in the Profiles Section and build KnowWE.
See the screenshot on the right for another example.
Every .java file must contain the license header, starting in the first line. Be sure to have an empty line between the license and the package declaration.
The license is to look like this:
/*
* Copyright (C) 2010 Chair of Artificial Intelligence and Applied Informatics
* Computer Science VI, University of Wuerzburg
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 3 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
You can do this automatically by adding codetemplates.xml in Eclipse: Window -> Preferences -> Java -> Code Style -> Code Templates
You have to perform the first check-in using the chosen main repository (c.f. above).
Right click the main project → Team → Commit.
Now exclude the folders target/ and .settings/! (Uncheck the check boxes)
Enter your commit message → Commit.
Now you can enable SVN access directly for your newly created project: Perform a right click on the new project → Team → Share.
Select SVN, you will find the repository location already set up. Hit Finish.
To complete the process, you have to ignore target/ and .settings permanently. Select both folders in the Project Explorer with Ctrl/Command, right click → Team → Add to svn:ignore. Click OK in the window that opens.
Finally, commit the ignore settings: right click → Team → Commit. Done.
What do I need to do after I change a .java file?#
Usually you only have to refresh your browser page. Hot Code Replacement makes your changes effective at runtime.
I'm done editing. How to make my changes permanent?#
You don't have to worry that you changes will be lost after you shut down KnowWE. To make the changes effective for the next restart, you have to perform Maven install on KnowWE-App.