IntelligeN 2009

Status
Not open for further replies.

geskill

Active Member
79
2010
2
0
IntelligeN 2009 - AiO spreading software

Logo-x16nb.png
IntelligeN 2009
A flexible content publishing application for nearly every content management system.

What is IntelligeN?
IntelligeN is an open source auto poster for content management systems (CMS), which uses web crawlers to enrich content data. Data is stored within content specific fields for later automated article generation using a JScript-based interpreter called IScript. Besides crawlers have access to the fields and search upon given input for detailed data to enhance the content. The program uses static base categories to classify the content media among audio, video or software content. This enables purposeful publishing and crawling.

IntelligeN supports to attach web (especially one-click hosting) links to the article, which makes it possible for readers to download the connected data.

How to use IntelligeN?
IntelligeN is a powerful application for content publishing. Due to the amount of functionality the usage might be complex at first sight. The Getting Started page is the first step to get in touch with the fundamental concepts of IntelligeN.

GS_3.png


Where to download IntelligeN?
Download

Source code
 
Last edited:
80 comments
You are kidding me, i have found this day AFTER i finished my own autopoter. Well my still automatically create posts and upload images, but still - so much wasted work. :(
 
As mentioned several threads before: You don't need an account for basic/test usage (IntelligeN 2009 Personal). For the Professional version you'll have to buy a key, which is subscription based.
But for getting started - the Personal Edition is sufficient.
 
Ãœbersetze es doch bitte endlich mal in deutsch und englisch! Schon allein weil du 90% deutsche Kunden hast. :facepalm:
 
hello

i saw that you wrote some functions via javascript and these fucntions located in this file "iUtils.js" and in some template.txt depend on our requirement we can use these functions . for example here we imported iUtils.js and we used ReduceCapitals function to reduce Capitals for IReleaseName in our custom template .

Code:
<I
import "iUtils.js"

print([B]ReduceCapitals[/B](IRELEASENAME));

I>
ok, i installed vbulletin and wordpress both in our local host and i wanna to post to wordpress and vbulletin forums at the same time .

i test vb and wp posting both works fine , i tested with wordpress v3.2.1 - lastversion.

but my problem is when my post contain thumbnails bbcode image (Clickable thumb image) vbulletin accept bbcode and every forums support bbcode image . but we know that wordpress doesn't show bbcode thumbnail image and so we can't post to vb and wordpress simultaneously .

ok , do you have any function to replace thumb bbcode image to html code thumbnails?
we can define it for wordpress to automate convert bbcode thumb image to html code.

for example our post contain this cover thumbnail bbcode image

PHP:
[url=http://www.pixhost.org/show/1218/8537780_n8afm.jpg][img]http://t3.pixhost.org/thumbs/1218/8537780_n8afm.jpg[/img][/url]

so for wordpress it must converted to html code automatically :

bbcode image above must be convert to this one below that wordpress can show it:
Code:
<a href="http://www.pixhost.org/show/1218/8537780_n8afm.jpg"><img src="http://t3.pixhost.org/thumbs/1218/8537780_n8afm.jpg" alt="8537780_n8afm.jpg"  border="0"/></a>
so i need 1 function in iUtils.js to automate replace bbcode image to html code when
we use bbcode thumb image to post to wordpress blog.

example: we should define and add this to template.txt for wordpress, so could you help me to wrote this function "ConvertBBcodeImageToHtmlCode" ?

so we can use this fucntion in our custom template.txt for wordpress:

Code:
<I
import "iUtils.js"
  print(([B]ConvertBBcodeImageToHtmlCode[/B](IPICTURE));
I>
unfortunately i have not any good skills in javascript programming to add this fuction
to iUtils.js file.

could you help me a bit?

thanks
 
Last edited:
Hey NorthLand,
this is the wrong approach. you define for every webpage a different message-template (templatefile). This allows you to customize your message/post the way you need or like it for every single website.

i.e. you can create now 2 message-templates. the first with bbcode for boards like vBulletin and the second for WordPress blogs.

if you have something like this in you bbcode template:
Code:
<I
print("[img]" + IPICTURE + "[/img]");
I>

you html template e.g.:
Code:
<I
print("<a href=\"" + IPICTURE + "\"><img src=\"" + IPICTURE + "\" alt=\"\" border=\"0\"/></a>");
I>

you may already seen that i escaped the quotation mark. why?

the following will generate a empty string output.
Code:
<I
print("");
I>

now if i just want to output a quotation mark i have to escape this, because the internal "compiler" don't know, that i want to output this mark instead of closing the string:
Code:
<I
print("\"");
I>
 
sorry i misunderstood you.

you have the whole BBCode in the picture field. this is not designed to work like this. the picture field is only for the direct link!

however this is a possible solution for your requested function:
http://pastebin.com/8mMHfn7i

best regards
 
Last edited:
thanks , it seems code must be works perfect but in fact after i tested it , it doesnt' works for me.

i added this to wordpress template

Code:
<I
print("<a href=\"" + IPICTURE + "\"><img src=\"" + IPICTURE + "\" alt=\"\" border=\"0\"/></a>");
I>
and when i put bbcode image thumb in picture links text box, and when i posted it to wordpress blog , after post published , i've noticed that cover image doesn't show perfectly.

i edited my publish post in wordpress and i copied the cover code below :

here cover image after i post to wordpress :


PHP:
<a href="[url=http://www.pixhost.org/show/1218/8537780_n8afm.jpg][img]http://t3.pixhost.org/thumbs/1218/8537780_n8afm.jpg[/img][/url]"><img src="[url=http://www.pixhost.org/show/1218/8537780_n8afm.jpg][img]http://t3.pixhost.org/thumbs/1218/8537780_n8afm.jpg[/img][/url]" alt="" border="0"/></a>
as you can see above image has been screw and i couldn't be able to see cover image in my post in wordpress. i dunno why doesn't works.

could you test it for wordpress?

thanks
 
sorry i misunderstood you.

you have the whole BBCode in the picture field. this is not designed to work like this. the picture field is only for the direct link!

however this is a possible solution for your requested function:
http://pastebin.com/8mMHfn7i

best regards

thanks geskill ,

i mentioned in my previous post earlier that we need post clickable image not direct image link.

i will test your code function ASAP. see it works or not.

thanks for reply.
 
Last edited:
Hey,
here a sample of the most suitable solution for the problem (the IntelligeN way ;) ):

Code:
<I
import "iUtils.js"

function PixhostOrgShow() {
  return StringReplace( ReplaceRegExpr("img(\\d+)", IPICTURE, "www", False) , "/images/", "/show/");
}

function PixhostOrgThumb() {
  return StringReplace(StringReplace(IPICTURE, "://img", "://t"), "/images/", "/thumbs/");
}

if((IPICTURE != null) && (IPICTURE != ""))
  print("<a href=\"" + PixhostOrgShow() + "\"><img src=\"" + PixhostOrgThumb() + "\" alt=\"\" border=\"0\"/></a>");
else
  print("- no image available -");

I>

As you can see you now can easily input the image directlink:
 
Last edited:
thanks

i want to say your function works when we put direct link of image in image field text box :) only for pixhost.org .

but i want to paste whole bbcode thumbnail image code to picture text box and i dont want to paste direct image link to text box field. and i need some function to convert whole bbcode image thumb to html code thumb, so we could be able to post to wordpress at same time when our text box field contain bbcode thumbnail image and when we paste bbcode image to picture text box field ...

anyway thanks again.
 
i want to say your function works when we put direct link of image in image field text box :) only for pixhost.org .
you can extend the functions to other hosts too.

