» GC Stats |
Members: 326,163
Threads: 115,591
Posts: 2,200,688
|
Welcome to our newest member, MysteryMuse |
|
|
03-10-2014, 07:37 AM
|
GreekChat Member
|
|
Join Date: Apr 2001
Location: Rockville,MD,USA
Posts: 3,512
|
|
Gripe/Rant -*English* Alphabetizing of chapters.
I'm fine if a University Greek Life office (for example) alphabetizes the fraternities and sororities Alphabetically by English (especially, if they have Farmhouse) so that Zeta Tau Alpha is last, but it just seems *wrong* for a Fraternity/Sorority to have their list of chapters using the English Alphabetization of the letters of Combination of letters.
The particular GLO whose website that I went to does give out chapters letter were given in Greek Letter Order (Alpha - Omega, then Alpha Alpha - Alpha Omega,etc), however when searching for chapters with "all" selected for all pulldowns, the chapters return in the order:
Alpha
Alpha Alpha
Alpha Beta
Alpha Chi
Alpha Delta
etc.
Urg...
__________________
Because "undergrads, please abandon your national policies and make something up" will end well --KnightShadow
|
03-10-2014, 11:33 AM
|
GreekChat Member
|
|
Join Date: Dec 2003
Location: Stuck in the 80s
Posts: 1,872
|
|
I agree....
__________________
I am a Geek for all things Greek
The edit button has become my new best friend
|
03-10-2014, 11:37 AM
|
GreekChat Member
|
|
Join Date: Mar 2012
Posts: 41
|
|
If it is listed correctly elsewhere, it may simply have something to do with the programming that runs that drop down menu. I know our database automatically lists them alphabetically and I can't change that, even though when we have the ability to list elsewhere it is done in Greek alpha order.
|
03-10-2014, 12:54 PM
|
GreekChat Member
|
|
Join Date: Jul 2003
Location: Sweet Home Alabama
Posts: 4,594
|
|
And maybe it's a help for those who have been out of school so long that they've forgotten the order????
|
03-10-2014, 01:05 PM
|
GreekChat Member
|
|
Join Date: Aug 2012
Location: Rolling on the river in the Mid-south!
Posts: 117
|
|
Actually, I heard recently that at one campus, while "going in order of sororities" to pick Greek Week partners, the Delta Delta Delta chapter went last, even after Pi Beta Phi, because the chapter is called "tri delt." Really? All other chapters went by their actual letters. At the meeting, the PanHellenic director went from Delta Gamma directly to Kappa Alpha Theta. What's really funny is at this university's website, the sorority houses are posted online and are in correct order. Seems like the Panhellenic officers need a refresher course in Greek alphabet!
__________________
Southernbuff
Sigma Kappa alumna, daughter of a Kappa, mother of a Tri Delta, and three happy puppies!
|
03-10-2014, 09:12 PM
|
Moderator
|
|
Join Date: Jul 2001
Location: Crescent City
Posts: 10,040
|
|
<geek>
As a database administrator, I can tell you that the drop-down is probably populated by a SQL query that goes something like this:
SELECT chapter_designation FROM chapter_list WHERE status = 'Active' ORDER BY chapter_designation
That would create a list of all active chapters, ordered by designation ... based on the English language.
A better way to do it would be to set up the chapter_list table with an id column, so that Alpha chapter would be 1, Beta chapter would be 2, etc. Then the query becomes:
SELECT chapter_designation FROM chapter_list WHERE status = 'Active' ORDER BY id
That would create a drop-down with all active chapters in the correct Greek-alphabet order.
You could also order the list by the chapter's original founding date. That would be useful for GLOs where the "normal" order isn't used. For instance, AEPi's Mu Tau chapter at MIT was founded well before the Eta Psi chapter at Harvard.
If you were generating a list of chapters at a given campus, you could do something like:
1 - Alpha Epsilon Pi
2 - Delta Tau Delta
3 - Farmhouse
4 - Chi Phi
and then sort by the index number. If you sorted alphabetically by name, Chi Phi would pop up after AEPi and before DTD.
But if you're not familiar with the Greek alphabet, you probably wouldn't think to do that.
</geek>
__________________
AEΦ ... Multa Corda, Una Causa ... Celebrating Over 100 Years of Sisterhood
Have no place I can be since I found Serenity, but you can't take the sky from me...
Only those who risk going too far, find out how far they can go.
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|