473,800 Members | 2,602 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Quick terminology question

What is the technical name or the name most commonly used for the below?

United Kingdom >Wiltshire >Trowbridge

Basically you have a table like:
category_id, parent_category _id, category_name

Sure it has name from a fairy tale but for the life of me I can't remember.
I keep thinking daisy chaining but I know it's not. Is it something from
Hansel and Gretal?

Please put me out of my misery.

Cheers

Phil

Nov 1 '07 #1
8 1260

"Phil Latio" <ph********@f-in-stupid.co.ukwro te in message
news:EB******** ************@fe 04.news.easynew s.com...
What is the technical name or the name most commonly used for the below?

United Kingdom >Wiltshire >Trowbridge

Basically you have a table like:
category_id, parent_category _id, category_name

Sure it has name from a fairy tale but for the life of me I can't
remember.
I keep thinking daisy chaining but I know it's not. Is it something from
Hansel and Gretal?

Please put me out of my misery.
a hierarchy?

other than that, your example just looks like a menu path. :)
Nov 1 '07 #2
Phil Latio says...
What is the technical name or the name most commonly used for the below?

United Kingdom >Wiltshire >Trowbridge
Sure it has name from a fairy tale but for the life of me I can't remember.
I keep thinking daisy chaining but I know it's not. Is it something from
Hansel and Gretal?
Bread crumb navigation.

GM
Nov 1 '07 #3
Phil Latio wrote:
What is the technical name or the name most commonly used for the below?

United Kingdom >Wiltshire >Trowbridge

Basically you have a table like:
category_id, parent_category _id, category_name

Sure it has name from a fairy tale but for the life of me I can't remember.
I keep thinking daisy chaining but I know it's not. Is it something from
Hansel and Gretal?

Please put me out of my misery.
Link list?

--
*************** **************
Chuck Anderson • Boulder, CO
http://www.CycleTourist.com
Nothing he's got he really needs
Twenty first century schizoid man.
*************** *************** *****

Nov 1 '07 #4
yes, it is a fairy tale! this is a breadcrumb trail

"Phil Latio" <ph********@f-in-stupid.co.ukwro te in message
news:EB******** ************@fe 04.news.easynew s.com...
What is the technical name or the name most commonly used for the below?

United Kingdom >Wiltshire >Trowbridge

Basically you have a table like:
category_id, parent_category _id, category_name

Sure it has name from a fairy tale but for the life of me I can't
remember.
I keep thinking daisy chaining but I know it's not. Is it something from
Hansel and Gretal?

Please put me out of my misery.

Cheers

Phil



Nov 1 '07 #5
Geoff Muldoon wrote:
Phil Latio says...
>What is the technical name or the name most commonly used for the below?

United Kingdom >Wiltshire >Trowbridge
>Sure it has name from a fairy tale but for the life of me I can't remember.
I keep thinking daisy chaining but I know it's not. Is it something from
Hansel and Gretal?

Bread crumb navigation.

GM
I've never heard this term before, although I'm sure it's what the OP is
looking for. If it is true, I don't see how this makes sense.

cat_id -cat_parent -cat

How does that relate to a trail? I agree that from start to finish it's
possible to have many alternate paths leading to other "cats", but in
the sense of navigating via a pre-made (bread crumb) trail would be more
of a direct path.

I don't know why I'm thinking so much of this. haha.
Nov 1 '07 #6
They are called breadcrumbs.

see http://en.wikipedia.org/wiki/Breadcrumb_(navigation)


Nov 1 '07 #7
On Thu, 01 Nov 2007 06:52:33 +0100, Chris Gorospe <ch***@ekast.co mwrote:
Geoff Muldoon wrote:
>Phil Latio says...
>>What is the technical name or the name most commonly used for the
below?

United Kingdom >Wiltshire >Trowbridge
>>Sure it has name from a fairy tale but for the life of me I can't
remember.
I keep thinking daisy chaining but I know it's not. Is it something
from
Hansel and Gretal?
Bread crumb navigation.
GM
I've never heard this term before, although I'm sure it's what the OP is
looking for. If it is true, I don't see how this makes sense.

cat_id -cat_parent -cat
As a breadcurmb, it doesn't make sense, no.
How does that relate to a trail? I agree that from start to finish it's
possible to have many alternate paths leading to other "cats", but in
the sense of navigating via a pre-made (bread crumb) trail would be more
of a direct path.
Hmm, I don't really get what you're saying. While there are several ways
to enter a particular page on a site (internal links, external links,
navigation menu), I'd say a breadcrumb trail should reflect where the page
is found in the navigation. So it's not the way the user got there, rather
it is the way you expect people to find is using navigation.

Let's say for instance I do a Google search for "SELECT SYNTAX", and I
follow one of the links given. Quickly I realise this is the SELECT SYNTAX
explained of MSSQL, while I actually meant PostgreSQL. I should have
entered that in the search offcourse. However, I see a breadcrumb trail
above this page stating:
databases -MSSQL -Syntax -Select

If the site is formatted properly/attractive and seems rather clear,
rather then return to the search engine I'd be tempted to click the link
'databases', to check wether PostgreSQL is an option there..
--
Rik Wasmus
Nov 1 '07 #8
Bread crumb navigation.

.... and the winner is Geoff who wins a year's supply of virtual beer. Many
thanks.

Cheers

Phil


Nov 1 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
1857
by: Steve Jorgensen | last post by:
Terminology question: Is there a term for a set of records related directly or indirectly by key value in several tables? For example, a single invoice record and its line item records -or- a single customer, the customer's orders, the order lines for those orders, the customer's invoices, and the invoice lines for those invoices. I'm thinking the term might be graph, but I'm not at all certain of this.
4
1652
by: Dave | last post by:
Hello all, Consider this template: template <typename T> void foo(T bar) {...} Here are three ways to instantiate this: 1.
3
2635
by: Neil Zanella | last post by:
Hello, I would like to ask a question pertaining to some C# terminology. My reference book says that within a class, attributes are the same as fields. I would like to know what the standard stays with regards to this terminology. According to the ECMA C# standard, what is the difference between attribute and field. Thank you for your clarifications, Regards,
331
14992
by: Xah Lee | last post by:
http://xahlee.org/emacs/modernization.html ] The Modernization of Emacs ---------------------------------------- THE PROBLEM Emacs is a great editor. It is perhaps the most powerful and most versatile text editor. And, besides text editing, it also serves as a
97
2767
by: xahlee | last post by:
I'd like to introduce a blog post by Stephen Wolfram, on the design process of Mathematica. In particular, he touches on the importance of naming of functions. • Ten Thousand Hours of Design Reviews (2008 Jan 10) by Stephen Wolfram http://blog.wolfram.com/2008/01/10/ten-thousand-hours-of-design-reviews/ The issue is fitting here today, in our discussion of “closure” terminology recently, as well the jargons “lisp 1 vs lisp2”...
0
9691
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10507
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10279
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9092
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7582
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6815
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5473
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3765
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2948
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.