Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Poll

Does The test server work for you? Are you willing to sped time helping me test it?

It works for me.
- 6 (31.6%)
It does not work for me.
- 1 (5.3%)
I'd be willing to help test it.
- 6 (31.6%)
I'm not interested in testing it.
- 1 (5.3%)
I might be willing to help test it.
- 5 (26.3%)

Total Members Voted: 14


Pages: 1 ... 14 15 [16] 17 18 ... 42

Author Topic: Agora, A better forum (Open Source Project): Now with Github and test site.  (Read 80346 times)

Anvilfolk

  • Bay Watcher
  • Love! <3
    • View Profile
    • Portuguese blacksmithing forum!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #225 on: May 27, 2014, 02:49:50 pm »

Yeah, it makes sense that this would be at the interface level.

How are you going to make the interface for it? Maybe a button on each argument that says "add new attacker" or something like that?

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #226 on: May 27, 2014, 02:55:16 pm »

I already have the interface working, though it's kinda buggy. right clivk on an argument while you have both the graoh view and the add argument panel open, and then minimize and unminimize the window. you'll see a red box appear above the addargument panel. eventually these will have titles and close buttons and all the goodies, but for now you can remove them by clicking.
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #227 on: May 28, 2014, 12:14:42 am »

Well, I think I almost have it working properly, but it's still buggy.
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #228 on: May 30, 2014, 12:49:20 am »

Alright, I fixed a couple bugs, only to discover that LAST_INSERT_ID() gives me 0 every time. I'll read up on it and see if I can figure something out in the morning.
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Anvilfolk

  • Bay Watcher
  • Love! <3
    • View Profile
    • Portuguese blacksmithing forum!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #229 on: May 30, 2014, 09:20:57 am »

Huh... I'm pretty sure the database is configured correctly. That's really weird. How are you using it?

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #230 on: May 30, 2014, 11:59:51 am »

I have DBCheck send a query for "SELECT LAST_INSERT_ID();"
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Anvilfolk

  • Bay Watcher
  • Love! <3
    • View Profile
    • Portuguese blacksmithing forum!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #231 on: May 30, 2014, 02:41:16 pm »

It's not on Github, is it? Couldn't find it.

Are you doing one or two different queries? Could it be that it needs to be sent as a single query, i.e. query("INSERT ... VALUES (...); SELECT LAST_INSERT_ID();") rather than query("INSERT ... VALUES (...);"); query("SELECT LAST_INSERT_ID();"?

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #232 on: May 30, 2014, 03:17:18 pm »

I forgot to push. Done now.

And yeah, you're probably right.
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #233 on: May 30, 2014, 06:27:38 pm »

Hmm. Well, if that's the case, I have no idea how to proceed. It appears that you cannot get back data at the same time you make changes, thus, you cannot put both in one statement.
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #234 on: May 30, 2014, 11:48:58 pm »

Alright, I figured it out. It works now! Of course, the graphics are bugged, and there are a billion little things to be done, and my code is so messy...
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Anvilfolk

  • Bay Watcher
  • Love! <3
    • View Profile
    • Portuguese blacksmithing forum!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #235 on: May 30, 2014, 11:49:55 pm »

Sweet! I was actually looking at it right now trying to figure it out! How did you fix it?

One thing we probably have to worry is whether there are concurrent inserts into the database. We wouldn't want a different ID to be returned. Could that happen in this implementation?

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #236 on: May 31, 2014, 12:29:42 am »

I changed the function that added the argument, to call last insert id from the same dbc, without closing it.

Possibly. I think dbc has code to prevent that, but I'm not sure.
« Last Edit: May 31, 2014, 12:37:05 am by Angle »
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #237 on: May 31, 2014, 10:22:19 pm »

alright, I fixed some display bugs. It should now be much easier to view a large graph.

We should do something about getting some other people involved. Even if all they do is add issues to github, that's still pretty useful.
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Angle

  • Bay Watcher
  • 39 Indigo Spear Questions the Poor
    • View Profile
    • Agora Forum Demo!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #238 on: June 03, 2014, 02:12:30 pm »

Merged graph and lib, and also fiddled with the client some: Logging in is now done through a panel instead of a prompt.
Logged

Agora: open-source platform to facilitate complicated discussions between large numbers of people. Now with test site!

The Temple of the Elements: Quirky Dungeon Crawler

Anvilfolk

  • Bay Watcher
  • Love! <3
    • View Profile
    • Portuguese blacksmithing forum!
Re: Agora, A better forum (Open Source Project): Now with Github
« Reply #239 on: June 03, 2014, 02:19:29 pm »

Sweet!

If not problems have been reported within a week we can go ahead and remove the JAgoraGraph repository.
Pages: 1 ... 14 15 [16] 17 18 ... 42