Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: write XML line by line
Post: RE: write XML line by line

Nicely done!
Angryboy Developer Discussions 10 20,534 2015-08-13, 04:44:11
    Thread: write XML line by line
Post: RE: write XML line by line

Expanding on what shawn said (if almendro wants to write it as a plugin and publish it to extend): PHP Code: --
Angryboy Developer Discussions 10 20,534 2015-08-12, 18:30:32
    Thread: write XML line by line
Post: RE: write XML line by line

Would you like to also post this as an issue (https://github.com/GetSimpleCMS/GetSimpleCMS/issues) on the GetSimple Github (https://github.com/GetSimpleCMS/GetSimpleCMS/) repository? Perhaps even fork...
Angryboy Developer Discussions 10 20,534 2015-08-12, 03:45:05
    Thread: Get a list of available pages from pages.array
Post: RE: Get a list of available pages from pages.array

Since the language is tied to the suffix of the slug (e.g. [c]index_de[/c]), you can perhaps try parsing that: PHP Code: -- // Initialize some variables to be used in the loop $langSuffix  = '_de';...
Angryboy General Questions and Problems 8 19,516 2015-08-12, 02:35:07
    Thread: How to add subtitles to menu?
Post: RE: How to add subtitles to menu?

Just to unpack what was said above: Download the I18N Custom Fields Plugin Use it to create a field with the name 'subtitle' For each page that you want to have a subtitle, edit the page and giv...
Angryboy General Questions and Problems 5 11,808 2015-08-11, 00:35:48
    Thread: Support for multilanguage sites, Internationalization (I18N)
Post: RE: Support for multilanguage sites, International...

revotron Wrote: (2015-08-07, 04:34:46) -- revotron Wrote: (2015-07-22, 04:34:50) -- Is it necessary to wrap each i18n navigation call inside htmlspecialchars? -- Anyone? :D -- According to the PH...
Angryboy Plugins 1,068 3,075,903 2015-08-08, 16:48:16
    Thread: Minimum PHP Version?
Post: RE: Minimum PHP Version?

shawn_a Wrote: (2015-08-08, 09:10:50) -- It breaks extend.. An easy to use config file wrapper for plugins is easy with 3.4, if you want to make one go ahead ill add it to 3.4 The problem without...
Angryboy Developer Discussions 14 29,465 2015-08-08, 16:19:39
    Thread: Plugin Suggestions
Post: RE: Plugin Suggestions

Thought I'd give my 2 cents (since I've tried a lot of these examples and lost the will to continue on most of them and want you to be successful with it): Try to consolidate your reusable code as e...
Angryboy Plugins 23 49,305 2015-08-08, 08:04:03
    Thread: Minimum PHP Version?
Post: RE: Minimum PHP Version?

