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

@@ -10,19 +10,19 @@
**Goal:** Extend the existing vendor/model system (currently used for PCs, Printers, and Machines) to also support infrastructure devices (Servers, Switches, Cameras).
**Decision:** **Vendor types ABANDONED** - Keeping the simple vendors table as-is. No boolean flag refactoring needed.
**Decision:** **Vendor types ABANDONED** - Keeping the simple vendors table as-is. No boolean flag refactoring needed.
### What We're Building
| Feature | Status | Impact |
|---------|--------|--------|
| Add `modelid` to servers/switches/cameras | Script ready | Database schema |
| Create `vw_network_devices` view | Script ready | Unified infrastructure query |
| Create server CRUD pages | New development | 4 files |
| Create switch CRUD pages | New development | 4 files |
| Create camera CRUD pages | New development | 4 files |
| Update navigation | New development | Menu items |
| Update network map | 🟡 Optional | Display vendor/model |
| Add `modelid` to servers/switches/cameras | Script ready | Database schema |
| Create `vw_network_devices` view | Script ready | Unified infrastructure query |
| Create server CRUD pages | New development | 4 files |
| Create switch CRUD pages | New development | 4 files |
| Create camera CRUD pages | New development | 4 files |
| Update navigation | New development | Menu items |
| Update network map | Optional | Display vendor/model |
**Total New Files:** 12 ASP pages + nav updates
**Total Modified Files:** ~2-3 (navigation, possibly network_map.asp)
@@ -522,22 +522,22 @@ If issues arise:
## Part 10: Success Criteria
**Database:**
**Database:**
- All 3 tables have modelid column with FK to models
- vw_network_devices view returns data from all 3 tables
**Functionality:**
**Functionality:**
- Can add/edit/view/delete servers, switches, cameras
- Vendor/model information displays correctly
- Forms validate inputs properly
- No SQL errors
**User Experience:**
**User Experience:**
- Navigation easy to find
- Forms intuitive (like printer/machine forms)
- List views show relevant info at a glance
**Code Quality:**
**Code Quality:**
- Follows existing coding standards (STANDARDS.md)
- Uses parameterized queries (no SQL injection)
- Proper error handling