Possible Error Loading Project

  1. What browsers show this problem? Safari
  2. Please share an example project (if possible). https://snap.berkeley.edu/snapsource/snap.html#present:Username=staffordboys&ProjectName=Caesar%20Cipher
  3. Describes the steps to reproduce this issue. Click open, login, select the project above and it says this: "Load Failed: Error:expected '>' after '/' in empty tag
  4. What should Snap! do instead? Open the project

Here is a fixed project. I set the variable Chars to be transient (not saved with the project) because that's where the problem was and you create it each time through anyway.

Caesar Cipher.xml (73.5 KB)

@team: The variable was a split-by-letter of a huge string with huge chunks of the Unicode character set. The characters <, >, and / were correctly represented (i.e., the first two as &# things and the slash inside <l>/</l>. Some of the characters are combining-form accents; that's the only potential parsing problem I could find. The Delete character is there as &#127.

Here's his original project file:
badCaesarCipher.xml.zip (22.1 KB)
(For some reason when I try to upload it without zipping it, the forum turns it into an svg!)

Thanks for your help, that works fine