Currently experimenting with a lambda-like wrapper for 5.2 (https://github.com/lokothodida/php-lambda-5.2). At the time of speaking it seems to work for 5.2.0 upwards. The syntax isn't great, and it s...
Angryboy Developer Discussions 14 29,465 2015-08-08, 07:34:07
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: [Discussion] "Hello World" Redux (towards a po...

Ahh, now I understand what you're doing. I thought you were one of the co-founding developers, which was why I was confused at why you needed to reverse-engineer so much of the codebase (as I'd assume...
Angryboy Plugins 19 44,244 2015-08-04, 01:06:18
    Thread: Minimum PHP Version?
Post: RE: Minimum PHP Version?

Interesting stuff. In terms of the rewriting from scratch, are you saying that the existing plugins would no longer be compatible with the future system?
Angryboy Developer Discussions 14 29,465 2015-08-02, 15:12:22
    Thread: Minimum PHP Version?
Post: RE: Minimum PHP Version?

Hmm...if a core with the benefit of those features is on the slightly far horizon, I guess a good question to ask is what architectural changes would you be open to with them available? Because I'd be...
Angryboy Developer Discussions 14 29,465 2015-08-02, 11:41:22
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: [Discussion] "Hello World" Redux (towards a po...

I understand (and to note, you're already contributing to the PHP 5.2 discussion (http://get-simple.info/forums/showthread.php?tid=7458&pid=52602#pid52602)). How about a very small wrapper for [c]cre...
Angryboy Plugins 19 44,244 2015-08-02, 11:33:33
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: [Discussion] "Hello World" Redux (towards a po...

I would want to do that, but it's not entirely honest because PHP 5.3+ anonymous functions are closures (and this is used for importing variables in the [c]index.php[/c] file). There is no equivalence...
Angryboy Plugins 19 44,244 2015-08-01, 20:21:33
    Thread: Minimum PHP Version?
Post: RE: Minimum PHP Version?

Ouch. I knew that there were hosts out there still running 5.2. I was hoping they would be in the severe minority. It's a damn shame, because a lot of the engineering-based problems that you allude...
Angryboy Developer Discussions 14 29,465 2015-07-31, 01:10:36
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: [Discussion] "Hello World" Redux (towards a po...

shawn_a Wrote: (2015-07-28, 04:18:07) -- Just me, but coding is not hard, the engineering IS. Its easy to throw together a bunch of massive classes and SPL iterators, but neither are light, nor fast ...
Angryboy Plugins 19 44,244 2015-07-30, 21:12:05
    Thread: Minimum PHP Version?
Post: Minimum PHP Version?

The wiki (http://get-simple.info/wiki/installation:requirements) says that GetSimple supports PHP 5.2. This version has been off life support for quite some time now (2011 (http://php.net/eol.php)), l...
Angryboy Developer Discussions 14 29,465 2015-07-30, 17:28:50
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: [Discussion] "Hello World" Redux (towards a po...

Tyblitz Wrote: (2015-07-27, 07:54:01) -- Quote: -- But we have no support in core for this stuff -- That's where the shoe pinches. It makes little sense to build layers upon layers of shiny abs...
Angryboy Plugins 19 44,244 2015-07-28, 04:14:56
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: [Discussion] "Hello World" Redux (towards a po...

The GSPlugin class can be extended so that the plugin user wraps all of their methods in the one class and registers it as they would with the base GSPlugin class (i.e. init()). Here is a sketch of...
Angryboy Plugins 19 44,244 2015-07-28, 00:12:21
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: [Discussion] "Hello World" Redux (towards a po...

Tyblitz Wrote: (2015-07-27, 20:32:03) -- I would even argue it doesn't do this completely. -- Fair enough (I have to concede the same). Tyblitz Wrote: (2015-07-27, 20:32:03) -- Yes, and this is...
Angryboy Plugins 19 44,244 2015-07-27, 21:34:03
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: RE: "Hello World" Redux (towards a possible Plugin...

Tyblitz Wrote: (2015-07-27, 07:54:01) -- I like the idea of a 'Hello World' plugin for GS (especially since so many other libraries, CMS'es, and web-related stuff have one). I don't like the idea of ...
Angryboy Plugins 19 44,244 2015-07-27, 18:59:59
    Thread: [Discussion] "Hello World" Redux (towards a possible Plugin SDK)
Post: [Discussion] "Hello World" Redux (towards a possib...

GetSimple CMS "Hello World" Plugin (https://github.com/lokothodida/gs-hello-world) This plugin is a redux of the example plugin (http://get-simple.info/wiki/plugins:creation) provided on the GetSim...
Angryboy Plugins 19 44,244 2015-07-25, 21:54:33
    Thread: Custom Menu (Version 0.6)
Post: RE: Custom Menu (Version 0.5)

Version 0.6 (https://github.com/lokothodida/gs-custom-menu/archive/v0.6.zip) Fix permissions issue when data/other/custom_menu/ folder is created issue#2 (https://github.com/lokothodida/gs-custom-me...
Angryboy Plugins 34 90,753 2015-07-16, 01:27:15
    Thread: Catalog Plugin
Post: RE: Catalog Plugin

Not made changes yet, but what happens if you delete the data/other/catalog/settings folder completely and let the plugin copy the default files over again? Do you get the same issues in the Themes se...
Angryboy Plugins 89 233,789 2015-02-02, 00:46:10
    Thread: Catalog Plugin
Post: RE: Catalog Plugin

Current version integrates tzvook's changes and empty slugs for transliterations. Still do not know what is causing the settings error for theme/fields.
Angryboy Plugins 89 233,789 2015-01-18, 03:54:22
    Thread: Catalog Plugin
Post: RE: Catalog Plugin

Does I18N/Core GetSimple handle such titles with proper transliteration? If I create a regular page with a Hebrew title, it just gives me the slug 'temp' or 'temp-#', where # is a number (and it uses ...
Angryboy Plugins 89 233,789 2015-01-17, 06:53:30
    Thread: Catalog Plugin
Post: RE: Catalog Plugin

What kinds of titles are being used? For example, "Iñtërnâtiônàlizætiøn" comes out as "i-nt-ern-ati-on-alizaetion".
Angryboy Plugins 89 233,789 2015-01-17, 06:28:07
    Thread: Catalog Plugin
Post: RE: Catalog Plugin

Added now.
Angryboy Plugins 89 233,789 2015-01-17, 05:42:23
    Thread: Catalog Plugin
Post: RE: Catalog Plugin

Recent changes should fix the product creation problem (and transliteration ones that tzvook pointed out on github). Can you screenshot the settings problem (and in general, screenshot subsequent pro...
Angryboy Plugins 89 233,789 2015-01-17, 05:28:59
    Thread: Catalog Plugin
Post: RE: Catalog Plugin

(What is meant by the image field not working? It's meant to just be a regular text field that you type the URL into - is it breaking the layout/not saving/something else?) Can you check the data/o...
Angryboy Plugins 89 233,789 2015-01-16, 06:10:33