Author Topic: IES: online Axe, BASIC, and Grammer editor  (Read 37969 times)

0 Members and 1 Guest are viewing this topic.

Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #105 on: July 22, 2013, 06:05:06 pm »
Suggestion: make it possible to scroll in the tab bar, if you have too many tabs open it sucks that you can't scroll >.<
If you have multiple tabs and they aren't part of the same project, it would probably be a good idea to split them off in the project manager.

I guess Axe projects can get pretty big in number of files, so I'll look into that. Right now you can sort of cheat by dragging tabs around (which scrolls through the tab bar).
another suggestion: make it possible to export axe sources - with filtered out comments
Do you mean after removing all comments? I could do that.
also, somehow it trasnforms
Code: [Select]
If {L5}<Q
0->{L5}
to
Code: [Select]
If {L5}{L5}also if the stuff in the {} are like L5+101
I can't replicate that bug. Do you have a file in particular that does that?




Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #106 on: July 22, 2013, 06:09:26 pm »
I have like 20 files in one project......

and yeah, filtering out comments

and lemme grab the file... (look at the attachments)

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #107 on: July 22, 2013, 06:13:44 pm »
Here is what I see.

Lines 60-61:
Quote from: Axe
If {L5+100}<Q
0{L5+100}
Lines 74-75:
Quote from: Axe
If {L5}<Q
0{L5}
Seems to be fine for me.




Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #108 on: July 22, 2013, 06:14:44 pm »
wut, for me it isn't......
can't you somehow grab the data off of my account and check? because also if I edit it to be that again and save it'll still be the wrong thing.....
Also, i'm using google-chrome

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #109 on: July 22, 2013, 06:23:19 pm »
wut, for me it isn't......
can't you somehow grab the data off of my account and check? because also if I edit it to be that again and save it'll still be the wrong thing.....
Still seems to be fine, and there doesn't seem to be anything wrong with the files.

Though it seems that weird bug with the cursor being off is back. Are you getting that bug?
Also, i'm using google-chrome
Parsing behavior shouldn't depend on the browser you're using because it's all done server-side (except for syntax highlighting).




Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #110 on: July 22, 2013, 06:31:22 pm »
ok, debugging gave me: the bug defenetley happens client-sided, because i recieve this:
Code: [Select]
If {L5+100}<Q\n0->{L5+100} .we set hp to 0\n but it shortens when displaying to If{L5+100}{L5+100}

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #111 on: July 22, 2013, 06:34:16 pm »
It looks like it could be caused by a HTML parsing error where <Q\n0-> is read as an invalid tag ... but it shouldn't be treated as HTML anyway, weird.

I'm changing the way IES loads files though, so hopefully that fixes the bug.




Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #112 on: July 22, 2013, 06:39:43 pm »
yeah, it happens somewhere during these two lines:

Code: [Select]
e = $(e).text();
e = JSON ? JSON.parse(e) : eval('(' + e + ')');

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #113 on: July 22, 2013, 06:48:30 pm »
Should be all fixed :)

EDIT: Fixed the cursor bug too.
« Last Edit: July 22, 2013, 07:03:55 pm by Deep Thought »




Offline Deep Toaster

  • So much to do, so much time, so little motivation
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 8217
  • Rating: +758/-15
    • View Profile
    • ClrHome
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #114 on: July 22, 2013, 07:29:31 pm »
New feature: "BBify" and "Pastebin" actions will now use selected text instead of the whole file if there is any selection.

What that means is that to share a snippet of code, all you have to do is select it and click the appropriate button.




Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #115 on: July 23, 2013, 01:51:44 am »
wow, that is pretty awesome! Great job!

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55941
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #116 on: July 27, 2013, 11:39:49 pm »
Very nice feature indeed. THis will be very useful for those who need help on forums or want to post code with bieberify :D

Off-topic: Btw anyone remember this? XD

« Last Edit: July 27, 2013, 11:41:32 pm by DJ Omnimaga »

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #117 on: August 04, 2013, 04:53:34 am »
Can you give me your Axe syntax highlighting rules please ? I want to make a syntax highlighting file for Kate.

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #118 on: August 04, 2013, 05:51:40 am »
Can you give me your Axe syntax highlighting rules please ? I want to make a syntax highlighting file for Kate.
That would be sooooooooooooo awesome!

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: IES: online Axe, BASIC, and Grammer editor
« Reply #119 on: August 04, 2013, 06:04:10 am »
Yeah, also I think afterwards it could be ported to GEdit/Pluma, Geany, Eclipse, etc. but I'm not up for that. :P