Code:
<I
if ( Pos("pixhost.org", IPICTURE) > 0 )
{
  // do the procedure for pixhost.org
}
  // else
  // ...
I>

but i want to paste whole bbcode thumbnail image code to picture text box and i dont want to paste direct image link to text box field.
You can do this but it is not designed to work like this.
The normal workflow:
1. Crawler like Amazon.com ... grabs a image for your upload
2. Image Hoster remotes Amazon.com image to Image Hoster -> directlink in field
3. You can define the output

and i need some function to convert whole bbcode image thumb to html code thumb, so we could be able to post to wordpress at same time when our text box field contain bbcode thumbnail image and when we paste bbcode image to picture text box field ...
Try the function i posted above:
http://pastebin.com/8mMHfn7i


how can i make a template?
-> this is a very common question.

the best way to start is to check the templates_cms folder there are some examples for different CMS.
in addition you can check the help file. IScript -> Samples
 
my bb forums use [align=center] content[/align]

to make posts in center

and many errors when i publish posts to arabic forums like

RETRY (1) ERROR: "Connection Closed Gracefully."
ERROR: "News & AnnouncementsNews & Announcements Regarding
ERROR: "HTTP/1.1 404 Not Found
 
you can make a new message template only for MyBB boards and replace
/[/cente]

please pm me with more details regarding the MyBB boards (website settings).

at the utmost should only be a problem with the character encoding.​
 
Last edited:
Status
Not open for further replies.
Back
Top