Remove emojis from all markdown docs, add consolidation plan

- Strip emojis from 47 markdown files across docs/, sql/, and root
- Add docs/DOCS_CONSOLIDATION_PLAN.md with plan to reduce 45 docs to 8
- Establish no-emoji rule for documentation going forward

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-12-11 07:42:52 -05:00
parent 9fc3420716
commit e598f72616
42 changed files with 1105 additions and 937 deletions

View File

@@ -23,9 +23,9 @@ idfs:
cameras:
- cameraid INT(11) PK
- modelid INT(11) models vendors
- idfid INT(11) idfs.idfid (already exists!)
- idfid INT(11) idfs.idfid (already exists!)
- serialnumber VARCHAR(100)
- macaddress VARCHAR(17) (already exists!)
- macaddress VARCHAR(17) (already exists!)
- ipaddress VARCHAR(45)
- description VARCHAR(255)
- maptop, mapleft INT(11)
@@ -72,10 +72,10 @@ This adds `modelid` to servers/switches/cameras (if not already present).
| Device | Unique Fields | Needs Custom Page? |
|--------|---------------|-------------------|
| **IDF** | idfname (no model/vendor) | YES - different structure |
| **Camera** | idfid dropdown, macaddress | YES - has IDF + MAC |
| **Server** | Standard fields only | NO - same as switch |
| **Switch** | Standard fields only | NO - same as server |
| **IDF** | idfname (no model/vendor) | YES - different structure |
| **Camera** | idfid dropdown, macaddress | YES - has IDF + MAC |
| **Server** | Standard fields only | NO - same as switch |
| **Switch** | Standard fields only | NO - same as server |
### Optimization: Combine Server/Switch Edit
@@ -304,14 +304,14 @@ Or use the existing approach with type selector in add_network_device.asp.
| Field | IDF | Server | Switch | Camera |
|-------|-----|--------|--------|--------|
| idfname | | | | |
| modelid | | | | |
| idfid (parent) | | | | |
| macaddress | | | | |
| serialnumber | | | | |
| ipaddress | | | | |
| description | | | | |
| maptop, mapleft | | | | |
| idfname | | | | |
| modelid | | | | |
| idfid (parent) | | | | |
| macaddress | | | | |
| serialnumber | | | | |
| ipaddress | | | | |
| description | | | | |
| maptop, mapleft | | | | |
### Pages Needed
@@ -355,9 +355,9 @@ Or use the existing approach with type selector in add_network_device.asp.
- Creates `vw_network_devices` view
**What we DON'T need:**
- Add `idfid` to switches (not tracking)
- Add `idfid` to servers (not tracking)
- Cameras already have `idfid` and `macaddress`
- Add `idfid` to switches (not tracking)
- Add `idfid` to servers (not tracking)
- Cameras already have `idfid` and `macaddress`
---