bprocessor-commit Mailing List for B-processor (Page 174)
Status: Pre-Alpha
Brought to you by:
henryml
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(12) |
Jul
(117) |
Aug
(151) |
Sep
(157) |
Oct
(81) |
Nov
(117) |
Dec
(119) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(183) |
Feb
(130) |
Mar
(117) |
Apr
(61) |
May
(82) |
Jun
(45) |
Jul
(149) |
Aug
(173) |
Sep
(199) |
Oct
(165) |
Nov
(107) |
Dec
(137) |
2007 |
Jan
(124) |
Feb
(58) |
Mar
(123) |
Apr
(80) |
May
(130) |
Jun
(64) |
Jul
(31) |
Aug
(42) |
Sep
(114) |
Oct
(167) |
Nov
(239) |
Dec
(200) |
2008 |
Jan
(43) |
Feb
(43) |
Mar
(4) |
Apr
(9) |
May
(5) |
Jun
(1) |
Jul
(3) |
Aug
(3) |
Sep
(13) |
Oct
(9) |
Nov
(12) |
Dec
|
2009 |
Jan
|
Feb
(20) |
Mar
(7) |
Apr
(12) |
May
(34) |
Jun
(72) |
Jul
|
Aug
(3) |
Sep
(31) |
Oct
(2) |
Nov
(8) |
Dec
(4) |
2010 |
Jan
(5) |
Feb
(32) |
Mar
(8) |
Apr
(7) |
May
(36) |
Jun
|
Jul
(11) |
Aug
(15) |
Sep
(7) |
Oct
(2) |
Nov
(13) |
Dec
(80) |
2011 |
Jan
|
Feb
|
Mar
(8) |
Apr
(12) |
May
(32) |
Jun
(9) |
Jul
(5) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
(8) |
2012 |
Jan
|
Feb
|
Mar
(3) |
Apr
(5) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(22) |
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jesper P. <je...@us...> - 2005-07-01 06:43:12
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26280/attrview Log Message: Directory /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/attrview added to the repository |
From: Jesper P. <je...@us...> - 2005-07-01 06:42:20
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25896 Modified Files: SpacesTreeView.java Log Message: Send SELECTED notification when node is pressed Index: SpacesTreeView.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview/SpacesTreeView.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** SpacesTreeView.java 27 Jun 2005 09:32:23 -0000 1.1.1.1 --- SpacesTreeView.java 1 Jul 2005 06:42:01 -0000 1.2 *************** *** 15,18 **** --- 15,20 ---- import net.sourceforge.bprocessor.model.FunctionalSpaceFacade; + import java.awt.event.MouseEvent; + import java.awt.event.MouseListener; import java.util.ArrayList; import java.util.Enumeration; *************** *** 45,48 **** --- 47,52 ---- setModel(new SpaceModel()); + addMouseListener(new MouseAdaptor()); + Notifier.getInstance().addListener(this); } *************** *** 65,69 **** RootNode rn = (RootNode)getModel().getRoot(); SpaceContainerNode scn = rn.getFunctionalSpaceContainer(); ! SpaceNode sn = new SpaceNode(n.getObject(), fs.getName(), scn); scn.add(sn); --- 69,73 ---- RootNode rn = (RootNode)getModel().getRoot(); SpaceContainerNode scn = rn.getFunctionalSpaceContainer(); ! SpaceNode sn = new SpaceNode(n.getObject(), fs.getName(), true, scn); scn.add(sn); *************** *** 76,80 **** RootNode rn = (RootNode)getModel().getRoot(); SpaceContainerNode scn = rn.getConstructionSpaceContainer(); ! SpaceNode sn = new SpaceNode(n.getObject(), cs.getName(), scn); scn.add(sn); --- 80,84 ---- RootNode rn = (RootNode)getModel().getRoot(); SpaceContainerNode scn = rn.getConstructionSpaceContainer(); ! SpaceNode sn = new SpaceNode(n.getObject(), cs.getName(), false, scn); scn.add(sn); *************** *** 236,244 **** */ abstract class GenericNode implements TreeNode { /** * Constructor */ ! GenericNode() { } --- 240,261 ---- */ abstract class GenericNode implements TreeNode { + /** Type: Root */ + static final int TYPE_ROOT = 0; + + /** Type: Space container */ + static final int TYPE_SPACE_CONTAINER = 1; + + /** Type: Space */ + static final int TYPE_SPACE = 0; + + /** Type */ + private int type; /** * Constructor + * @param type The type */ ! GenericNode(int type) { ! this.type = type; } *************** *** 292,296 **** * @return The node or null if not found */ ! public TreeNode findNode(Object o) { if (this == o) { return this; --- 309,313 ---- * @return The node or null if not found */ ! public GenericNode findNode(Object o) { if (this == o) { return this; *************** *** 300,304 **** while (e.hasMoreElements()) { GenericNode gn = (GenericNode)e.nextElement(); ! TreeNode result = gn.findNode(o); if (result != null) { return result; --- 317,321 ---- while (e.hasMoreElements()) { GenericNode gn = (GenericNode)e.nextElement(); ! GenericNode result = gn.findNode(o); if (result != null) { return result; *************** *** 308,311 **** --- 325,336 ---- return null; } + + /** + * Get the type of the node + * @return The type + */ + public int getType() { + return type; + } } *************** *** 330,333 **** --- 355,359 ---- */ RootNode() { + super(GenericNode.TYPE_ROOT); this.fsc = null; this.csc = null; *************** *** 457,460 **** --- 483,487 ---- */ SpaceContainerNode(String name, RootNode parent) { + super(GenericNode.TYPE_SPACE_CONTAINER); this.name = name; this.parent = parent; *************** *** 563,566 **** --- 590,596 ---- private String name; + /** Functional / construction */ + private boolean functional; + /** The parent */ private SpaceContainerNode parent; *************** *** 573,581 **** * @param id The id of the object * @param name The name * @param parent The parent */ ! SpaceNode(Long id, String name, SpaceContainerNode parent) { this.id = id; this.name = name; this.parent = parent; this.nodes = new Vector(); --- 603,614 ---- * @param id The id of the object * @param name The name + * @param functional Is the node a functional ? * @param parent The parent */ ! SpaceNode(Long id, String name, boolean functional, SpaceContainerNode parent) { ! super(GenericNode.TYPE_SPACE); this.id = id; this.name = name; + this.functional = functional; this.parent = parent; this.nodes = new Vector(); *************** *** 607,610 **** --- 640,651 ---- /** + * Is the node a functional ? + * @return True if functional; otherwise false + */ + public boolean isFunctional() { + return functional; + } + + /** * Get the children of this node * @return The children *************** *** 672,674 **** --- 713,772 ---- } } + + /** + * Mouse adaptor + */ + class MouseAdaptor implements MouseListener { + + /** + * Mouse clicked + * @param e The mouse event + */ + public void mouseClicked(MouseEvent e) { + } + + /** + * Mouse button was pressed + * @param e The mouse event + */ + public void mousePressed(MouseEvent e) { + int selRow = getRowForLocation(e.getX(), e.getY()); + TreePath selPath = getPathForLocation(e.getX(), e.getY()); + if (selRow != -1) { + GenericNode gn = (GenericNode)selPath.getLastPathComponent(); + if (gn.getType() == GenericNode.TYPE_SPACE) { + SpaceNode sn = (SpaceNode)gn; + + if (sn.isFunctional()) { + Notification n = new Notification(Notification.FUNCTIONAL_SPACE_SELECTED, sn.getId()); + Notifier.getInstance().sendNotification(n); + } else { + Notification n = new Notification(Notification.CONSTRUCTION_SPACE_SELECTED, sn.getId()); + Notifier.getInstance().sendNotification(n); + } + } + } + } + + /** + * Mouse button was released + * @param e The mouse event + */ + public void mouseReleased(MouseEvent e) { + } + + /** + * Mouse exit + * @param e The mouse event + */ + public void mouseExited(MouseEvent e) { + } + + /** + * Mouse enter + * @param e The mouse event + */ + public void mouseEntered(MouseEvent e) { + } + } } |
From: Jesper P. <je...@us...> - 2005-07-01 06:40:59
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25339 Added Files: Toolbar.java Log Message: Initial import --- NEW FILE: Toolbar.java --- //--------------------------------------------------------------------------------- // $Id: Toolbar.java,v 1.1 2005/07/01 06:40:47 jews Exp $ // // Copyright (c) 2005 The BProcessor Team (http://bprocessor.sourceforge.net) // Released under the Lesser GNU Public License v2.1 //--------------------------------------------------------------------------------- package net.sourceforge.bprocessor.gui; import javax.swing.Action; import javax.swing.JPanel; import javax.swing.JToolBar; import org.apache.log4j.Logger; /** * The toolbar class */ public class Toolbar extends JPanel { /** The logger */ private static Logger log = Logger.getLogger(Toolbar.class); /** The singleton instance */ private static Toolbar instance; /** The toolbar bar */ private JToolBar toolBar; /** * Constructor for Toolbar */ private Toolbar() { toolBar = new JToolBar(); add(toolBar); } /** * Get the instance * @return The instance */ public static synchronized Toolbar getInstance() { if (instance == null) { instance = new Toolbar(); } return instance; } /** * Register a toolbar action * @param action The action */ public void registerAction(Action action) { toolBar.add(action); } } |
From: Jesper P. <je...@us...> - 2005-07-01 06:40:26
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25087 Modified Files: GUI.java Log Message: Added more menu items and a toolbar Index: GUI.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/GUI.java,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** GUI.java 27 Jun 2005 09:32:23 -0000 1.1.1.1 --- GUI.java 1 Jul 2005 06:40:16 -0000 1.2 *************** *** 14,19 **** --- 14,21 ---- import net.sourceforge.bprocessor.gui.actions.CreateSurfaceActionListener; import net.sourceforge.bprocessor.gui.actions.FileExitActionListener; + import net.sourceforge.bprocessor.gui.attrview.AttributeView; import net.sourceforge.bprocessor.gui.treeview.SpacesTreeView; + import java.awt.BorderLayout; import java.awt.event.KeyEvent; import javax.swing.JComponent; *************** *** 38,43 **** private static GUI instance; ! /** The split pane */ ! private JSplitPane splitPane; /** SPLIT_LEFT */ --- 40,48 ---- private static GUI instance; ! /** The main split pane */ ! private JSplitPane splitPaneLeftRight; ! ! /** The middle/right split pane */ ! private JSplitPane splitPaneMiddleRight; /** SPLIT_LEFT */ *************** *** 78,92 **** menu.setMainWindow(this); JMenu file = new JMenu("File"); file.setMnemonic(KeyEvent.VK_F); JMenuItem fileExit = new JMenuItem("Exit"); fileExit.addActionListener(new FileExitActionListener()); fileExit.setMnemonic(KeyEvent.VK_X); - file.add(fileExit); menu.registerMenu(file); JMenu create = new JMenu("Create"); create.setMnemonic(KeyEvent.VK_C); --- 83,164 ---- menu.setMainWindow(this); + // File menu JMenu file = new JMenu("File"); file.setMnemonic(KeyEvent.VK_F); + JMenuItem fileNew = new JMenuItem("New"); + fileNew.setMnemonic(KeyEvent.VK_N); + fileNew.setEnabled(false); + file.add(fileNew); + + file.addSeparator(); + + JMenuItem fileOpen = new JMenuItem("Open"); + fileOpen.setMnemonic(KeyEvent.VK_O); + fileOpen.setEnabled(false); + file.add(fileOpen); + + JMenuItem fileSave = new JMenuItem("Save"); + fileSave.setMnemonic(KeyEvent.VK_S); + fileSave.setEnabled(false); + file.add(fileSave); + + JMenuItem fileSaveAs = new JMenuItem("Save as..."); + fileSaveAs.setMnemonic(KeyEvent.VK_A); + fileSaveAs.setEnabled(false); + file.add(fileSaveAs); + + file.addSeparator(); + + JMenuItem fileProperties = new JMenuItem("Properties"); + fileProperties.setMnemonic(KeyEvent.VK_P); + fileProperties.setEnabled(false); + file.add(fileProperties); + + file.addSeparator(); + JMenuItem fileExit = new JMenuItem("Exit"); fileExit.addActionListener(new FileExitActionListener()); fileExit.setMnemonic(KeyEvent.VK_X); file.add(fileExit); menu.registerMenu(file); + // Edit menu + JMenu edit = new JMenu("Edit"); + edit.setMnemonic(KeyEvent.VK_E); + + JMenuItem editCut = new JMenuItem("Cut"); + editCut.setMnemonic(KeyEvent.VK_U); + editCut.setEnabled(false); + edit.add(editCut); + + JMenuItem editCopy = new JMenuItem("Copy"); + editCopy.setMnemonic(KeyEvent.VK_C); + editCopy.setEnabled(false); + edit.add(editCopy); + + JMenuItem editPaste = new JMenuItem("Paste"); + editPaste.setMnemonic(KeyEvent.VK_P); + editPaste.setEnabled(false); + edit.add(editPaste); + + edit.addSeparator(); + + JMenuItem editDelete = new JMenuItem("Delete"); + editDelete.setMnemonic(KeyEvent.VK_D); + editDelete.setEnabled(false); + edit.add(editDelete); + + edit.addSeparator(); + + JMenuItem editProject = new JMenuItem("Project"); + editProject.setMnemonic(KeyEvent.VK_P); + editProject.setEnabled(false); + edit.add(editProject); + + menu.registerMenu(edit); + + // Create menu JMenu create = new JMenu("Create"); create.setMnemonic(KeyEvent.VK_C); *************** *** 95,99 **** createConstructor.setMnemonic(KeyEvent.VK_N); createConstructor.addActionListener(new CreateConstructorActionListener()); ! //create.add(createConstructor); JMenuItem createFunctionalSpace = new JMenuItem("Functional Space"); --- 167,172 ---- createConstructor.setMnemonic(KeyEvent.VK_N); createConstructor.addActionListener(new CreateConstructorActionListener()); ! createConstructor.setEnabled(false); ! create.add(createConstructor); JMenuItem createFunctionalSpace = new JMenuItem("Functional Space"); *************** *** 110,126 **** createElement.setMnemonic(KeyEvent.VK_E); createElement.addActionListener(new CreateElementActionListener()); ! //create.add(createElement); JMenuItem createPart = new JMenuItem("Part"); createPart.setMnemonic(KeyEvent.VK_P); createPart.addActionListener(new CreatePartActionListener()); ! //create.add(createPart); JMenuItem createSurface = new JMenuItem("Surface"); createSurface.setMnemonic(KeyEvent.VK_S); createSurface.addActionListener(new CreateSurfaceActionListener()); ! //create.add(createSurface); menu.registerMenu(create); } --- 183,254 ---- createElement.setMnemonic(KeyEvent.VK_E); createElement.addActionListener(new CreateElementActionListener()); ! createElement.setEnabled(false); ! create.add(createElement); JMenuItem createPart = new JMenuItem("Part"); createPart.setMnemonic(KeyEvent.VK_P); createPart.addActionListener(new CreatePartActionListener()); ! createPart.setEnabled(false); ! create.add(createPart); JMenuItem createSurface = new JMenuItem("Surface"); createSurface.setMnemonic(KeyEvent.VK_S); createSurface.addActionListener(new CreateSurfaceActionListener()); ! createSurface.setEnabled(false); ! create.add(createSurface); menu.registerMenu(create); + + // Tools menu + JMenu tools = new JMenu("Tools"); + tools.setMnemonic(KeyEvent.VK_T); + + JMenuItem toolsJoin = new JMenuItem("Join"); + toolsJoin.setMnemonic(KeyEvent.VK_J); + toolsJoin.setEnabled(false); + tools.add(toolsJoin); + + JMenuItem toolsDetach = new JMenuItem("Detach"); + toolsDetach.setMnemonic(KeyEvent.VK_D); + toolsDetach.setEnabled(false); + tools.add(toolsDetach); + + menu.registerMenu(tools); + + // Plugin menu + JMenu plugin = new JMenu("Plugin"); + plugin.setMnemonic(KeyEvent.VK_P); + + menu.registerMenu(plugin); + + // Help menu + JMenu help = new JMenu("Help"); + help.setMnemonic(KeyEvent.VK_H); + + JMenuItem helpHandbook = new JMenuItem("Handbook"); + helpHandbook.setMnemonic(KeyEvent.VK_H); + helpHandbook.setEnabled(false); + help.add(helpHandbook); + + JMenuItem helpWhat = new JMenuItem("What is this?"); + helpWhat.setMnemonic(KeyEvent.VK_W); + helpWhat.setEnabled(false); + help.add(helpWhat); + + help.addSeparator(); + + JMenuItem helpTip = new JMenuItem("Tip of the day"); + helpTip.setMnemonic(KeyEvent.VK_T); + helpTip.setEnabled(false); + help.add(helpTip); + + help.addSeparator(); + + JMenuItem helpAbout = new JMenuItem("About"); + helpAbout.setMnemonic(KeyEvent.VK_A); + helpAbout.setEnabled(false); + help.add(helpAbout); + + menu.registerMenu(help); } *************** *** 129,136 **** */ public void createMainView() { ! splitPane = new JSplitPane(); ! splitPane.setLeftComponent(new JPanel()); ! splitPane.setRightComponent(new JPanel()); ! getContentPane().add(splitPane); JTabbedPane tp = new JTabbedPane(JTabbedPane.TOP); --- 257,271 ---- */ public void createMainView() { ! splitPaneMiddleRight = new JSplitPane(); ! splitPaneMiddleRight.setLeftComponent(new JPanel()); ! splitPaneMiddleRight.setRightComponent(new JPanel()); ! ! splitPaneLeftRight = new JSplitPane(); ! splitPaneLeftRight.setLeftComponent(new JPanel()); ! splitPaneLeftRight.setRightComponent(splitPaneMiddleRight); ! ! getContentPane().setLayout(new BorderLayout()); ! getContentPane().add(Toolbar.getInstance(), BorderLayout.NORTH); ! getContentPane().add(splitPaneLeftRight, BorderLayout.CENTER); JTabbedPane tp = new JTabbedPane(JTabbedPane.TOP); *************** *** 138,141 **** --- 273,279 ---- registerPanel(tp, SPLIT_LEFT); + + AttributeView av = new AttributeView(); + registerPanel(av, SPLIT_RIGHT); } *************** *** 147,155 **** public void registerPanel(JComponent panel, Integer placement) { if (placement.equals(SPLIT_LEFT)) { ! splitPane.remove(1); ! splitPane.setLeftComponent(new JScrollPane(panel)); } else { ! splitPane.remove(2); ! splitPane.setRightComponent(new JScrollPane(panel)); } } --- 285,296 ---- public void registerPanel(JComponent panel, Integer placement) { if (placement.equals(SPLIT_LEFT)) { ! splitPaneLeftRight.remove(1); ! splitPaneLeftRight.setLeftComponent(new JScrollPane(panel)); ! } else if (placement.equals(SPLIT_MIDDLE)) { ! splitPaneMiddleRight.remove(1); ! splitPaneMiddleRight.setLeftComponent(new JScrollPane(panel)); } else { ! splitPaneMiddleRight.remove(2); ! splitPaneMiddleRight.setRightComponent(new JScrollPane(panel)); } } |
From: Jesper P. <je...@us...> - 2005-06-28 08:57:12
|
Update of /cvsroot/bprocessor/tools/jogl/solsparc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30051/solsparc Modified Files: libjogl.so Log Message: JOGL v1.1 Index: libjogl.so =================================================================== RCS file: /cvsroot/bprocessor/tools/jogl/solsparc/libjogl.so,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsIWpaJ7 and /tmp/cvsfKNkQc differ |
From: Jesper P. <je...@us...> - 2005-06-28 08:56:53
|
Update of /cvsroot/bprocessor/tools/jogl/macosx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30051/macosx Modified Files: libjogl.jnilib libjogl_cg.jnilib Log Message: JOGL v1.1 Index: libjogl.jnilib =================================================================== RCS file: /cvsroot/bprocessor/tools/jogl/macosx/libjogl.jnilib,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsh3yKkT and /tmp/cvs6aMOpL differ Index: libjogl_cg.jnilib =================================================================== RCS file: /cvsroot/bprocessor/tools/jogl/macosx/libjogl_cg.jnilib,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvswy95Sc and /tmp/cvsZSMJ24 differ |
From: Jesper P. <je...@us...> - 2005-06-28 08:56:43
|
Update of /cvsroot/bprocessor/tools/jogl/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30051/win32 Modified Files: jogl.dll jogl_cg.dll Log Message: JOGL v1.1 Index: jogl_cg.dll =================================================================== RCS file: /cvsroot/bprocessor/tools/jogl/win32/jogl_cg.dll,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvsqWcD7m and /tmp/cvslAOHd7 differ Index: jogl.dll =================================================================== RCS file: /cvsroot/bprocessor/tools/jogl/win32/jogl.dll,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 Binary files /tmp/cvssgz0Yz and /tmp/cvsUAqEdk differ |
From: Jesper P. <je...@us...> - 2005-06-28 08:56:43
|
Update of /cvsroot/bprocessor/tools/jogl/solx86 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30051/solx86 Modified Files: libjogl.so Log Message: JOGL v1.1 Index: libjogl.so =================================================================== RCS file: /cvsroot/bprocessor/tools/jogl/solx86/libjogl.so,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsck26BY and /tmp/cvsciY6yI differ |
From: Jesper P. <je...@us...> - 2005-06-28 08:56:23
|
Update of /cvsroot/bprocessor/tools/jogl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30051 Added Files: jogl.jar Log Message: JOGL v1.1 --- NEW FILE: jogl.jar --- (This appears to be a binary file; contents omitted.) |
From: Jesper P. <je...@us...> - 2005-06-27 09:34:46
|
Update of /cvsroot/bprocessor/CVSROOT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29509 Modified Files: modules Log Message: Added module definitions Index: modules =================================================================== RCS file: /cvsroot/bprocessor/CVSROOT/modules,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** modules 13 Jun 2005 19:10:17 -0000 1.1 --- modules 27 Jun 2005 09:34:37 -0000 1.2 *************** *** 25,26 **** --- 25,33 ---- # can be useful for creating a module that consists of many directories # spread out over the entire source repository. + all -a build kernel model gui tools + + build build + kernel kernel + model model + gui gui + tools tools |
From: Jesper P. <je...@us...> - 2005-06-27 09:30:52
|
Update of /cvsroot/bprocessor/tools/jogl/solx86 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27257 Added Files: libjogl.so Log Message: Initial import --- NEW FILE: libjogl.so --- (This appears to be a binary file; contents omitted.) |
From: Jesper P. <je...@us...> - 2005-06-27 09:29:29
|
Update of /cvsroot/bprocessor/tools/jogl/solsparc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26387 Added Files: libjogl.so Log Message: Initial import --- NEW FILE: libjogl.so --- (This appears to be a binary file; contents omitted.) |
From: Jesper P. <je...@us...> - 2005-06-27 09:28:36
|
Update of /cvsroot/bprocessor/tools/jogl/solx86 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26019/solx86 Log Message: Directory /cvsroot/bprocessor/tools/jogl/solx86 added to the repository |
From: Jesper P. <je...@us...> - 2005-06-27 09:28:24
|
Update of /cvsroot/bprocessor/tools/jogl/solsparc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25878/solsparc Log Message: Directory /cvsroot/bprocessor/tools/jogl/solsparc added to the repository |
From: Jesper P. <je...@us...> - 2005-06-27 09:27:45
|
Update of /cvsroot/bprocessor/tools/jogl/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25543 Added Files: libjogl_cg.so libjogl.so Log Message: Initial import --- NEW FILE: libjogl.so --- (This appears to be a binary file; contents omitted.) --- NEW FILE: libjogl_cg.so --- (This appears to be a binary file; contents omitted.) |
From: Jesper P. <je...@us...> - 2005-06-27 09:26:43
|
Update of /cvsroot/bprocessor/tools/jogl/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25128/linux Log Message: Directory /cvsroot/bprocessor/tools/jogl/linux added to the repository |