hierarchical

mod_rewrite: hierarchical sub-domains into hierarchical sub-directories

Hello. Consider the following problem, please. I have got domain.tld with hierarchical sub-domains like the following: a.domain.tld b.a.domain.tld c.b.a.domain.tld ... etc. There is also hypothetical directory structure in the web-root: /foo /a. /a./b. /a./b./bar /a./b./c. ... etc. I would like to achieve such rewrite that would ...

Eclipse and hierarchical file structure

I am using Eclipse 3.51 along with Maven 2.0.x, and Maven Eclipse plugin. The file structure of the project I am working on is hierarchical. Based on several sources, including this link (http://maven.apache.org/maven-1.x/plugins/eclipse/faq.html#hierarchical although the url indicates it is Maven 1), Eclipse does not handle hierarchica...

Nested FlowLayoutPanels and UserControls hierarchical structure in WinForms in VB

I have a form with the following structure: Level 1: MainFlowLayoutPanel01 --------- Level 2 : SubMainFlowLayoutPanel_01 ------------ Level 3 : SubSubMainFlowLayoutPanel1 ------ UserControl 1 ------ UserControl 2 ...

HTML+CSS: combining <UL>/<OL> and faux-tabular format

I have a hierarchical table I want to display in HTML. The <ul> and <ol> tags work great for the hierarchical part of things, but I want to have 2 or 3 columns total where the leftmost column is indented hierarchically, e.g. foo foo1 foo2 foo2a foo3 foo3a foo3b bar bar1 bar1a bar1b bar2 but I also want each item to have som...

Hierarchical models of software quality

Can anyone help me listing the Hierarchical models of software quality? Please can anyone say me Is it just McCall and Bohem model or many other hierarchical models exists? ...

How to select all parents of a node in a hierarchical mysql table?

I have a MySQL table that represents data for a tree GUI component, here's the structure of my table: treeTable ( id INT NOT NULL PRIMARY KEY, parentId INT, name VARCHAR(255) ); parentId is a self-referencing foreign key. Now I want to write a stored procedure which gets a node id and returns a result set that contains tha...

drawing hierarchical tree with orthogonal lines ( HV-Drawing – Binary Tree)

Hi I need to work on drawing a hierarchical tree structure (HV-Drawing – Binary Tree) with orthogonal lines(straight rectangular connecting lines) between root and children ( like the following: http://lab.kapit.fr/display/visualizationlayouts/Hierarchical+Tree+layout ). I want to know if there are any open source examples of the algorit...

Out of memory error while using clusterdata in MATLAB

Hi, I am trying to cluster a Matrix (size: 20057x2).: T = clusterdata(X,cutoff); but I get this error: ??? Error using ==> pdistmex Out of memory. Type HELP MEMORY for your options. Error in ==> pdist at 211 Y = pdistmex(X',dist,additionalArg); Error in ==> linkage at 139 Z = linkagemex(Y,method,pdistArg); Error in ==>...

how to get the hierarchical menu from mysql

Hello, I have a table having hierarchical menus like "id" "parent_id" "name" 1 0 menu 2 1 item1 3 2 item1_1 4 1 item2 5 4 item2_1 ... ... and I have 100s of menu items here. In order to get all items in an array I have to write a recursive function like this getmenu function(parent_id = 1) { $items = mysql_query("SELECT id FROM tab...

C# MVVM TreeView TwoWay-Binding of hierarchical data

I googled for an answer to this for more than two weeks now. This usually means either I am blind or the idea is absurd. Anyways: In a middle-sized, quite flexible project I'm storing configuration data in a hierarchical structure in the like of this one: Configuration (collection) Audio (class) BaseDir (struct) PlayMode (enum) Inpu...

Wordpress custom post type hierarchy and menu highlighting (current_page_parent)

I have created a custom post type of 'portfolio' and page with a template that retrieves all posts matching that custom post type. The problem is when I drill down into the actual post, the post seems to sit under 'blog' in the main menu highlighting (displays current_page_parent as a class) The permalink url is correct: www.site.com/p...

Store and retrieve friends contact list using mysql

Hi I want to create a database that can store the friends contact list as like social networking what is the best way to design the database structure and easy to retrieve the contacts of friends using mysql. i need solution for this, HELP ME regards ~Deepu~ ...

What is the best practice for a hierarchical state machine using the state pattern?

Hi all, I'm about to implement a hierarchical state machine in C# using the state pattern. As a guide I'm using this example. The example doesn't provide an answer regarding hierarchical states though. Unfortunately, I can't seem to find good examples elsewhere. My first thought is to create nested classed for the hierarchical states. B...

AdvancedDataGrid Problem (Bug?) -- Disclosure Icons in Wrong Column. (Hierarchical data, Flex 3.5)

Hi Gang, I've run into a bit of a funny one and thought it was worth posting: I'm using an Advanced Data Grid in a case where I've got to set the data provider at runtime using hierarchical data. The adobe docs don't really cover this kind of thing (at least not at the level I could dig to). Has anyone run into this before? The only...

CONECT BY for two tables with two JOINS

Hi, I have 3 tables: - two with hierarchical structures (like "dimensions" of recursive type of hierarchy); - one with summing data (like "facts" with X column). There are here: 1) DIM1 (ID1, PARENT2, NAME1) 2) DIM2 (ID2, PARENT2, NAME2) 3) FACTS (ID1, ID2, X) Example of DIM1 table: -- 1 0 DIM1 ---- ...

[WPF] Creating a hierarchical ContextMenu using DataBinding

Hi, i'll try to create a hierachical context menu using databinding. The XAML code looks like the following: < ContextMenu> < MenuItem Header="MoveTo"> <MenuItem.Resources> <!-- Display files as menu items --> <HierarchicalDataTemplate DataTy...

Allow end user to define state transitions in a Flex mxml application

Adobe has a great tool for designers called Adobe Catalyst to develop AIR based desktop apps which designers can customize to define state transition in a screen-flow based application. Now Is there a way in which an end-user who gets that application can change the conditions for state transition and the the content of the state. For ex...

Human-readable URLs: preferably hierarchical too?

In a now migrated question about human-readable URLs I allowed myself to elaborate a little hobby-horse of mine: When I encounter URLs like http://www.example.com/product/123/subpage/456.html I always think that this is an attempt on creating meaningful hierarchical URLs which, however, is not entirely hierarchical. What I mean is, y...

Spring hierarchical context

I have following problem: I'm trying to implement Spring in existing ear application (using Jboss as App Server and Hibernate as ORM). The ear application consists of war(basically few simple servlets), har(hibernate archive which has only the data model-as classes and the corresponding hibernate mapping files - as xmls), sar(only one pa...