![]() |
Welcome to the new Soft As It Gets Forums. You can get assistance here for our new product Surfulater, and for ED for Windows |
|
#1
|
|||
|
|||
|
Is there a way to save other file types (word, excel docs etc.) in the knowledge base or conversely can surfulator docs be saved in Windows Explorer?
|
|
#2
|
||||
|
||||
|
Quote:
Not at present, but this will be added reasonably soon. ie. You will be able to add any file as an Attachment to an article and these will be stored in the Knowledge Base in a compressed format to save space. You can add links to external files however. To do this go into edit mode on an Article field, select some text you want to use for the link and press Ctrl+K. To link to a file select "file" from the Type list. Quote:
|
|
#3
|
||||
|
||||
|
Quote:
A belated update on this. The ability to attach files (Word, PDF, Excel, Zip et.all) was adding back in the V1.80, B0.0 release. The next release V1.94, B0.0 makes it even easier to attach files to Surfulater articles, as well as including a range of other nice new features. |
|
#4
|
|||
|
|||
|
Quote:
|
|
#5
|
||||
|
||||
|
Quote:
What would be required is some VBA within Office or vbScript in the text editor to add the highlighted section and address to Surfulater (the same as for a web page except that it's either local or on a network somewhere) with all te same benifits! I've done a few Office Add-Ins and would be willing to give this a go ![]() |
|
#6
|
||||
|
||||
|
Quote:
As I mentioned above you can do this using Article | Attach File or right click | Attach File. See the Help Topic: "Attaching & Linking files to Articles". Quote:
I've only just had my first cup of coffee for the day/week and might not be completely in tune with your request. |
|
#7
|
||||
|
||||
|
Quote:
Quote:
When you create an article from a WebPage, I'm guessing it's something like this:
Regs, Perry Last edited by pmowbray : 6th March 2006 at 10:37 AM. |
|
#8
|
||||
|
||||
|
Ok, got it. This should be easy to do as Surfulater uses XML to pass all the captured information across from the Browser. In fact another user is already doing this for one of his projects.
The XML spec is: Code:
<SULAddArticle template=".."> - template attribute is optional. Defaults to IE. <URL></URL> <Reference></Reference> - these match HTML Template field names <Title></Title> <Text></Text> <MetaDescription></MetaDescription> <MetaKeywords></MetaKeywords> <Browser></Browser> <BASE></BASE> </SULAddArticle> All content other than plain text should be XML CDATA. Best just to use CDATA for everything. Leave unused fields blank. Basically create the text above along with whatever content you want captured and copy it to the Clipboard. Then start or activatate Surfulater and it will grab it and create shiny new article. To include a thumbnail image create it with a name: "SULIEThumbnail.jpg" and place this in the folder Surfulater is installed in. It should be 74H x 60W - pixels. For example code download the Surfulater Firefox Extension, Surfulater.xpi from the Download page, rename it to a Zip file and look in surfulaterOverlay.js at function BuildSurfulaterXfer(). Pretty neat huh! Let us know how you go. |
|
#9
|
|||
|
|||
|
I placed the XML in TextPad (or XMLSpy), select it and do "copy"
There is a popup above the system tray saying that an article is being created. I have to click on the popup to get rid of it, and there is no article in SUL. Do I need to do the copy to clipboard from a program? |
|
#10
|
||||
|
||||
|
Quote:
Code:
<SULAddArticle> <URL>www.acme.com</URL> <Reference>www.acme.com</Reference> <Title>Acme title</Title> <Text>Acme text</Text> <MetaDescription></MetaDescription> <MetaKeywords></MetaKeywords> <Browser></Browser> <BASE></BASE> </SULAddArticle> <SULAddArticle> <Reference>www.acme2.com</Reference> <Title>Acme2 title</Title> <Text>Acme2 text</Text> </SULAddArticle> If there is a problem the SurfulaterLog.txt file in the Surfulater folder will provide info on the error. Something like: Quote:
-3 template doesn't exist. -8 couldn't find href in reference html field, -9 couldn't find reference html field. etc. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|