bmc_hub/parse_html.py
Christian bc504b9257 feat: Add subscription management functionality and AnyDesk API integration
- Implemented subscription creation, updating, and rendering in script_9.js.
- Added functions for handling subscription line items, product selection, and total calculations.
- Integrated AnyDesk API for session management in test_anydesk.py.
- Created REST client test requests for API endpoints in api.http.
- Developed a script to check ESET machine status and save details in tmp_check_eset_machine.py.
2026-03-30 07:50:15 +02:00

18 lines
661 B
Python

import re
with open('app/modules/sag/templates/detail.html', 'r') as f:
text = f.read()
# Let's verify the file content is around 6600 lines
print(f"Total lines: {len(text.splitlines())}")
# Search for the function renderTimeV1Timeline
match = re.search(r'function renderTimeV1Timeline\(entries\)\s*{.*?timeline\.innerHTML = Object\.entries\(grouped\).*?\}', text, re.DOTALL)
if match:
print(f"Found render function, length: {len(match.group(0))}")
else:
print(f"Could not find render function")
match = re.search(r'function renderTimeV1Timeline\(entries\)\s*{', text)
if match:
print("Found definition at index:", match.start())