This commit is contained in:
Correl Roush 2021-10-13 22:10:17 -04:00
parent 1f0cb86bf7
commit 9800d93a95
8 changed files with 109 additions and 0 deletions

View file

@ -41,6 +41,14 @@
:LOGBOOK:
- State "TODO" from [2021-09-01 Wed 13:42]
:END:
** TODO Recipient Service
:LOGBOOK:
- State "TODO" from [2021-10-13 Wed 16:26]
:END:
** TODO Tagging Service
:LOGBOOK:
- State "TODO" from [2021-10-13 Wed 16:26]
:END:
* Tracking live vs dead / removed code branches in Sites
* [[id:11edd6c9-b976-403b-a419-b5542ddedaae][Subscriber Search Service]]
* [[id:c45881de-46f2-4f76-9579-063626c5956c][Analytics View Service]]

View file

@ -0,0 +1,5 @@
:PROPERTIES:
:ID: bdea0611-e377-4378-a118-aef6d4a70bdf
:ROAM_ALIASES: CREASE
:END:
#+title: Creating Remarkable Experiences via Application Support Engineering

View file

@ -0,0 +1,9 @@
:PROPERTIES:
:ID: 87f76e97-fbdc-49e4-9af8-588ceee85a5c
:END:
#+title: Staging account information
[[id:57ee2f00-9bcd-4e0f-8a77-ae1f2d4cda89][Control Panel]] staging account.
* Lists
- Fluff Cafe :: 9f1db623-fbc3-4112-a2f3-ab563e37e131 (3854)

View file

@ -0,0 +1,21 @@
:PROPERTIES:
:ID: 16298b74-f9a2-48ac-a84c-118af70d834c
:END:
#+title: Validating and sanitizing tags
* Sanitizing tag display
** TODO In the autocomplete of the tag input box
Fixes [[https://jira.aweber.io/browse/CCPANEL-11654][CCPANEL-11654]].
https://gitlab.aweber.io/BoFs/FE/libraries/tagbox/-/merge_requests/29
* Validating tags on creation
** TODO Lead controller in [[id:57ee2f00-9bcd-4e0f-8a77-ae1f2d4cda89][Control Panel]]
** TODO [[id:03e00c18-99c0-477c-b7fb-95ddc538755e][Addlead]]
** TODO [[id:cd4a8a83-be53-4ec9-8cca-b6f34b59ba35][Subscriber Proxy]]
** TODO [[id:321075e7-db53-4676-b785-7c77ed9d1150][Bulk Tagging]]
** TODO [[id:7e503917-646f-4275-aab9-3a125b99cbfd][Tagging]]
*** Remove outbound sanitization
*** Add inbound validation

View file

@ -0,0 +1,6 @@
:PROPERTIES:
:ID: 03e00c18-99c0-477c-b7fb-95ddc538755e
:END:
#+title: Addlead
A business-critical nightmare in Perl.

View file

@ -0,0 +1,4 @@
:PROPERTIES:
:ID: cd4a8a83-be53-4ec9-8cca-b6f34b59ba35
:END:
#+title: Subscriber Proxy Service

14
daily/2021-10-11.org Normal file
View file

@ -0,0 +1,14 @@
:PROPERTIES:
:ID: d26bf0a5-990c-48e6-9259-b2689a16a0a8
:END:
#+title: 2021-10-11
* [[id:bdea0611-e377-4378-a118-aef6d4a70bdf][CREASE]] pilot kickoff meeting
https://confluence.aweber.io/pages/viewpage.action?spaceKey=~robm&title=Welcome+to+CREASE+-+Pilot
Signup: https://docs.google.com/spreadsheets/d/1bbuRFQd53rKPsBXm8Gvr0YwCVyL-8YCj1VYgBeYMD8c/edit?usp=sharing
* Discussing tagging with Ryan
- Redis is used to search for rule sets by the rule engine for any event coming
in (by list, account, and rule set id)
- Can't find any timing metrics around rule service search
- Item count in Redis is continuing to grow
- Campaign tag consumer appears to be one of the worst performers in campaign engine

42
daily/2021-10-13.org Normal file
View file

@ -0,0 +1,42 @@
:PROPERTIES:
:ID: ddc2024a-1920-4cb2-8fe0-a39eb731aa26
:END:
#+title: 2021-10-13
* Testing tagbox changes for [[id:16298b74-f9a2-48ac-a84c-118af70d834c][Validating and sanitizing tags]]
#+begin_src http :select .id
GET https://mapping.aweberstage.com/list/3854
#+end_src
#+RESULTS:
: 9f1db623-fbc3-4112-a2f3-ab563e37e131
- Session :: a104e41350ea511addf9ea50b0e2c5e0
#+begin_src http :pretty :wrap src json
GET http://localhost:9966/tags?list=9f1db623-fbc3-4112-a2f3-ab563e37e131 HTTP/1.1
Authorization: aweber a104e41350ea511addf9ea50b0e2c5e0
#+end_src
#+RESULTS:
#+begin_src json
[
"bulk-tagging-sept-2021",
"testing",
"nonsense",
"20210113",
"fiddlefaddle",
"foo",
"bar",
"barfarts",
"<i>scott</i>",
"asdf",
"\"butt's\"",
"silly",
"💩",
"\"crap&amp;stuff\"",
"scott",
"<i>scott</i>",
"foobar"
]
#+end_src